/* ============================================
   Mohali Travel Guide - Main Stylesheet
   Domain: mohali.in
   Author: HitMedia
   ============================================ */

/* ----- CSS Variables / Root ----- */
:root {
  --color-primary: #1a4a6e;
  --color-primary-dark: #0f2d44;
  --color-accent: #e8a838;
  --color-accent-light: #f5c76b;
  --color-accent-dark: #c98a1e;
  --color-saffron: #ff9933;
  --color-green: #138808;
  --color-white: #ffffff;
  --color-off-white: #f8f6f3;
  --color-light-gray: #f0efed;
  --color-mid-gray: #9ca3af;
  --color-text: #2d2d2d;
  --color-text-light: #6b7280;
  --color-border: #e5e7eb;
  --font-primary: 'Segoe UI', system-ui, -apple-system, sans-serif;
  --font-heading: 'Segoe UI', system-ui, -apple-system, sans-serif;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
  --shadow-lg: 0 8px 30px rgba(0,0,0,0.12);
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --max-width: 1200px;
  --nav-height: 72px;
  --transition: all 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-primary);
  color: var(--color-text);
  background: var(--color-off-white);
  line-height: 1.7;
  font-size: 16px;
  padding-top: var(--nav-height);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--color-primary);
  text-decoration: none;
  transition: var(--transition);
}

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

ul, ol {
  list-style: none;
}

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

h1 { font-size: 2.4rem; font-weight: 700; }
h2 { font-size: 1.8rem; font-weight: 700; margin-bottom: 1rem; }
h3 { font-size: 1.35rem; font-weight: 600; margin-bottom: 0.75rem; }

p { margin-bottom: 1rem; color: var(--color-text-light); }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

section {
  padding: 4rem 0;
}

/* ----- Buttons ----- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  text-decoration: none;
}

.btn-primary {
  background: var(--color-primary);
  color: var(--color-white);
}

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

.btn-accent {
  background: var(--color-accent);
  color: var(--color-primary-dark);
}

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

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

.btn-outline:hover {
  background: var(--color-primary);
  color: var(--color-white);
}

/* ----- Header / Navigation ----- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--color-white);
  box-shadow: var(--shadow-sm);
  height: var(--nav-height);
}

.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--color-primary-dark);
  text-decoration: none;
}

.logo-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--color-saffron), var(--color-green));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  font-size: 1.1rem;
}

.logo span {
  font-weight: 300;
  color: var(--color-mid-gray);
  font-size: 0.85rem;
  display: block;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--color-primary);
  padding: 8px;
}

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

.nav-menu a {
  padding: 8px 14px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-text);
  border-radius: var(--radius-sm);
  transition: var(--transition);
  position: relative;
}

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

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

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

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

.dropdown-content a {
  display: block;
  padding: 10px 20px;
  border-radius: 0;
}

.dropdown-content a:hover {
  background: var(--color-light-gray);
}

/* ----- Hero Section ----- */
.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--color-white);
  overflow: hidden;
  margin-top: calc(-1 * var(--nav-height));
}

.hero-image {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15,45,68,0.85) 0%, rgba(26,74,110,0.7) 50%, rgba(0,0,0,0.4) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 0 24px;
  animation: fadeInUp 1s ease;
}

.hero-badge {
  display: inline-block;
  background: rgba(232,168,56,0.2);
  border: 1px solid var(--color-accent);
  color: var(--color-accent-light);
  padding: 6px 18px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.hero h1 {
  font-size: 3.2rem;
  color: var(--color-white);
  margin-bottom: 0.5rem;
  line-height: 1.2;
}

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

.hero p {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

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

/* ----- Page Header (inner pages) ----- */
.page-header {
  position: relative;
  padding: 8rem 0 4rem;
  margin-top: calc(-1 * var(--nav-height));
  text-align: center;
  color: var(--color-white);
  overflow: hidden;
  min-height: 350px;
  display: flex;
  align-items: flex-end;
}

.page-header-image {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.page-header-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-header-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15,45,68,0.8) 0%, rgba(26,74,110,0.6) 100%);
  z-index: 1;
}

