/* ============================================
   Hurricane Eddie's — Main Stylesheet
   "Always Pouring Good Vibes"
   ============================================ */

/* --- CSS Custom Properties --- */
:root {
  /* Ocean palette */
  --deep-teal: #0a5e5e;
  --teal: #1a8a7d;
  --teal-light: #2cb5a5;
  --coral: #e8735a;
  --coral-light: #f09e8c;
  --sand: #f5ead6;
  --sand-dark: #e8d5b4;
  --ivory: #faf7f0;
  --denim: #3d5a80;
  --denim-light: #5c7da3;
  --navy: #1b2838;
  --navy-light: #263848;

  /* Neon accents */
  --neon-orange: #ff6b2b;
  --neon-lime: #a8e626;

  /* Utility */
  --white: #ffffff;
  --black: #111111;
  --text: #2a2a2a;
  --text-light: #6b6b6b;
  --shadow: rgba(0, 0, 0, 0.15);
  --shadow-heavy: rgba(0, 0, 0, 0.3);

  /* Type scale */
  --font-display: 'Permanent Marker', cursive;
  --font-accent: 'Lilita One', sans-serif;
  --font-body: 'Nunito', sans-serif;

  /* Spacing */
  --section-pad: clamp(3rem, 8vw, 6rem);
  --content-max: 1280px;
  --radius: 12px;
  --radius-lg: 24px;
}

/* --- 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-body);
  color: var(--text);
  background: var(--ivory);
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: inherit; }
ul, ol { list-style: none; }

/* --- Typography --- */
h1, h2, h3 { font-family: var(--font-display); line-height: 1.15; }

h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); }
h2 { font-size: clamp(1.8rem, 4vw, 3rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }

.section-label {
  font-family: var(--font-accent);
  font-size: clamp(0.8rem, 1.5vw, 1rem);
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--neon-orange);
}

/* --- Layout helpers --- */
.container {
  width: 90%;
  max-width: var(--content-max);
  margin: 0 auto;
}

.section {
  padding: var(--section-pad) 0;
}

/* --- Texture overlay mixin --- */
.texture-overlay {
  position: relative;
}
.texture-overlay::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23000000' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 1;
}

/* --- Header / Nav --- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(27, 40, 56, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 2px solid var(--neon-orange);
  transition: transform 0.3s ease, background 0.3s ease;
}

.site-header.hidden {
  transform: translateY(-100%);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.6rem 5%;
  max-width: 1400px;
  margin: 0 auto;
}

.header-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.header-logo img {
  width: auto;
  height: 44px;
  object-fit: contain;
}

.header-logo-text {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--white);
  line-height: 1.2;
}

.header-logo-text small {
  font-family: var(--font-body);
  font-size: 0.65rem;
  color: var(--neon-orange);
  text-transform: uppercase;
  letter-spacing: 2px;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-links a:not(.header-fb) {
  font-family: var(--font-accent);
  font-size: 0.9rem;
  color: var(--sand);
  padding: 0.5rem 1rem;
  border-radius: var(--radius);
  transition: all 0.2s ease;
  letter-spacing: 0.5px;
}

.nav-links a:not(.header-fb):hover,
.nav-links a:not(.header-fb).active {
  color: var(--neon-orange);
  background: rgba(255, 107, 43, 0.1);
}

/* Location switcher dropdown */
.location-switcher {
  position: relative;
}

.location-switcher-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--neon-orange);
  color: var(--white);
  border: none;
  padding: 0.5rem 1rem;
  border-radius: var(--radius);
  font-family: var(--font-accent);
  font-size: 0.85rem;
  transition: all 0.2s ease;
}

.location-switcher-btn:hover {
  background: var(--coral);
  transform: translateY(-1px);
}

.location-switcher-btn svg {
  width: 14px;
  height: 14px;
  transition: transform 0.2s ease;
}

.location-switcher.open .location-switcher-btn svg {
  transform: rotate(180deg);
}

