/*
Theme Name: Henderson Trade Days
Theme URI: https://www.hendersontradedays.com
Author: DS Web
Author URI: https://www.hendersontradedays.com
Description: Custom WordPress theme for Henderson Trade Days — East Texas' premier monthly flea market in Henderson, TX. Built for local SEO with schema markup, auto-updating dates, and mobile-first design.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: henderson-trade-days
Tags: flea-market, local-business, custom-logo, custom-menu, one-column, two-columns, responsive-layout
*/

/* ===== CSS VARIABLES ===== */
:root {
  --brand-red: #9B2335;
  --brand-red-light: #C03040;
  --brand-red-dark: #7A1C2A;
  --brand-blue: #2B4C8C;
  --brand-blue-light: #3A65B0;
  --brand-blue-dark: #1E3666;
  --white: #FFFFFF;
  --off-white: #FAFAFA;
  --light-gray: #F0F2F5;
  --silver: #E0E3E8;
  --text: #1A1A2E;
  --text-light: #5A5F6D;
  --gold: #C8A951;
  --gold-light: #F0E2B5;
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: 'Nunito', sans-serif;
  color: var(--text);
  background: var(--off-white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

a { transition: all 0.2s; }
img { max-width: 100%; height: auto; }

/* Skip to content (accessibility) */
.skip-to-content {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
  z-index: 9999;
  padding: 12px 24px;
  background: var(--brand-red);
  color: var(--white);
  font-weight: 800;
  text-decoration: none;
  font-size: 0.9rem;
}
.skip-to-content:focus {
  position: fixed;
  top: 10px;
  left: 10px;
  width: auto;
  height: auto;
  overflow: visible;
  border-radius: 4px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.3);
}

/* ===== TOP STRIPE ===== */
.top-stripe {
  height: 6px;
  background: linear-gradient(90deg, var(--brand-red) 0%, var(--brand-red) 50%, var(--brand-blue) 50%, var(--brand-blue) 100%);
}

/* ===== UTILITY BAR ===== */
.utility-bar {
  background: var(--brand-blue-dark);
  color: var(--white);
  font-size: 0.82rem;
  padding: 7px 0;
  font-weight: 700;
  letter-spacing: 0.2px;
}
.utility-bar .container { display: flex; justify-content: space-between; align-items: center; }
.utility-bar a { color: rgba(255,255,255,0.85); text-decoration: none; margin-right: 22px; transition: color 0.2s; }
.utility-bar a:hover { color: var(--white); }
.utility-bar .social a { margin-right: 0; margin-left: 15px; }

/* ===== HEADER ===== */
.site-header {
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 20px rgba(0,0,0,0.06);
  border-bottom: 3px solid var(--brand-red);
}
.site-header .container { display: flex; align-items: center; justify-content: space-between; padding: 6px 20px; }

.logo { display: flex; align-items: center; text-decoration: none; gap: 12px; }
.logo img { height: 60px; width: auto; }

/* ===== NAVIGATION ===== */
.main-nav { display: flex; align-items: center; gap: 2px; }
.main-nav a,
.main-nav .menu-item a {
  color: var(--text);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.88rem;
  padding: 8px 13px;
  border-radius: 6px;
  transition: all 0.2s;
}
.main-nav a:hover,
.main-nav .menu-item a:hover { color: var(--brand-red); background: rgba(155,35,53,0.06); }
.main-nav .current-menu-item > a,
.main-nav .current_page_item > a { color: var(--brand-red); }

/* WP menu list reset */
.main-nav ul { list-style: none; display: flex; align-items: center; gap: 2px; }
.main-nav ul ul { display: none; }
.main-nav li { position: relative; }

/* Dropdown */
.main-nav li:hover > ul {
  display: block;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  border: 1px solid var(--silver);
  border-top: 3px solid var(--brand-blue);
  border-radius: 0 0 8px 8px;
  box-shadow: 0 12px 32px rgba(0,0,0,0.12);
  min-width: 200px;
  padding: 6px 0;
  z-index: 200;
}
.main-nav li:hover > ul a {
  display: block;
  padding: 10px 20px;
  font-weight: 600;
  border-radius: 0;
  font-size: 0.88rem;
}

.nav-cta {
  background: var(--brand-red) !important;
  color: var(--white) !important;
  padding: 10px 22px !important;
  border-radius: 6px !important;
  font-weight: 800 !important;
  text-transform: uppercase;
  font-size: 0.78rem !important;
  letter-spacing: 1px;
  margin-left: 6px;
}
.nav-cta:hover { background: var(--brand-red-dark) !important; }

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.8rem;
  cursor: pointer;
  color: var(--brand-red);
}

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

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 4px;
  font-weight: 800;
  text-decoration: none;
  font-size: 0.88rem;
  transition: all 0.2s;
  border: 2px solid transparent;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  cursor: pointer;
}
.btn-white { background: var(--white); color: var(--brand-blue-dark); }
.btn-white:hover { background: var(--light-gray); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,0.15); }
.btn-outline-white { border-color: rgba(255,255,255,0.5); color: var(--white); background: transparent; }
.btn-outline-white:hover { background: rgba(255,255,255,0.12); border-color: var(--white); }
.btn-red { background: var(--brand-red); color: var(--white); }
.btn-red:hover { background: var(--brand-red-dark); transform: translateY(-2px); box-shadow: 0 4px 16px rgba(155,35,53,0.3); }
.btn-blue { background: var(--brand-blue); color: var(--white); }
.btn-blue:hover { background: var(--brand-blue-dark); transform: translateY(-2px); box-shadow: 0 4px 16px rgba(43,76,140,0.3); }
.btn-outline-red { border-color: var(--brand-red); color: var(--brand-red); background: transparent; }
.btn-outline-red:hover { background: var(--brand-red); color: var(--white); }