.page-header-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-bottom: 2rem;
}

.page-header h1 {
  color: var(--color-white);
  font-size: 2.6rem;
  margin-bottom: 0.5rem;
}

.page-header p {
  color: rgba(255,255,255,0.85);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

/* Breadcrumbs */
.breadcrumbs {
  position: relative;
  z-index: 2;
  padding: 1rem 0;
  background: transparent;
  margin-top: 0.5rem;
}

.breadcrumbs-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.breadcrumbs ol {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
}

.breadcrumbs ol li {
  display: flex;
  align-items: center;
  gap: 8px;
}

.breadcrumbs ol li + li::before {
  content: '/';
  color: rgba(255,255,255,0.4);
}

.breadcrumbs a {
  color: rgba(255,255,255,0.85);
  text-decoration: none;
}

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

.breadcrumbs .current {
  color: var(--color-accent-light);
}

/* ----- Cards Grid ----- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 28px;
}

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

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

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

.card-body {
  padding: 1.5rem;
}

.card-body h3 {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
}

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

.card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 0.75rem;
}

.tag {
  display: inline-block;
  padding: 3px 10px;
  font-size: 0.75rem;
  font-weight: 500;
  border-radius: 50px;
  background: var(--color-light-gray);
  color: var(--color-text-light);
}

.tag-spiritual { background: #fef3c7; color: #92400e; }
.tag-sports { background: #dbeafe; color: #1e40af; }
.tag-family { background: #d1fae5; color: #065f46; }
.tag-history { background: #fce7f3; color: #9d174d; }
.tag-food { background: #ffedd5; color: #9a3412; }
.tag-nature { background: #dcfce7; color: #166534; }
.tag-free { background: #e0e7ff; color: #3730a3; }
.tag-halfday { background: #f3e8ff; color: #6b21a8; }

/* ----- Section Titles ----- */
.section-title {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title h2 {
  position: relative;
  display: inline-block;
}

.section-title h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: var(--color-accent);
  margin: 12px auto 0;
  border-radius: 2px;
}

.section-title p {
  max-width: 600px;
  margin: 0.75rem auto 0;
}

/* ----- Featured / Spotlight Section ----- */
.spotlight {
  background: var(--color-white);
}

.spotlight-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.spotlight-image {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.spotlight-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.spotlight-content h2 {
  margin-bottom: 1rem;
}

.spotlight-content .highlight-list {
  margin: 1.5rem 0;
}

.highlight-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 0.95rem;
}

.highlight-list li::before {
  content: '✓';
  color: var(--color-green);
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 2px;
}

/* ----- Stats / Numbers Section ----- */
.stats-section {
  background: var(--color-primary);
  color: var(--color-white);
  padding: 3rem 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}

.stat-item h3 {
  font-size: 2.2rem;
  color: var(--color-accent);
  margin-bottom: 4px;
}

.stat-item p {
  color: rgba(255,255,255,0.75);
  font-size: 0.9rem;
  margin: 0;
}

/* ----- Itinerary Cards ----- */
.itinerary-card {
  background: var(--color-white);
  border-radius: var(--radius-md);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--color-accent);
  margin-bottom: 1.5rem;
}

.itinerary-card h3 {
  display: flex;
  align-items: center;
  gap: 10px;
}

.itinerary-card .duration {
  display: inline-block;
  background: var(--color-accent);
  color: var(--color-primary-dark);
  padding: 2px 12px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
}

.itinerary-stops {
  margin-top: 1rem;
}

.itinerary-stops li {
  display: flex;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--color-border);
  font-size: 0.92rem;
}

.itinerary-stops li:last-child {
  border-bottom: none;
}

.itinerary-stops .stop-time {
  font-weight: 600;
  color: var(--color-primary);
  min-width: 60px;
  flex-shrink: 0;
}

