/* ============================================
   KHAI'S BEACH BAR — Manzanillo, Costa Rica
   ============================================ */

:root {
  --sand: #f5e6d0;
  --sand-light: #faf3e8;
  --ocean: #0a7e8c;
  --ocean-deep: #065a64;
  --ocean-light: #14b8c8;
  --coral: #e07460;
  --coral-light: #f4937e;
  --coral-deep: #c25a48;
  --coral-pink: #f8b4a8;
  --sunset: #e87461;
  --sunset-golden: #f4a261;
  --palm: #2d5016;
  --palm-light: #4a7c2e;
  --driftwood: #8b7355;
  --driftwood-dark: #5c4a35;
  --coconut: #3e2c1c;
  --white: #ffffff;
  --off-white: #fefcf7;
  --text: #2a2017;
  --text-light: #6b5e4f;
  --text-muted: #9a8d7e;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, sans-serif;
  --font-accent: 'Permanent Marker', cursive;

  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 4rem;
  --space-xl: 6rem;
  --space-2xl: 10rem;

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-round: 50px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--off-white);
  line-height: 1.6;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

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

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

.section-label {
  display: inline-block;
  font-family: var(--font-accent);
  font-size: 0.875rem;
  color: var(--coral);
  letter-spacing: 1px;
  margin-bottom: var(--space-xs);
}

.section-header {
  text-align: center;
  margin-bottom: var(--space-lg);
}

.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  color: var(--coconut);
  margin-bottom: var(--space-sm);
}

.section-desc {
  font-size: 1.125rem;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
}

/* ============ NAVIGATION ============ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: var(--space-sm) 0;
  transition: all 0.4s ease;
}

.nav.scrolled {
  background: rgba(254, 252, 247, 0.95);
  backdrop-filter: blur(20px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
  padding: 0.6rem 0;
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: var(--font-accent);
  font-size: 1.5rem;
  color: var(--white);
  transition: color 0.3s;
}

.nav.scrolled .nav-logo {
  color: var(--coconut);
}

.nav-links {
  display: flex;
  list-style: none;
  gap: var(--space-md);
}

.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255,255,255,0.9);
  transition: color 0.3s;
  letter-spacing: 0.5px;
}

.nav.scrolled .nav-links a {
  color: var(--text-light);
}

.nav-links a:hover {
  color: var(--sunset-golden);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.lang-toggle {
  display: flex;
  background: rgba(255,255,255,0.15);
  border-radius: var(--radius-round);
  padding: 3px;
  gap: 2px;
}

.nav.scrolled .lang-toggle {
  background: rgba(0,0,0,0.06);
}

.lang-btn {
  padding: 5px 12px;
  border: none;
  border-radius: var(--radius-round);
  background: transparent;
  color: rgba(255,255,255,0.7);
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s;
}

.nav.scrolled .lang-btn {
  color: var(--text-muted);
}

.lang-btn.active {
  background: var(--white);
  color: var(--coconut);
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.nav.scrolled .lang-btn.active {
  background: var(--coconut);
  color: var(--white);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all 0.3s;
}

.nav.scrolled .nav-toggle span {
  background: var(--coconut);
}

/* ============ HERO ============ */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: heroZoom 30s ease-in-out infinite alternate;
}

@keyframes heroZoom {
  from { transform: scale(1); }
  to { transform: scale(1.1); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(10, 30, 40, 0.3) 0%,
    rgba(10, 30, 40, 0.5) 50%,
    rgba(10, 30, 40, 0.7) 100%
  );
}

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

.hero-tagline {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
  opacity: 0.8;
  margin-bottom: var(--space-sm);
  animation: fadeUp 1s ease 0.3s both;
}

.hero-title {
  font-family: var(--font-accent);
  font-size: clamp(3rem, 10vw, 7rem);
  line-height: 1;
  margin-bottom: var(--space-sm);
  animation: fadeUp 1s ease 0.5s both;
}

.hero-title span {
  display: block;
  font-family: var(--font-display);
  font-size: 0.45em;
  font-weight: 400;
  letter-spacing: 6px;
  text-transform: uppercase;
  opacity: 0.85;
  margin-top: 0.5rem;
}

.hero-sub {
  font-family: var(--font-accent);
  font-size: clamp(1rem, 3vw, 1.5rem);
  color: var(--coral-pink);
  margin-bottom: var(--space-md);
  animation: fadeUp 1s ease 0.7s both;
}