/* ===== HERO (Page Banner) ===== */
.hero {
  background: var(--brand-blue-dark);
  color: var(--white);
  padding: 70px 0 60px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: 55%;
  background: var(--brand-red);
  clip-path: polygon(15% 0, 100% 0, 100% 100%, 0% 100%);
  opacity: 0.95;
}
.hero::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='20' height='20' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='1' cy='1' r='1' fill='white' opacity='0.04'/%3E%3C/svg%3E");
  background-size: 20px 20px;
}
.hero .container { position: relative; z-index: 1; display: flex; align-items: center; justify-content: space-between; gap: 40px; }
.hero-content { max-width: 560px; }
.hero-badge {
  display: inline-block;
  background: var(--white);
  color: var(--brand-red);
  padding: 7px 20px;
  border-radius: 4px;
  font-weight: 900;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 22px;
}
.hero h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3.8rem;
  line-height: 1.05;
  margin-bottom: 18px;
  letter-spacing: 1px;
}
.hero h1 .red { color: var(--brand-red); background: var(--white); padding: 0 12px; display: inline-block; margin: 4px 0; }
.hero p {
  font-size: 1.1rem;
  opacity: 0.9;
  margin-bottom: 32px;
  font-weight: 400;
  max-width: 480px;
  line-height: 1.7;
}
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }

/* Page hero (inner pages) */
.page-hero {
  background: linear-gradient(135deg, var(--brand-blue-dark) 0%, var(--brand-blue) 50%, var(--brand-red) 100%);
  color: var(--white);
  padding: 50px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='20' height='20' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='1' cy='1' r='1' fill='white' opacity='0.04'/%3E%3C/svg%3E");
  background-size: 20px 20px;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.8rem;
  letter-spacing: 1px;
  margin-bottom: 10px;
}
.page-hero p { opacity: 0.85; font-size: 1.1rem; max-width: 600px; margin: 0 auto; }
.page-hero .breadcrumb {
  margin-bottom: 16px;
  font-size: 0.85rem;
  opacity: 0.7;
}
.page-hero .breadcrumb a { color: var(--white); text-decoration: none; }
.page-hero .breadcrumb a:hover { text-decoration: underline; }

/* Hero next-date card */
.hero-next-date {
  background: var(--white);
  border-radius: 10px;
  padding: 32px 38px;
  text-align: center;
  min-width: 270px;
  box-shadow: 0 16px 48px rgba(0,0,0,0.25);
  color: var(--text);
}
.hero-next-date .label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--brand-blue);
  font-weight: 800;
}
.hero-next-date .date {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.6rem;
  color: var(--brand-red);
  margin: 6px 0;
  letter-spacing: 1px;
}
.hero-next-date .divider {
  width: 40px;
  height: 3px;
  background: var(--brand-blue);
  margin: 10px auto;
  border-radius: 3px;
}
.hero-next-date .hours { font-size: 0.9rem; color: var(--text-light); font-weight: 700; line-height: 1.6; }