/* ----- FAQ Section ----- */
.faq-item {
  background: var(--color-white);
  border-radius: var(--radius-sm);
  margin-bottom: 12px;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.faq-question {
  padding: 1.2rem 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  font-size: 1rem;
  color: var(--color-primary-dark);
  background: none;
  border: none;
  width: 100%;
  text-align: left;
}

.faq-question::after {
  content: '+';
  font-size: 1.3rem;
  color: var(--color-accent);
  transition: var(--transition);
}

.faq-item.active .faq-question::after {
  content: '−';
}

.faq-answer {
  padding: 0 1.5rem 1.2rem;
  font-size: 0.92rem;
  color: var(--color-text-light);
  display: none;
}

.faq-item.active .faq-answer {
  display: block;
}

/* ----- Info Box ----- */
.info-box {
  background: var(--color-light-gray);
  border-radius: var(--radius-sm);
  padding: 1.5rem;
  border-left: 4px solid var(--color-accent);
  margin: 1.5rem 0;
}

.info-box h4 {
  margin-bottom: 0.5rem;
  color: var(--color-primary-dark);
}

.info-box p, .info-box li {
  font-size: 0.92rem;
}

.info-box ul {
  margin-top: 0.5rem;
}

.info-box ul li {
  padding: 4px 0;
  padding-left: 20px;
  position: relative;
}

.info-box ul li::before {
  content: '•';
  position: absolute;
  left: 4px;
  color: var(--color-accent);
  font-weight: 700;
}

/* ----- Content Layout (sidebar) ----- */
.content-layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
}

.sidebar {
  position: sticky;
  top: calc(var(--nav-height) + 24px);
  align-self: start;
}

.sidebar-card {
  background: var(--color-white);
  border-radius: var(--radius-sm);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  margin-bottom: 1.5rem;
}

.sidebar-card h4 {
  font-size: 1rem;
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--color-accent);
}

.sidebar-links li {
  margin-bottom: 8px;
}

.sidebar-links a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  transition: var(--transition);
}

.sidebar-links a:hover {
  background: var(--color-light-gray);
}

/* ----- Table / Schedule ----- */
.schedule-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--color-white);
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  margin: 1.5rem 0;
}

.schedule-table th {
  background: var(--color-primary);
  color: var(--color-white);
  padding: 12px 16px;
  text-align: left;
  font-weight: 600;
  font-size: 0.9rem;
}

.schedule-table td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--color-border);
  font-size: 0.9rem;
}

.schedule-table tr:nth-child(even) td {
  background: var(--color-light-gray);
}

.schedule-table tr:hover td {
  background: #f0eeeb;
}

/* ----- Month Cards (Weather) ----- */
.month-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 16px;
}

.month-card {
  background: var(--color-white);
  border-radius: var(--radius-sm);
  padding: 1.2rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
}

.month-card .month-name {
  font-weight: 700;
  font-size: 1rem;
  color: var(--color-primary);
  margin-bottom: 4px;
}

.month-card .month-temp {
  font-size: 0.85rem;
  color: var(--color-text-light);
}

.month-card .month-icon {
  font-size: 1.5rem;
  margin-bottom: 8px;
}

.month-card.recommended {
  border: 2px solid var(--color-green);
  position: relative;
}

.month-card.recommended::after {
  content: '★ Best';
  position: absolute;
  top: -10px;
  right: -10px;
  background: var(--color-green);
  color: white;
  font-size: 0.7rem;
  padding: 2px 8px;
  border-radius: 50px;
  font-weight: 600;
}

/* ----- Blog Cards ----- */
.blog-card {
  background: var(--color-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

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

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

.blog-card-body {
  padding: 1.5rem;
}

.blog-date {
  font-size: 0.8rem;
  color: var(--color-mid-gray);
  margin-bottom: 8px;
}

.blog-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.blog-card p {
  font-size: .9rem;
  margin-bottom: 1rem;
}

.blog-card .read-more {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--color-primary);
}

/* ----- Gallery Grid ----- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

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

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

/* -------------------- FOOTER -------------------- */
.site-footer {
  background: var(--color-primary-dark);
  color: rgba(255,255,255,0.8);
  padding: 3rem 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 32px;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

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

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

.footer-col p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 1rem;
}

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

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

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

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 1rem;
}

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