.location-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: var(--navy);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  padding: 0.5rem;
  min-width: 240px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all 0.25s ease;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.location-switcher.open .location-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.location-dropdown a {
  display: block;
  padding: 0.6rem 1rem;
  color: var(--sand);
  border-radius: 8px;
  font-size: 0.9rem;
  transition: all 0.15s ease;
}

.location-dropdown a:hover {
  background: rgba(255, 107, 43, 0.15);
  color: var(--neon-orange);
}

.location-dropdown a.current {
  color: var(--neon-orange);
  font-weight: 700;
}

.location-dropdown a small {
  display: block;
  font-size: 0.7rem;
  color: var(--text-light);
  margin-top: 2px;
}

.location-dropdown a.closed {
  opacity: 0.5;
}

.location-dropdown a.closed small {
  color: var(--coral);
}

/* Mobile nav */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  padding: 0.5rem;
}

.mobile-menu-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  margin: 5px 0;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--navy);
  z-index: 999;
  padding: 5rem 2rem 2rem;
  flex-direction: column;
  gap: 0.5rem;
}

.mobile-nav.open {
  display: flex;
}

.mobile-nav a {
  font-family: var(--font-accent);
  font-size: 1.5rem;
  color: var(--sand);
  padding: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: color 0.2s ease;
}

.mobile-nav a:hover { color: var(--neon-orange); }

.mobile-nav-close {
  position: absolute;
  top: 1.2rem;
  right: 1.5rem;
  background: none;
  border: none;
  color: var(--white);
  font-size: 2rem;
  line-height: 1;
}

/* --- Hero --- */
.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--navy);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  transition: transform 8s ease;
}

.hero.loaded .hero-bg {
  transform: scale(1);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(27, 40, 56, 0.6) 0%,
    rgba(27, 40, 56, 0.3) 40%,
    rgba(27, 40, 56, 0.7) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
  padding: 6rem 2rem 3rem;
}

.hero-content h1 {
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
  margin-bottom: 1rem;
}

.hero-tagline {
  font-family: var(--font-accent);
  font-size: clamp(1rem, 2.5vw, 1.5rem);
  color: var(--neon-orange);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
  margin-bottom: 2rem;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  font-size: 0.9rem;
  opacity: 0.9;
}