/* ===== INFO BAR ===== */
.info-bar {
  background: var(--brand-blue);
  color: var(--white);
  padding: 13px 0;
  font-size: 0.9rem;
  font-weight: 700;
}
.info-bar .container { display: flex; justify-content: center; align-items: center; gap: 10px; flex-wrap: wrap; }
.info-bar .item { padding: 0 16px; }
.info-bar .item + .item { border-left: 1px solid rgba(255,255,255,0.2); }
.info-bar a { color: var(--white); text-decoration: none; }
.info-bar a:hover { text-decoration: underline; }

/* ===== SECTIONS ===== */
section { padding: 70px 0; }

.section-header { text-align: center; margin-bottom: 44px; }
.section-header h2 {
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  font-size: 1.8rem;
  color: var(--text);
  margin-bottom: 8px;
}
.section-header h2 .red { color: var(--brand-red); }
.section-header h2 .blue { color: var(--brand-blue); }
.section-header p { color: var(--text-light); font-size: 1.05rem; max-width: 560px; margin: 0 auto; }
.section-header .accent-bar {
  width: 60px;
  height: 4px;
  margin: 16px auto 0;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--brand-red), var(--brand-blue));
}

/* ===== WELCOME ===== */
.welcome { background: var(--white); }
.welcome-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.welcome-text h2 {
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  font-size: 1.8rem;
  color: var(--text);
  margin-bottom: 18px;
}
.welcome-text h2 span { color: var(--brand-red); }
.welcome-text p { margin-bottom: 16px; color: var(--text-light); font-size: 1.02rem; }
.welcome-features { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 28px; }
.feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  font-size: 0.9rem;
  color: var(--text);
}
.feature-icon {
  width: 40px; height: 40px;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
  color: var(--white);
}
.feature-icon.fi-red { background: var(--brand-red); }
.feature-icon.fi-blue { background: var(--brand-blue); }

.welcome-image {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);
  border: 4px solid var(--white);
  outline: 2px solid var(--silver);
}
.welcome-image img { width: 100%; height: 420px; object-fit: cover; display: block; }

/* ===== VENDORS WANTED ===== */
.wanted-banner {
  background: var(--brand-red);
  color: var(--white);
  padding: 60px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.wanted-banner::before {
  content: '';
  position: absolute;
  top: 0; left: 50%; right: 0; bottom: 0;
  background: var(--brand-red-dark);
  clip-path: polygon(10% 0, 100% 0, 100% 100%, 0% 100%);
}
.wanted-banner .container { position: relative; z-index: 1; }
.wanted-banner h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3rem;
  margin-bottom: 10px;
  letter-spacing: 2px;
}
.wanted-banner > .container > p {
  font-size: 1.1rem;
  opacity: 0.9;
  margin-bottom: 10px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}
.wanted-cards { display: flex; justify-content: center; gap: 24px; flex-wrap: wrap; margin-top: 30px; }
.wanted-card {
  background: var(--white);
  color: var(--text);
  border-radius: 10px;
  padding: 32px 36px;
  text-align: center;
  min-width: 280px;
  max-width: 340px;
  box-shadow: 0 8px 28px rgba(0,0,0,0.15);
  transition: transform 0.25s;
}
.wanted-card:hover { transform: translateY(-5px); }
.wanted-card .card-icon {
  width: 56px; height: 56px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  margin: 0 auto 14px;
  color: var(--white);
}
.wanted-card:nth-child(1) .card-icon { background: var(--brand-blue); }
.wanted-card:nth-child(2) .card-icon { background: var(--brand-red); }
.wanted-card h3 {
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  font-size: 1.2rem;
  margin-bottom: 8px;
}
.wanted-card p { font-size: 0.92rem; color: var(--text-light); margin-bottom: 18px; }