.footer-social a:hover {
  background: var(--color-accent);
  color: var(--color-primary-dark);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 1.5rem 0;
  margin-top: 2rem;
  text-align: center;
}

.footer-bottom-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  margin: 0;
}

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

.footer-bottom a:hover {
  text-decoration: underline;
}

.cookie-notice {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  margin-top: 4px;
}

/* ----- Cookies Banner ----- */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--color-primary-dark);
  color: rgba(255,255,255,0.9);
  padding: 16px 24px;
  z-index: 9999;
  display: none;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
}

.cookie-banner.show {
  display: block;
}

.cookie-banner-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.cookie-banner p {
  font-size: 0.85rem;
  margin: 0;
  color: rgba(255,255,255,0.75);
}

.cookie-banner a {
  color: var(--color-accent);
  text-decoration: underline;
}

.cookie-btn {
  background: var(--color-accent);
  color: var(--color-primary-dark);
  border: none;
  padding: 10px 24px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  white-space: nowrap;
  transition: var(--transition);
}

.cookie-btn:hover {
  background: var(--color-accent-light);
}

/* ----- Encrypted Email ----- */
.encrypted-email {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  color: var(--color-accent);
  font-size: 0.88rem;
  transition: var(--transition);
  background: none;
  border: none;
  padding: 0;
}

.encrypted-email:hover {
  color: var(--color-accent-light);
  text-decoration: underline;
}

/* ----- Back to Top ----- */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--color-primary);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  cursor: pointer;
  border: none;
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 999;
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background: var(--color-accent);
  color: var(--color-primary-dark);
  transform: translateY(-3px);
}

/* ----- Responsive ----- */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .spotlight-grid {
    grid-template-columns: 1fr;
  }
  .content-layout {
    grid-template-columns: 1fr;
  }
  .sidebar {
    position: static;
  }
}

@media (max-width: 768px) {
  :root {
    --nav-height: 62px;
  }
  
  h1 { font-size: 1.8rem; }
  h2 { font-size: 1.4rem; }
  
  .nav-toggle {
    display: block;
  }
  
  .nav-menu {
    display: none;
    position: absolute;
    top: var(--nav-height);
    left: 0;
    right: 0;
    background: var(--color-white);
    flex-direction: column;
    padding: 16px;
    box-shadow: var(--shadow-lg);
    border-top: 1px solid var(--color-border);
  }
  
  .nav-menu.open {
    display: flex;
  }
  
  .nav-menu .dropdown-content {
    position: static;
    box-shadow: none;
    padding-left: 16px;
    display: none;
  }
  
  .nav-menu .dropdown.open .dropdown-content {
    display: block;
  }
  
  .hero {
    min-height: 70vh;
  }
  
  .hero h1 {
    font-size: 2rem;
  }
  
  .hero p {
    font-size: 1rem;
  }
  
  .page-header {
    padding: 6rem 0 3rem;
    min-height: 280px;
  }
  
  .page-header h1 {
    font-size: 1.8rem;
  }
  
  .card-grid {
    grid-template-columns: 1fr;
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-bottom-inner {
    flex-direction: column;
    text-align: center;
  }
  
  .section-title p {
    font-size: 0.9rem;
  }

  .spotlight-image img {
    height: 260px;
  }

  .gallery-grid img {
    height: 180px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
  }

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

@media (max-width: 480px) {
  body { font-size: 15px; }
  .container { padding: 0 16px; }
  section { padding: 2.5rem 0; }
  .gallery-grid { grid-template-columns: 1fr; }
  .card-grid { gap: 16px; }
  .month-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
}

/* ----- Utility Classes ----- */
.text-center { text-align: center; }
.mt-2 { margin-top: 2rem; }
.mb-2 { margin-bottom: 2rem; }
.gap-1 { gap: 1rem; }
.flex-center { display: flex; align-items: center; justify-content: center; }