.hero-cta {
  display: flex;
  gap: var(--space-sm);
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: var(--space-md);
  animation: fadeUp 1s ease 0.9s both;
}

.hero-hours {
  font-size: 0.875rem;
  opacity: 0.7;
  animation: fadeUp 1s ease 1.1s both;
}

.hero-scroll {
  position: absolute;
  bottom: var(--space-lg);
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.6);
  background: rgba(255,255,255,0.08);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  backdrop-filter: blur(4px);
  opacity: 0;
  animation: heroScrollFadeIn 1s ease 1.3s forwards;
}

.hero-scroll:hover {
  background: rgba(255,255,255,0.95);
  color: var(--coconut);
  border-color: var(--white);
  box-shadow: 0 6px 24px rgba(0,0,0,0.25);
}

.hero-scroll svg {
  display: block;
}

@keyframes heroScrollFadeIn {
  to { opacity: 1; }
}

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

/* Buttons */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: var(--radius-round);
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}

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

.btn-primary:hover {
  background: var(--ocean-deep);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(10,126,140,0.3);
}

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

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

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

/* ============ ABOUT ============ */
.about {
  background: var(--off-white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  align-items: center;
}

.about-images {
  position: relative;
  height: 500px;
}

.about-img {
  border-radius: var(--radius-md);
  object-fit: cover;
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.about-img-1 {
  width: 75%;
  height: 400px;
  position: absolute;
  top: 0;
  left: 0;
}

.about-img-2 {
  width: 55%;
  height: 280px;
  position: absolute;
  bottom: 0;
  right: 0;
  border: 6px solid var(--off-white);
}

.about-text h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 900;
  color: var(--coconut);
  margin-bottom: var(--space-md);
  line-height: 1.2;
}

.about-text p {
  color: var(--text-light);
  margin-bottom: var(--space-sm);
  font-size: 1.05rem;
  line-height: 1.8;
}

.about-badge {
  display: inline-block;
  margin-top: var(--space-md);
  padding: var(--space-sm) var(--space-md);
  border: 2px solid var(--driftwood);
  border-radius: var(--radius-sm);
  text-align: center;
}

.badge-text {
  display: block;
  font-family: var(--font-accent);
  font-size: 1.25rem;
  color: var(--coral);
}

.badge-sub {
  display: block;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 2px;
  letter-spacing: 1px;
}

/* ============ VIBES BANNER ============ */
.vibes-banner {
  background: linear-gradient(135deg, var(--coral) 0%, var(--coral-deep) 100%);
  padding: var(--space-sm) 0;
  overflow: hidden;
}

.vibes-scroll {
  display: flex;
  gap: var(--space-md);
  animation: marquee 25s linear infinite;
  white-space: nowrap;
  width: max-content;
}

.vibes-scroll span {
  font-family: var(--font-accent);
  font-size: 1rem;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 2px;
}

.vibe-dot {
  width: 6px !important;
  height: 6px;
  background: var(--sunset-golden);
  border-radius: 50%;
  display: inline-block;
  align-self: center;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ============ MENU ============ */
.menu {
  background: var(--sand-light);
}

.menu-tabs {
  display: flex;
  justify-content: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
  flex-wrap: wrap;
}

.menu-tab {
  padding: 10px 28px;
  border-radius: var(--radius-round);
  border: 2px solid var(--driftwood);
  background: transparent;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--driftwood-dark);
  cursor: pointer;
  transition: all 0.3s;
}

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

.vegan-intro {
  max-width: 720px;
  margin: 0 auto var(--space-lg);
  padding: var(--space-md);
  background: linear-gradient(135deg, rgba(45,80,22,0.06) 0%, rgba(74,124,46,0.1) 100%);
  border-left: 4px solid var(--palm-light);
  border-radius: var(--radius-md);
}

.vegan-intro p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--text-light);
  line-height: 1.7;
  text-align: center;
}

.menu-tab[data-tab="vegan"].active,
.menu-tab[data-tab="vegan"]:hover {
  background: var(--palm);
  border-color: var(--palm);
}

.menu-content {
  display: none;
}

.menu-content.active {
  display: block;
  animation: fadeIn 0.4s ease;
}

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

.menu-category {
  margin-bottom: var(--space-lg);
}

.menu-category h3 {
  font-family: var(--font-accent);
  font-size: 1.25rem;
  color: var(--ocean);
  margin-bottom: var(--space-md);
  padding-bottom: var(--space-xs);
  border-bottom: 2px solid var(--ocean-light);
  display: inline-block;
}

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