.hero-meta span {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

/* Hero logo */
.hero-logo {
  width: auto;
  height: clamp(100px, 18vw, 160px);
  object-fit: contain;
  margin: 0 auto 1.5rem;
  filter: drop-shadow(0 6px 25px rgba(0, 0, 0, 0.5));
  animation: heroLogoIn 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

@keyframes heroLogoIn {
  from {
    opacity: 0;
    transform: scale(0.8) translateY(20px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

/* Wave divider */
.wave-divider {
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  z-index: 3;
  line-height: 0;
}

.wave-divider svg {
  width: 100%;
  height: auto;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-accent);
  font-size: 1rem;
  padding: 0.85rem 2rem;
  border-radius: var(--radius);
  border: none;
  transition: all 0.25s ease;
  letter-spacing: 0.5px;
}

.btn-primary {
  background: var(--neon-orange);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(255, 107, 43, 0.35);
}

.btn-primary:hover {
  background: #ff8040;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 107, 43, 0.45);
}

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

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

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

.btn-teal:hover {
  background: var(--teal);
  transform: translateY(-2px);
}

/* --- Cards --- */
.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 4px 20px var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px var(--shadow-heavy);
}

/* --- Menu styles --- */
.menu-tabs {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.menu-tab {
  font-family: var(--font-accent);
  font-size: 1.1rem;
  padding: 0.75rem 2rem;
  border: 2px solid var(--deep-teal);
  border-radius: 50px;
  background: transparent;
  color: var(--deep-teal);
  transition: all 0.25s ease;
}

.menu-tab.active,
.menu-tab:hover {
  background: var(--deep-teal);
  color: var(--white);
}

.menu-category {
  margin-bottom: 3rem;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s ease;
}

.menu-category.visible {
  opacity: 1;
  transform: translateY(0);
}

.menu-category-header {
  position: relative;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
}

.menu-category-header h3 {
  color: var(--deep-teal);
  font-family: var(--font-display);
}

.menu-category-header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 80px;
  height: 3px;
  background: var(--neon-orange);
  border-radius: 3px;
}

.menu-category-desc {
  font-size: 0.85rem;
  color: var(--text-light);
  font-style: italic;
  margin-top: 0.5rem;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1rem;
}

.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: var(--white);
  border-radius: var(--radius);
  border-left: 3px solid transparent;
  transition: all 0.2s ease;
}

.menu-item:hover {
  border-left-color: var(--neon-orange);
  background: var(--sand);
}

.menu-item-info { flex: 1; }

.menu-item-name {
  font-family: var(--font-accent);
  font-size: 1rem;
  color: var(--navy);
  margin-bottom: 0.25rem;
}

.menu-item-desc {
  font-size: 0.8rem;
  color: var(--text-light);
  line-height: 1.4;
}

.menu-item-price {
  font-family: var(--font-accent);
  font-size: 1.1rem;
  color: var(--neon-orange);
  white-space: nowrap;
}

/* Menu section on sand background */
.menu-section {
  background: var(--sand);
  position: relative;
}

.menu-section .menu-item {
  background: var(--white);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

/* --- Events --- */
.events-list {
  display: grid;
  gap: 1rem;
  max-width: 800px;
  margin: 0 auto;
}

.event-card {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  gap: 1.25rem;
  align-items: center;
  padding: 1.25rem 1.5rem;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
  transition: all 0.2s ease;
  border-left: 4px solid var(--deep-teal);
}

.event-card:hover {
  transform: translateX(4px);
  border-left-color: var(--neon-orange);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.event-date {
  text-align: center;
}

.event-date-day {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--deep-teal);
  line-height: 1;
}

.event-date-month {
  font-family: var(--font-accent);
  font-size: 0.75rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.event-date-weekday {
  font-size: 0.7rem;
  color: var(--neon-orange);
  font-weight: 700;
  text-transform: uppercase;
}

.event-info h4 {
  font-family: var(--font-accent);
  font-size: 1.1rem;
  color: var(--navy);
}

.event-info p {
  font-size: 0.85rem;
  color: var(--text-light);
}

.event-meta {
  text-align: right;
}

.event-time {
  font-family: var(--font-accent);
  font-size: 0.9rem;
  color: var(--navy);
}

.event-cover {
  font-size: 0.8rem;
  color: var(--neon-orange);
  font-weight: 700;
}

.event-cover.free {
  color: var(--teal);
}

/* --- Location Selector (index.html) --- */
.location-selector {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  justify-content: center;
  background: var(--navy);
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.location-selector-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--navy) 0%, var(--deep-teal) 50%, var(--denim) 100%);
}

/* Animated water effect */
.water-effect {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 200%;
  height: 40%;
  background: linear-gradient(180deg, transparent 0%, rgba(26, 138, 125, 0.15) 100%);
  animation: waterFlow 8s ease-in-out infinite;
}

@keyframes waterFlow {
  0%, 100% { transform: translateX(0) translateY(0); }
  50% { transform: translateX(-25%) translateY(-10px); }
}

.location-selector-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 3rem 2rem;
  max-width: 1100px;
  width: 90%;
  margin: auto;
}

.selector-logo {
  width: auto;
  height: 150px;
  object-fit: contain;
  margin: 0 auto 1.5rem;
  animation: logoFloat 3s ease-in-out infinite;
  filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.4));
}

@keyframes logoFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.selector-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--white);
  margin-bottom: 0.5rem;
}

.selector-subtitle {
  font-family: var(--font-accent);
  font-size: clamp(0.9rem, 2vw, 1.2rem);
  color: var(--neon-orange);
  margin-bottom: 3rem;
}

.location-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}