/* ===== UPCOMING DATES GRID ===== */
.dates-section { background: var(--light-gray); }
.dates-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  max-width: 940px;
  margin: 0 auto;
}
.date-card {
  background: var(--white);
  border: 2px solid var(--silver);
  border-radius: 8px;
  padding: 18px 12px;
  text-align: center;
  transition: all 0.25s;
}
.date-card:hover { transform: translateY(-3px); box-shadow: 0 6px 18px rgba(0,0,0,0.08); }
.date-card.past { opacity: 0.4; }
.date-card.next {
  border-color: var(--brand-red);
  background: var(--brand-red);
  color: var(--white);
  transform: scale(1.06);
  box-shadow: 0 8px 28px rgba(155,35,53,0.3);
}
.date-card .month {
  font-weight: 800;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.date-card .days {
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  font-size: 1.3rem;
  margin-top: 4px;
}
.date-card.next .badge {
  display: inline-block;
  background: var(--white);
  color: var(--brand-red);
  font-size: 0.58rem;
  font-weight: 900;
  padding: 3px 12px;
  border-radius: 3px;
  margin-top: 8px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

/* ===== GALLERY ===== */
.gallery-preview { background: var(--white); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.gallery-grid img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: 8px;
  transition: all 0.3s;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
}
.gallery-grid img:hover {
  transform: scale(1.03);
  box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}
.gallery-more { text-align: center; margin-top: 34px; }

/* Gallery masonry (full gallery page) */
.gallery-masonry {
  columns: 4;
  column-gap: 14px;
}
.gallery-masonry img {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 14px;
  break-inside: avoid;
  transition: transform 0.3s, box-shadow 0.3s;
  cursor: pointer;
}
.gallery-masonry img:hover {
  transform: scale(1.02);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

/* ===== VENDOR SPOTLIGHT ===== */
.spotlight { background: var(--light-gray); }
.spotlight-card {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 0;
  background: var(--white);
  border-radius: 10px;
  overflow: hidden;
  max-width: 820px;
  margin: 0 auto;
  box-shadow: 0 8px 32px rgba(0,0,0,0.06);
  border: 1px solid var(--silver);
}
.spotlight-card img { width: 100%; height: 100%; object-fit: cover; }
.spotlight-content { padding: 36px; }
.spotlight-content .tag {
  display: inline-block;
  background: var(--brand-blue);
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 800;
  padding: 4px 14px;
  border-radius: 3px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 14px;
}
.spotlight-content h3 {
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  font-size: 1.4rem;
  color: var(--text);
  margin-bottom: 12px;
}
.spotlight-content p { color: var(--text-light); margin-bottom: 22px; line-height: 1.7; }

/* ===== MAP SECTION ===== */
.map-section {
  background: var(--brand-blue-dark);
  color: var(--white);
  padding: 50px 0;
}
.map-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.map-grid h2 {
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  font-size: 1.6rem;
  margin-bottom: 16px;
}
.map-grid p { opacity: 0.8; margin-bottom: 10px; line-height: 1.7; }
.map-grid a { color: var(--gold-light); }
.map-image { border-radius: 10px; overflow: hidden; box-shadow: 0 8px 28px rgba(0,0,0,0.3); }
.map-image img { width: 100%; display: block; }

/* ===== SERVICES ===== */
.services { background: var(--white); padding: 70px 0; }
.services-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.service-card {
  border: 2px solid var(--silver);
  border-radius: 10px;
  padding: 36px;
  transition: all 0.25s;
  background: var(--off-white);
}
.service-card:hover { border-color: var(--brand-blue); box-shadow: 0 8px 24px rgba(0,0,0,0.06); transform: translateY(-3px); }
.service-card h3 {
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  font-size: 1.2rem;
  margin-bottom: 12px;
  color: var(--text);
}
.service-card p { color: var(--text-light); margin-bottom: 8px; }
.service-card .btn { margin-top: 16px; }

/* ===== FAQ ACCORDION ===== */
.faq-item {
  border: 1px solid var(--silver);
  border-radius: 8px;
  margin-bottom: 10px;
  overflow: hidden;
  background: var(--white);
}
.faq-question {
  padding: 18px 24px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.2s;
}
.faq-question:hover { background: var(--light-gray); }
.faq-question::after { content: '+'; font-size: 1.4rem; color: var(--brand-red); font-weight: 800; }
.faq-item.open .faq-question::after { content: '\2212'; }
.faq-answer { padding: 0 24px 18px; color: var(--text-light); display: none; }
.faq-item.open .faq-answer { display: block; }
.faq-item.open .faq-question { color: var(--brand-red); }

/* ===== CONTACT ===== */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.contact-info-block {
  background: var(--brand-blue-dark);
  color: var(--white);
  border-radius: 12px;
  padding: 36px;
}
.contact-info-block h3 {
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  color: var(--gold);
  margin-bottom: 20px;
}
.contact-info-block p { margin-bottom: 14px; opacity: 0.85; }
.contact-info-block a { color: var(--gold); }

/* Gravity Forms & WPForms overrides */
.gform_wrapper,
.wpforms-container { margin-top: 10px; }

/* ===== INFO BOXES (vendor info, etc) ===== */
.info-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.info-box {
  background: var(--white);
  border: 1px solid var(--silver);
  border-radius: 8px;
  padding: 28px;
}
.info-box h3 {
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--brand-blue);
  margin-bottom: 12px;
}
.info-box p { color: var(--text-light); font-size: 0.95rem; line-height: 1.7; margin-bottom: 8px; }
.info-box strong { color: var(--brand-red); font-weight: 800; }

/* Benefits grid */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 30px 0;
}
.benefit-item {
  padding: 24px 20px;
  background: var(--light-gray);
  border-radius: 8px;
  text-align: center;
  border: 1px solid var(--silver);
}
.benefit-item h4 {
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  color: var(--brand-red);
  font-size: 1rem;
  margin-bottom: 8px;
}
.benefit-item p { color: var(--text-light); font-size: 0.9rem; }

/* ===== CTA SECTION ===== */
.cta-section {
  background: var(--brand-blue-dark);
  color: var(--white);
  padding: 50px 0;
  text-align: center;
}
.cta-section h2 {
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  font-size: 1.6rem;
  margin-bottom: 14px;
}
.cta-section p { opacity: 0.85; margin-bottom: 24px; max-width: 500px; margin-left: auto; margin-right: auto; }

/* ===== FOOTER ===== */
.site-footer {
  background: var(--brand-blue-dark);
  color: var(--white);
  padding: 56px 0 28px;
}
.footer-stripe {
  height: 4px;
  background: linear-gradient(90deg, var(--brand-red) 0%, var(--brand-red) 50%, var(--brand-blue) 50%, var(--brand-blue) 100%);
  margin-bottom: 44px;
  border-radius: 2px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-brand img { height: 50px; margin-bottom: 14px; filter: brightness(0) invert(1); }
.footer-brand p { opacity: 0.55; font-size: 0.88rem; line-height: 1.8; }
.site-footer h4 {
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 0.9rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 18px;
}
.site-footer ul { list-style: none; }
.site-footer li { margin-bottom: 10px; }
.site-footer a { color: rgba(255,255,255,0.55); text-decoration: none; font-size: 0.88rem; transition: color 0.2s; }
.site-footer a:hover { color: var(--white); }
.footer-contact .highlight { color: var(--white); font-weight: 700; }
.footer-hours {
  margin-top: 16px;
  padding: 14px;
  background: rgba(255,255,255,0.06);
  border-radius: 6px;
  font-size: 0.85rem;
}
.footer-hours .label { font-size: 0.68rem; text-transform: uppercase; letter-spacing: 2px; font-weight: 800; margin-bottom: 6px; color: rgba(255,255,255,0.4); }
.footer-hours p { opacity: 0.7; line-height: 1.6; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  opacity: 0.35;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 960px) {
  .hero h1 { font-size: 2.8rem; }
  .hero .container { flex-direction: column; text-align: center; }
  .hero p { margin-left: auto; margin-right: auto; }
  .hero-ctas { justify-content: center; }
  .hero::before { width: 100%; clip-path: none; opacity: 0.3; }
  .welcome-grid { grid-template-columns: 1fr; }
  .dates-grid { grid-template-columns: repeat(3, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-masonry { columns: 2; }
  .services-grid { grid-template-columns: 1fr; }
  .map-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .info-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .spotlight-card { grid-template-columns: 1fr; }
  .benefits-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .main-nav { display: none; }
  .mobile-toggle { display: block; }
  .main-nav.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: var(--white);
    padding: 16px 20px;
    border-bottom: 3px solid var(--brand-red);
    box-shadow: 0 12px 32px rgba(0,0,0,0.12);
  }
  .main-nav.open ul { flex-direction: column; width: 100%; }
  .hero h1 { font-size: 2.2rem; }
  .page-hero h1 { font-size: 2rem; }
  .dates-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-masonry { columns: 2; }
  .footer-grid { grid-template-columns: 1fr; }
  .info-bar .container { font-size: 0.82rem; gap: 6px; }
  .info-bar .item + .item { border-left: none; }
  .benefits-grid { grid-template-columns: 1fr; }
}
