/* ==========================================================================
   Wasaga Beach — wasagabeach.net
   Ocean Blue & Sandy Gold Theme
   ========================================================================== */

/* ---------- Google Fonts ---------- */
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;600;700&family=Poppins:wght@400;500;600;700;800;900&display=swap');

/* ---------- CSS Variables ---------- */
:root {
  --primary: #0077b6;
  --primary-dark: #005f8a;
  --primary-light: #00a8e8;
  --accent: #f4d03f;
  --accent-dark: #d4ac0d;
  --hot: #e74c3c;
  --dark: #1a1a2e;
  --light-bg: #f0f8ff;
  --text: #2c3e50;
  --text-light: #7f8c8d;
  --white: #ffffff;
  --sand: #fdf6e3;
  --sand-dark: #f5e6c8;
  --gray-100: #f8f9fa;
  --gray-200: #e9ecef;
  --gray-300: #dee2e6;
  --gray-600: #6c757d;
  --shadow: 0 2px 15px rgba(0,0,0,0.1);
  --shadow-lg: 0 10px 40px rgba(0,0,0,0.15);
  --shadow-hover: 0 8px 30px rgba(0,119,182,0.2);
  --radius: 12px;
  --radius-sm: 8px;
  --radius-lg: 20px;
  --transition: all 0.3s ease;
  --font-body: 'Open Sans', sans-serif;
  --font-heading: 'Poppins', sans-serif;
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--primary); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--primary-dark); }
ul { list-style: none; }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.3;
  color: var(--dark);
}

h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 4vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 3vw, 1.6rem); }
h4 { font-size: 1.2rem; }

p { margin-bottom: 1rem; }

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ---------- Utility Classes ---------- */
.text-center { text-align: center; }
.text-primary { color: var(--primary); }
.text-accent { color: var(--accent-dark); }
.text-hot { color: var(--hot); }
.text-white { color: var(--white); }
.bg-light { background: var(--light-bg); }
.bg-sand { background: var(--sand); }
.bg-dark { background: var(--dark); color: var(--white); }
.bg-primary { background: var(--primary); color: var(--white); }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }
.py-section { padding: 80px 0; }
.py-sm { padding: 40px 0; }

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-header h2 {
  position: relative;
  display: inline-block;
  margin-bottom: 15px;
}

.section-header h2::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 2px;
}

.section-header p {
  color: var(--text-light);
  font-size: 1.1rem;
  max-width: 650px;
  margin: 15px auto 0;
}

.wave-divider {
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 2px;
  margin: 15px auto 25px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  text-align: center;
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--primary-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

.btn-accent {
  background: var(--accent);
  color: var(--dark);
}
.btn-accent:hover {
  background: var(--accent-dark);
  color: var(--dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(244,208,63,0.3);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--primary);
  transform: translateY(-2px);
}

.btn-hot {
  background: var(--hot);
  color: var(--white);
}
.btn-hot:hover {
  background: #c0392b;
  color: var(--white);
  transform: translateY(-2px);
}

.btn-sm {
  padding: 10px 24px;
  font-size: 0.9rem;
}

.btn-lg {
  padding: 18px 42px;
  font-size: 1.1rem;
}

/* ---------- Top Bar ---------- */
.top-bar {
  background: var(--dark);
  color: var(--white);
  padding: 8px 0;
  font-size: 0.85rem;
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-bar a { color: var(--accent); }
.top-bar a:hover { color: var(--white); }

.top-bar-social a {
  margin-left: 15px;
  font-size: 1rem;
}

/* ---------- Header / Navigation ---------- */
.site-header {
  background: var(--white);
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
}

.logo a {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 8px;
}

.logo span {
  color: var(--accent-dark);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-menu a {
  padding: 10px 14px;
  color: var(--text);
  font-weight: 600;
  font-size: 0.9rem;
  border-radius: var(--radius-sm);
  white-space: nowrap;
}

.nav-menu a:hover,
.nav-menu a.active {
  color: var(--primary);
  background: var(--light-bg);
}

.nav-menu .dropdown { position: relative; }

.nav-menu .dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  min-width: 220px;
  box-shadow: var(--shadow-lg);
  border-radius: var(--radius);
  padding: 10px 0;
  z-index: 999;
}

.nav-menu .dropdown:hover .dropdown-content { display: block; }

.nav-menu .dropdown-content a {
  display: block;
  padding: 10px 20px;
  font-size: 0.9rem;
  border-radius: 0;
}

.nav-menu .dropdown-content a:hover {
  background: var(--light-bg);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  display: block;
  width: 28px;
  height: 3px;
  background: var(--dark);
  margin: 5px 0;
  border-radius: 2px;
  transition: var(--transition);
}

/* ---------- Hero Section ---------- */
.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: var(--white);
  text-align: center;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.3) 0%, rgba(0,40,80,0.6) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 850px;
  padding: 40px 20px;
}