.menu-item {
  background: var(--white);
  padding: var(--space-md);
  border-radius: var(--radius-md);
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
  transition: transform 0.3s, box-shadow 0.3s;
}

.menu-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

.menu-item-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: var(--space-xs);
  gap: var(--space-sm);
}

.menu-item h4 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--coconut);
}

.menu-price {
  font-family: var(--font-body);
  font-weight: 600;
  color: var(--ocean);
  white-space: nowrap;
  font-size: 0.95rem;
}

.menu-item p {
  color: var(--text-light);
  font-size: 0.9rem;
  line-height: 1.6;
}

.menu-tag {
  display: inline-block;
  margin-top: var(--space-xs);
  padding: 3px 10px;
  background: var(--coral);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 600;
  border-radius: var(--radius-round);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.menu-note {
  text-align: center;
  margin-top: var(--space-lg);
  padding: var(--space-md);
  background: var(--white);
  border-radius: var(--radius-md);
}

.menu-note p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: var(--space-xs);
}

/* ============ VIDEO BREAK ============ */
.video-break {
  padding: var(--space-xl) 0;
  background: linear-gradient(180deg, var(--off-white) 0%, var(--sand-light) 100%);
}

.video-header {
  text-align: center;
  margin-bottom: var(--space-md);
}

.video-header h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 900;
  color: var(--coconut);
}

.video-wrapper {
  position: relative;
  display: block;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%; /* 16:9 */
  margin: 0 auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.18), 0 0 0 6px rgba(255,255,255,0.6);
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
  border: 0;
}

/* ============ EVENTS ============ */
.events {
  background: var(--coconut);
  color: var(--white);
}

.events .section-label {
  color: var(--sunset-golden);
}

.events .section-header h2 {
  color: var(--white);
}

.events .section-desc {
  color: rgba(255,255,255,0.7);
}

.events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: var(--space-md);
}

.event-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  transition: transform 0.3s, background 0.3s;
}

.event-card:hover {
  transform: translateY(-4px);
  background: rgba(255,255,255,0.12);
}

.event-badge {
  display: inline-block;
  padding: 3px 12px;
  background: var(--ocean);
  border-radius: var(--radius-round);
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: var(--space-xs);
}

.event-badge.special-badge {
  background: var(--coral);
}

.event-day, .event-date {
  font-family: var(--font-accent);
  font-size: 1rem;
  color: var(--sunset-golden);
  margin-bottom: 4px;
}

.event-card h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: var(--space-xs);
}

.event-card p {
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: var(--space-sm);
}

.event-time {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--ocean-light);
}

/* ============ WEATHER ============ */
.weather {
  background: linear-gradient(135deg, var(--ocean) 0%, var(--ocean-deep) 100%);
  color: var(--white);
}

.weather .section-label { color: var(--sunset-golden); }
.weather .section-header h2 { color: var(--white); }
.weather .section-desc { color: rgba(255,255,255,0.8); }

.weather-card {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  backdrop-filter: blur(10px);
}

.weather-current {
  text-align: center;
  margin-bottom: var(--space-lg);
  padding-bottom: var(--space-lg);
  border-bottom: 1px solid rgba(255,255,255,0.15);
}

.weather-temp {
  margin-bottom: var(--space-sm);
}

.temp-num {
  font-family: var(--font-display);
  font-size: 5rem;
  font-weight: 900;
  line-height: 1;
}

.temp-unit {
  display: block;
  font-size: 1rem;
  opacity: 0.7;
  margin-top: 4px;
}

.weather-desc {
  font-size: 1.25rem;
  margin-bottom: var(--space-md);
}

.weather-icon {
  font-size: 2rem;
  margin-right: 8px;
}

.weather-details {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  max-width: 600px;
  margin: 0 auto;
}

.weather-detail {
  text-align: center;
}

.detail-label {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.6;
  margin-bottom: 4px;
}

.detail-value {
  font-weight: 600;
  font-size: 1rem;
}

.weather-forecast h3 {
  font-family: var(--font-accent);
  font-size: 1rem;
  text-align: center;
  margin-bottom: var(--space-md);
  color: var(--sunset-golden);
}

.forecast-row {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: var(--space-sm);
}

.forecast-day {
  text-align: center;
  padding: var(--space-sm);
  background: rgba(255,255,255,0.08);
  border-radius: var(--radius-sm);
}