.location-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  color: var(--white);
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  backdrop-filter: blur(8px);
  position: relative;
  overflow: hidden;
}

.location-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--neon-orange), var(--coral));
  opacity: 0;
  transition: opacity 0.35s ease;
  z-index: 0;
}

.location-card:hover::before {
  opacity: 0.15;
}

.location-card:hover {
  border-color: var(--neon-orange);
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(255, 107, 43, 0.2);
}

.location-card > * {
  position: relative;
  z-index: 1;
}

.location-card h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  margin-bottom: 0.75rem;
  color: var(--white);
}

.location-card p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0.4rem;
}

.location-card .card-phone {
  color: var(--neon-orange);
  font-family: var(--font-accent);
  font-size: 0.9rem;
  margin-top: 0.75rem;
}

.location-card.closed {
  opacity: 0.6;
}

.location-card.closed h3::after {
  content: ' — Coming Back Soon';
  font-family: var(--font-body);
  font-size: 0.7rem;
  color: var(--coral-light);
  display: block;
  margin-top: 0.25rem;
}

/* --- Footer --- */
.site-footer {
  background: var(--navy);
  color: var(--sand);
  padding: 3rem 0 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-col h4 {
  font-family: var(--font-accent);
  font-size: 1rem;
  color: var(--neon-orange);
  margin-bottom: 1rem;
  letter-spacing: 1px;
}

.footer-col p,
.footer-col a {
  font-size: 0.85rem;
  color: rgba(245, 234, 214, 0.7);
  line-height: 2;
  transition: color 0.2s;
}

.footer-col a:hover {
  color: var(--neon-orange);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 1.5rem;
  text-align: center;
  font-size: 0.75rem;
  color: rgba(245, 234, 214, 0.4);
}

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

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: var(--sand);
  transition: all 0.25s ease;
  font-size: 0.9rem;
}

.footer-social a:hover {
  background: var(--neon-orange);
  color: var(--white);
  transform: translateY(-2px);
}

/* --- Gulfport special page --- */
.gulfport-hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(135deg, var(--navy) 0%, var(--deep-teal) 60%, var(--denim) 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
  padding: 6rem 2rem 3rem;
}

.gulfport-hero::before {
  content: '';
  position: absolute;
  bottom: -5%;
  left: -5%;
  width: 110%;
  height: 60%;
  background: radial-gradient(ellipse at center bottom, rgba(255, 107, 43, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.gulfport-tagline {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 5vw, 3.5rem);
  color: var(--neon-orange);
  text-shadow: 0 4px 20px rgba(255, 107, 43, 0.3);
  margin-bottom: 2rem;
  max-width: 700px;
  line-height: 1.25;
}

.gulfport-message {
  font-size: clamp(1rem, 2vw, 1.25rem);
  max-width: 600px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 3rem;
}

.gulfport-info {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 2rem 2.5rem;
  backdrop-filter: blur(8px);
  margin-bottom: 2.5rem;
  max-width: 500px;
}

.gulfport-info p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0.5rem;
}

.gulfport-info a {
  color: var(--neon-orange);
}

.gulfport-email-form {
  display: flex;
  gap: 0.75rem;
  max-width: 480px;
  width: 100%;
  flex-wrap: wrap;
  justify-content: center;
}

.gulfport-email-form input[type="email"] {
  flex: 1;
  min-width: 250px;
  padding: 0.85rem 1.25rem;
  border: 2px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color 0.2s;
}

.gulfport-email-form input[type="email"]::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.gulfport-email-form input[type="email"]:focus {
  outline: none;
  border-color: var(--neon-orange);
}

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

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.animate-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.animate-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.animate-in.delay-1 { transition-delay: 0.1s; }
.animate-in.delay-2 { transition-delay: 0.2s; }
.animate-in.delay-3 { transition-delay: 0.3s; }
.animate-in.delay-4 { transition-delay: 0.4s; }

/* Shimmer effect for hero */
.shimmer {
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.03), transparent);
  animation: shimmer 6s ease-in-out infinite;
}