.hero h1 {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 20px;
  text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.hero h1 .highlight {
  color: var(--accent);
}

.hero p {
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  margin-bottom: 30px;
  opacity: 0.95;
  text-shadow: 0 1px 5px rgba(0,0,0,0.3);
}

.hero-btns {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Page Hero (inner pages) */
.page-hero {
  position: relative;
  padding: 100px 0 80px;
  background-size: cover;
  background-position: center;
  color: var(--white);
  text-align: center;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,50,100,0.6) 0%, rgba(0,30,60,0.8) 100%);
}

.page-hero .container { position: relative; z-index: 2; }

.page-hero h1 {
  color: var(--white);
  margin-bottom: 15px;
  font-size: clamp(2rem, 5vw, 3rem);
}

.page-hero p {
  font-size: 1.2rem;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto;
}

.breadcrumb {
  margin-bottom: 20px;
  font-size: 0.9rem;
  opacity: 0.8;
}

.breadcrumb a { color: var(--accent); }
.breadcrumb a:hover { color: var(--white); }

/* ---------- Card System ---------- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.card-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.card-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.card-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.card-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.card-body {
  padding: 25px;
}

.card-body h3 {
  margin-bottom: 10px;
  font-size: 1.25rem;
}

.card-body p {
  color: var(--text-light);
  font-size: 0.95rem;
  margin-bottom: 15px;
}

.card-tag {
  display: inline-block;
  padding: 4px 12px;
  background: var(--light-bg);
  color: var(--primary);
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.card-tag.hot {
  background: var(--hot);
  color: var(--white);
}

/* Feature Card */
.feature-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 35px 30px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.feature-card .icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.8rem;
  color: var(--white);
}

.feature-card h3 { margin-bottom: 12px; }
.feature-card p { color: var(--text-light); font-size: 0.95rem; }

/* ---------- Beach Area Cards ---------- */
.beach-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}

.beach-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.beach-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 12px;
}

/* ---------- Info Box / Alert ---------- */
.info-box {
  background: var(--light-bg);
  border-left: 4px solid var(--primary);
  padding: 25px 30px;
  border-radius: 0 var(--radius) var(--radius) 0;
  margin: 30px 0;
}

.info-box.warning {
  background: #fff9e6;
  border-left-color: var(--accent-dark);
}

.info-box.hot {
  background: #fdf0ef;
  border-left-color: var(--hot);
}

.info-box h4 {
  margin-bottom: 8px;
  color: var(--primary);
}

.info-box.warning h4 { color: var(--accent-dark); }
.info-box.hot h4 { color: var(--hot); }

/* ---------- Price / Stats Boxes ---------- */
.stat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 25px;
  margin: 30px 0;
}

.stat-box {
  text-align: center;
  padding: 30px 20px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.stat-box .number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary);
  display: block;
}

.stat-box .label {
  color: var(--text-light);
  font-size: 0.95rem;
  margin-top: 5px;
}

/* ---------- Table ---------- */
.styled-table {
  width: 100%;
  border-collapse: collapse;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  margin: 25px 0;
}

.styled-table thead {
  background: var(--primary);
  color: var(--white);
}

.styled-table th, .styled-table td {
  padding: 14px 20px;
  text-align: left;
}

.styled-table tbody tr {
  border-bottom: 1px solid var(--gray-200);
}

.styled-table tbody tr:nth-child(even) {
  background: var(--light-bg);
}

.styled-table tbody tr:hover {
  background: #e3f2fd;
}

/* ---------- Accordion ---------- */
.accordion { margin: 25px 0; }

.accordion-item {
  background: var(--white);
  border-radius: var(--radius);
  margin-bottom: 12px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.accordion-header {
  padding: 20px 25px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.05rem;
  transition: var(--transition);
}

.accordion-header:hover { background: var(--light-bg); }

.accordion-header::after {
  content: '+';
  font-size: 1.3rem;
  color: var(--primary);
  font-weight: 700;
  transition: var(--transition);
}

.accordion-item.active .accordion-header::after {
  content: '-';
  transform: rotate(180deg);
}

.accordion-body {
  padding: 0 25px 20px;
  display: none;
  color: var(--text-light);
  line-height: 1.8;
}

.accordion-item.active .accordion-body { display: block; }

/* ---------- CTA Banner ---------- */
.cta-banner {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--white);
  padding: 60px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 400px;
  height: 400px;
  background: rgba(255,255,255,0.05);
  border-radius: 50%;
}

.cta-banner h2 { color: var(--white); margin-bottom: 15px; }
.cta-banner p { opacity: 0.9; font-size: 1.1rem; margin-bottom: 25px; max-width: 600px; margin-left: auto; margin-right: auto; }