.f-day {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 6px;
}

.f-icon {
  display: block;
  font-size: 1.5rem;
  margin-bottom: 6px;
}

.f-temp {
  display: block;
  font-size: 0.75rem;
  opacity: 0.8;
}

.weather-cta {
  text-align: center;
  margin-top: var(--space-md);
}

.weather-cta p {
  font-size: 1.125rem;
  color: rgba(255,255,255,0.8);
}

/* ============ GALLERY ============ */
.gallery {
  background: var(--off-white);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-sm);
}

.gallery-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 1;
}

.gallery-item.large {
  grid-column: span 2;
  aspect-ratio: 2/1;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.gallery-item:hover img {
  transform: scale(1.08);
}

/* ============ TESTIMONIALS ============ */
.testimonials {
  background: var(--sand);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-md);
}

.testimonial {
  background: var(--white);
  padding: var(--space-md);
  border-radius: var(--radius-md);
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.testimonial-stars {
  color: var(--sunset-golden);
  font-size: 1.25rem;
  margin-bottom: var(--space-sm);
  letter-spacing: 2px;
}

.testimonial p {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-style: italic;
  line-height: 1.7;
  color: var(--text);
  margin-bottom: var(--space-sm);
}

.testimonial-author {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* ============ CONTACT ============ */
.contact {
  background: var(--off-white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
}

.contact-info .section-label { text-align: left; }

.contact-info h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.5rem);
  font-weight: 900;
  color: var(--coconut);
  margin-bottom: var(--space-sm);
}

.contact-info > p {
  color: var(--text-light);
  margin-bottom: var(--space-lg);
  line-height: 1.7;
}

.info-blocks {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.info-block h4 {
  font-family: var(--font-accent);
  color: var(--ocean);
  margin-bottom: var(--space-xs);
}

.info-block p {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.7;
}

.info-sub {
  font-size: 0.85rem !important;
  color: var(--text-muted) !important;
  font-style: italic;
  margin-top: 4px;
}

.hours-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 4px;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.95rem;
  color: var(--text-light);
  max-width: 350px;
}

.contact-map {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.map-placeholder {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 350px;
}

.map-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.map-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10,30,40,0.5);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
}

.map-pin { font-size: 3rem; }

.map-text {
  font-family: var(--font-accent);
  font-size: 1.25rem;
  color: var(--white);
}

.contact-social {
  text-align: center;
}

.contact-social h4 {
  font-family: var(--font-accent);
  color: var(--ocean);
  margin-bottom: var(--space-sm);
}

.social-links {
  display: flex;
  gap: var(--space-sm);
  justify-content: center;
}

.social-link {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--coconut);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

.social-link:hover {
  background: var(--ocean);
  transform: translateY(-3px);
}

/* ============ FOOTER ============ */
.footer {
  background: var(--coconut);
  color: var(--white);
  padding: var(--space-lg) 0 var(--space-md);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-md);
}

.footer-logo {
  font-family: var(--font-accent);
  font-size: 1.5rem;
  display: block;
  margin-bottom: 4px;
}

.footer-brand p {
  font-size: 0.85rem;
  opacity: 0.6;
}

.footer-tagline p {
  font-family: var(--font-display);
  font-style: italic;
  opacity: 0.7;
  text-align: center;
}

.footer-legal p {
  font-size: 0.75rem;
  opacity: 0.4;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(254,252,247,0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: var(--space-md);
    gap: var(--space-sm);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  }

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

  .nav-links a {
    color: var(--text) !important;
    font-size: 1rem;
  }

  .nav-toggle {
    display: flex;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }

  .about-images {
    height: 300px;
  }

  .about-img-1 {
    width: 70%;
    height: 280px;
  }

  .about-img-2 {
    width: 50%;
    height: 200px;
  }

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

  .photo-break-grid {
    grid-template-columns: 1fr;
  }

  .pb-img {
    height: 250px;
  }

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

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

  .forecast-row {
    grid-template-columns: repeat(4, 1fr);
  }

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

  .gallery-item.large {
    grid-column: span 2;
  }

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

  .footer-inner {
    flex-direction: column;
    text-align: center;
  }

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

@media (max-width: 480px) {
  .hero-title {
    font-size: 3rem;
  }

  .forecast-row {
    grid-template-columns: repeat(3, 1fr);
  }

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

  .gallery-item.large {
    grid-column: span 1;
    aspect-ratio: 16/9;
  }
}