@keyframes shimmer {
  0% { left: -50%; }
  100% { left: 150%; }
}

/* --- Responsive --- */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .mobile-menu-btn { display: block; }

  .header-inner {
    padding: 0.5rem 4%;
  }

  .hero {
    min-height: 70vh;
  }

  .hero-content {
    padding: 5rem 1.5rem 2rem;
  }

  .hero-meta {
    flex-direction: column;
    gap: 0.5rem;
  }

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

  .event-card {
    grid-template-columns: 60px 1fr;
    gap: 1rem;
  }

  .event-meta {
    grid-column: 1 / -1;
    text-align: left;
    display: flex;
    gap: 1rem;
  }

  .location-cards {
    grid-template-columns: 1fr;
  }

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

  .gulfport-email-form {
    flex-direction: column;
  }

  .gulfport-email-form input[type="email"] {
    min-width: auto;
  }
}

@media (max-width: 480px) {
  .location-card {
    padding: 1.5rem 1rem;
  }

  .menu-tab {
    font-size: 0.9rem;
    padding: 0.6rem 1.25rem;
  }
}

/* --- About section --- */
.about-section {
  background: var(--sand);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.about-grid img {
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 30px var(--shadow);
}

@media (max-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr;
  }
}

/* --- Info bar --- */
.info-bar {
  background: var(--deep-teal);
  color: var(--white);
  padding: 1rem 0;
}

.info-bar-inner {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
  font-size: 0.85rem;
}

.info-bar-inner span {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

/* --- Header social link --- */
.header-fb {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: none;
  padding: 0;
  transition: all 0.25s ease;
  flex-shrink: 0;
  margin-left: 0.25rem;
}

.header-fb:hover {
  transform: translateY(-2px);
  filter: brightness(1.15);
}

.header-fb svg {
  width: 36px;
  height: 36px;
  fill: #1877f2;
  border-radius: 50%;
}

/* --- Contact page --- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.contact-info-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: 0 4px 20px var(--shadow);
}

.contact-info-card h3 {
  color: var(--deep-teal);
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.contact-detail:last-child {
  border-bottom: none;
}

.contact-detail-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--sand);
  color: var(--deep-teal);
  flex-shrink: 0;
  font-size: 1.2rem;
}

.contact-detail-text h4 {
  font-family: var(--font-accent);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-light);
  margin-bottom: 0.25rem;
}

.contact-detail-text p,
.contact-detail-text a {
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.6;
}

.contact-detail-text a {
  color: var(--deep-teal);
  font-weight: 600;
  transition: color 0.2s;
}

.contact-detail-text a:hover {
  color: var(--neon-orange);
}

.contact-fb-link {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 1.5rem;
  padding: 0.75rem 1.5rem;
  background: #1877f2;
  color: var(--white);
  border-radius: var(--radius);
  font-family: var(--font-accent);
  font-size: 0.95rem;
  transition: all 0.25s ease;
}

.contact-fb-link:hover {
  background: #0d65d9;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(24, 119, 242, 0.3);
  color: var(--white);
}

.contact-fb-link svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.contact-form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: 0 4px 20px var(--shadow);
}

.contact-form-card h3 {
  color: var(--deep-teal);
  margin-bottom: 0.5rem;
  font-size: 1.5rem;
}

.contact-form-card p {
  color: var(--text-light);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.form-group label {
  font-family: var(--font-accent);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-light);
}

.form-group input,
.form-group textarea,
.form-group select {
  padding: 0.75rem 1rem;
  border: 2px solid var(--sand-dark);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text);
  background: var(--ivory);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(26, 138, 125, 0.12);
}

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

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.contact-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 4px 20px var(--shadow);
  margin-bottom: 3rem;
}

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

@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-map iframe {
    height: 300px;
  }
}

/* --- Print styles --- */
@media print {
  .site-header, .site-footer, .wave-divider, .location-switcher { display: none; }
  .hero { min-height: auto; }
}