.cta-banner-gold {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
  color: var(--dark);
}
.cta-banner-gold h2 { color: var(--dark); }

/* ---------- Content Layout ---------- */
.content-section { padding: 80px 0; }

.content-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.content-two-col.reverse { direction: rtl; }
.content-two-col.reverse > * { direction: ltr; }

.content-img {
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.content-text h2 { margin-bottom: 20px; }
.content-text p { color: var(--text-light); }

.content-text ul {
  margin: 15px 0;
  padding-left: 0;
}

.content-text ul li {
  padding: 8px 0 8px 30px;
  position: relative;
  color: var(--text-light);
}

.content-text ul li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 700;
}

/* Sidebar Layout */
.page-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 40px;
  padding: 60px 0;
}

.page-content h2 { margin: 35px 0 15px; }
.page-content h3 { margin: 25px 0 12px; }
.page-content p { color: var(--text-light); line-height: 1.8; }

.page-content ul {
  margin: 15px 0 25px;
  padding-left: 0;
}

.page-content ul li {
  padding: 6px 0 6px 25px;
  position: relative;
  color: var(--text-light);
}

.page-content ul li::before {
  content: '\2022';
  position: absolute;
  left: 8px;
  color: var(--primary);
  font-weight: 700;
}

.sidebar .widget {
  background: var(--white);
  border-radius: var(--radius);
  padding: 25px;
  box-shadow: var(--shadow);
  margin-bottom: 25px;
}

.sidebar .widget h3 {
  font-size: 1.1rem;
  margin-bottom: 15px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--light-bg);
}

.sidebar .widget ul li {
  padding: 8px 0;
  border-bottom: 1px solid var(--gray-200);
}

.sidebar .widget ul li:last-child { border-bottom: none; }

.sidebar .widget ul li a {
  color: var(--text);
  font-size: 0.95rem;
}

.sidebar .widget ul li a:hover { color: var(--primary); }

.sidebar .widget-cta {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
  text-align: center;
}

.sidebar .widget-cta h3 {
  color: var(--white);
  border-bottom-color: rgba(255,255,255,0.2);
}

.sidebar .widget-cta p {
  color: rgba(255,255,255,0.9);
  font-size: 0.95rem;
}

/* ---------- Directory / Listings ---------- */
.listing-item {
  background: var(--white);
  border-radius: var(--radius);
  padding: 25px 30px;
  box-shadow: var(--shadow);
  margin-bottom: 20px;
  display: flex;
  gap: 25px;
  align-items: start;
  transition: var(--transition);
}

.listing-item:hover {
  box-shadow: var(--shadow-hover);
}

.listing-icon {
  width: 60px;
  height: 60px;
  background: var(--light-bg);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.listing-info h3 { font-size: 1.15rem; margin-bottom: 5px; }
.listing-info p { color: var(--text-light); font-size: 0.95rem; margin-bottom: 8px; }

.listing-meta {
  display: flex;
  gap: 15px;
  font-size: 0.85rem;
  color: var(--text-light);
}

.listing-meta span { display: flex; align-items: center; gap: 5px; }

/* Filter Tabs */
.filter-tabs {
  display: flex;
  gap: 10px;
  margin-bottom: 30px;
  flex-wrap: wrap;
  justify-content: center;
}

.filter-tabs button {
  padding: 10px 24px;
  border: 2px solid var(--gray-300);
  background: var(--white);
  border-radius: 50px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: var(--transition);
  color: var(--text);
}

.filter-tabs button:hover,
.filter-tabs button.active {
  border-color: var(--primary);
  background: var(--primary);
  color: var(--white);
}

/* ---------- Contact Form ---------- */
.contact-form {
  max-width: 600px;
  margin: 0 auto;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
  font-size: 0.95rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid var(--gray-300);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: var(--transition);
  background: var(--white);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(0,119,182,0.1);
}

.form-group textarea { min-height: 150px; resize: vertical; }

/* ---------- Map Embed ---------- */
.map-container {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  margin: 30px 0;
}

.map-container iframe {
  width: 100%;
  height: 400px;
  border: none;
}

/* ---------- Seasonal Banner ---------- */
.season-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  margin: 30px 0;
}

.season-strip .season {
  padding: 30px 20px;
  text-align: center;
  color: var(--white);
}

.season-strip .spring { background: #27ae60; }
.season-strip .summer { background: var(--primary); }
.season-strip .fall { background: #e67e22; }
.season-strip .winter { background: #8e44ad; }

.season-strip .season h4 { color: var(--white); margin-bottom: 5px; }
.season-strip .season p { font-size: 0.85rem; opacity: 0.9; margin: 0; }

/* ---------- Gallery Grid ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 15px;
  margin: 30px 0;
}

.gallery-grid img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  cursor: pointer;
}

.gallery-grid img:hover {
  transform: scale(1.03);
  box-shadow: var(--shadow-lg);
}

/* ---------- Timeline ---------- */
.timeline {
  position: relative;
  padding: 20px 0;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 30px;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--primary);
}

.timeline-item {
  padding: 0 0 40px 70px;
  position: relative;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: 22px;
  top: 5px;
  width: 20px;
  height: 20px;
  background: var(--accent);
  border: 3px solid var(--primary);
  border-radius: 50%;
}

.timeline-item h3 { margin-bottom: 5px; font-size: 1.1rem; }
.timeline-item .year { color: var(--primary); font-weight: 700; font-size: 0.9rem; }
.timeline-item p { color: var(--text-light); margin-top: 8px; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--dark);
  color: rgba(255,255,255,0.8);
  padding: 70px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 50px;
}

.footer-about h3 {
  color: var(--white);
  font-size: 1.5rem;
  margin-bottom: 15px;
}

.footer-about h3 span { color: var(--accent); }

.footer-about p {
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 20px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 42px;
  height: 42px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1rem;
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--primary);
  transform: translateY(-3px);
}

.footer-col h4 {
  color: var(--white);
  font-size: 1.1rem;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 12px;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: var(--accent);
  border-radius: 2px;
}

.footer-col ul li { margin-bottom: 10px; }

.footer-col ul li a {
  color: rgba(255,255,255,0.7);
  font-size: 0.95rem;
  transition: var(--transition);
}

.footer-col ul li a:hover {
  color: var(--accent);
  padding-left: 5px;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 25px 0;
  text-align: center;
  font-size: 0.9rem;
}

.footer-bottom a { color: var(--accent); }

/* ---------- Ads Placeholder ---------- */
.ad-space {
  background: var(--gray-100);
  border: 2px dashed var(--gray-300);
  border-radius: var(--radius);
  padding: 30px;
  text-align: center;
  color: var(--gray-600);
  font-size: 0.9rem;
  margin: 25px 0;
}

.ad-space.leaderboard { min-height: 100px; }
.ad-space.sidebar-ad { min-height: 260px; }

/* ---------- Badge / Tags ---------- */
.badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.badge-primary { background: var(--primary); color: var(--white); }
.badge-accent { background: var(--accent); color: var(--dark); }
.badge-hot { background: var(--hot); color: var(--white); }
.badge-green { background: #27ae60; color: var(--white); }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .card-grid-3 { grid-template-columns: repeat(2, 1fr); }
  .card-grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .page-layout { grid-template-columns: 1fr; }
  .content-two-col { grid-template-columns: 1fr; gap: 30px; }
}

@media (max-width: 768px) {
  .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 20px;
    box-shadow: var(--shadow-lg);
    gap: 0;
  }

  .nav-menu.active { display: flex; }

  .nav-menu a {
    padding: 12px 15px;
    width: 100%;
  }

  .nav-menu .dropdown-content {
    position: static;
    box-shadow: none;
    padding-left: 20px;
    display: none;
  }

  .nav-menu .dropdown.active .dropdown-content { display: block; }

  .nav-toggle { display: block; }

  .hero { min-height: 70vh; }
  .hero h1 { font-size: clamp(1.8rem, 7vw, 2.8rem); }

  .card-grid-3,
  .card-grid-4,
  .card-grid-2 { grid-template-columns: 1fr; }

  .card-grid { grid-template-columns: 1fr; }

  .stat-grid { grid-template-columns: repeat(2, 1fr); }

  .season-strip { grid-template-columns: repeat(2, 1fr); }

  .footer-grid { grid-template-columns: 1fr; }

  .listing-item { flex-direction: column; }

  .top-bar .container { flex-direction: column; gap: 5px; text-align: center; }

  .content-two-col.reverse { direction: ltr; }

  .py-section { padding: 50px 0; }
}

@media (max-width: 480px) {
  .hero { min-height: 60vh; }
  .stat-grid { grid-template-columns: 1fr; }
  .season-strip { grid-template-columns: 1fr; }
  .hero-btns { flex-direction: column; align-items: center; }
}

/* ---------- Animations ---------- */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.fade-in-up { animation: fadeInUp 0.6s ease forwards; }

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

.pulse { animation: pulse 2s infinite; }

/* Smooth scroll offset for sticky header */
:target { scroll-margin-top: 80px; }

/* Print styles */
@media print {
  .site-header, .site-footer, .top-bar, .cta-banner, .ad-space, .sidebar { display: none; }
  body { font-size: 12pt; color: #000; }
  a { color: #000; text-decoration: underline; }
}
