/* ======================================================
   KALAVARA – Authentic Kerala Resto Shop
   Theme: Forest Green & White
   ====================================================== */

/* ── CSS Variables ── */
:root {
  --green-dark: #1a3a1f;
  --green-mid: #2d6a2d;
  --green-vivid: #3a8c3a;
  --green-light: #5cb85c;
  --green-pale: #e8f5e9;
  --green-glow: rgba(60, 140, 60, 0.15);
  --white: #ffffff;
  --off-white: #f9faf7;
  --text-dark: #1a2a1a;
  --text-mid: #3a4a3a;
  --text-muted: #6b826b;
  --gold: #c8961a;
  --gold-light: #f0c040;
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.13);
  --shadow-lg: 0 12px 48px rgba(0, 0, 0, 0.18);
  --radius: 16px;
  --radius-sm: 10px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── Reset & Base ── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Poppins', sans-serif;
  background: var(--off-white);
  color: var(--text-dark);
  overflow-x: hidden;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

/* ── Scrollbar ── */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--green-dark);
}

::-webkit-scrollbar-thumb {
  background: var(--green-light);
  border-radius: 50px;
}

/* ======================================================
   BUTTONS
   ====================================================== */
.btn-primary {
  display: inline-block;
  background: linear-gradient(135deg, var(--green-vivid), var(--green-mid));
  color: var(--white);
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(60, 140, 60, 0.35);
  border: 2px solid transparent;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(60, 140, 60, 0.5);
  background: linear-gradient(135deg, var(--green-light), var(--green-vivid));
}

.btn-outline {
  display: inline-block;
  background: transparent;
  color: var(--white);
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid rgba(255, 255, 255, 0.6);
  transition: var(--transition);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--white);
  transform: translateY(-3px);
}

.btn-sm {
  display: inline-block;
  background: var(--green-vivid);
  color: var(--white);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  transition: var(--transition);
}

.btn-sm:hover {
  background: var(--green-mid);
  transform: translateY(-2px);
}

.btn-reserve {
  display: inline-block;
  background: linear-gradient(135deg, var(--green-vivid), var(--green-mid));
  color: var(--white);
  padding: 10px 24px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.85rem;
  transition: var(--transition);
}

.btn-reserve:hover {
  transform: translateY(-2px);
  opacity: 0.92;
}

.full-width {
  width: 100%;
  text-align: center;
}

/* ======================================================
   SECTION SHARED
   ====================================================== */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-tag {
  display: inline-block;
  background: var(--green-pale);
  color: var(--green-mid);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 14px;
  border: 1px solid rgba(60, 140, 60, 0.2);
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--text-dark);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 14px;
}

.section-sub {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 550px;
  margin: 0 auto;
}

.light .section-tag {
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.2);
}

.light .section-title {
  color: var(--white);
}

.light .section-sub {
  color: rgba(255, 255, 255, 0.75);
}

.wave-emoji {
  display: inline-block;
  animation: wave 2s infinite;
}

@keyframes wave {

  0%,
  100% {
    transform: rotate(0)
  }

  50% {
    transform: rotate(15deg)
  }
}

/* ======================================================
   NAVBAR
   ====================================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 5%;
  background: transparent;
  transition: background 0.4s, box-shadow 0.4s, backdrop-filter 0.4s;
}

.navbar.scrolled {
  background: rgba(26, 58, 31, 0.95);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(16px);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 24px;
  height: 86px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.logo-icon {
  font-size: 1.8rem;
}

.logo-img {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid rgba(92, 184, 92, 0.8);
  box-shadow: 0 0 0 3px rgba(26, 58, 31, 0.5), 0 4px 18px rgba(0, 0, 0, 0.3);
  transition: var(--transition);
  flex-shrink: 0;
  filter: drop-shadow(0 0 6px rgba(92, 184, 92, 0.6));
}

.logo:hover .logo-img {
  border-color: var(--green-light);
  box-shadow: 0 0 0 4px rgba(92, 184, 92, 0.35), 0 6px 24px rgba(60, 140, 60, 0.5);
  transform: scale(1.06);
  filter: drop-shadow(0 0 14px rgba(92, 184, 92, 0.9));
}

.logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 1px;
}

.footer-logo-wrap {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 6px;
}

.footer-logo-img {
  width: 80px;
  height: 80px;
  border: 3px solid rgba(92, 184, 92, 0.7);
  box-shadow: 0 0 0 3px rgba(26, 58, 31, 0.5), 0 4px 18px rgba(0, 0, 0, 0.3);
  filter: drop-shadow(0 0 8px rgba(92, 184, 92, 0.6));
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  margin-left: auto;
}

#mobileTouristLink,
#mobileReserveLink {
  display: none;
}

.nav-link {
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 8px;
  transition: var(--transition);
}

.nav-link:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
}

.highlight-link {
  color: var(--gold-light);
  font-weight: 600;
}

.highlight-link:hover {
  background: rgba(200, 150, 26, 0.15);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  margin-left: auto;
  border-radius: 8px;
  transition: background var(--transition);
}

.hamburger:hover {
  background: rgba(255, 255, 255, 0.1);
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease, background var(--transition);
  transform-origin: center;
}

/* Hamburger → X animation */
.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ======================================================
   HERO
   ====================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  overflow: hidden;
  padding: 100px 5% 120px;
}

.hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
  transform: scale(1.05);
  animation: heroZoom 18s ease-in-out infinite alternate;
}

@keyframes heroZoom {
  from {
    transform: scale(1.05);
  }

  to {
    transform: scale(1.12);
  }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg,
      rgba(5, 18, 5, 0.50) 0%,
      rgba(20, 10, 5, 0.62) 40%,
      rgba(10, 35, 10, 0.88) 100%);
  z-index: 1;
}

/* ── Content ── */
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 780px;
}

/* Staggered fade-up entrance */
.hero-pre {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.75);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 10px;
  opacity: 0;
  animation: heroFadeUp 0.8s ease forwards;
  animation-delay: 0.2s;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3.5rem, 9vw, 7.5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  margin-bottom: 8px;
  background: linear-gradient(135deg, #ffffff 30%, #a8e0a8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0;
  animation: heroFadeUp 0.8s ease forwards;
  animation-delay: 0.4s;
}

.resto-highlight {
  display: inline-block;
  font-size: clamp(2rem, 5vw, 3.8rem);
  color: var(--white);
  background: linear-gradient(135deg, var(--green-vivid), var(--green-mid));
  padding: 4px 24px;
  border-radius: 12px;
  margin-top: 14px;
  line-height: 1.2;
  box-shadow: 0 10px 30px rgba(60, 140, 60, 0.4);
  transform: rotate(-3deg);
  border: 2px solid var(--green-light);
  -webkit-text-fill-color: initial;
  text-shadow: none;
  font-family: 'Poppins', sans-serif;
  letter-spacing: 1px;
}

.hero-tagline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  color: var(--gold-light);
  font-style: italic;
  margin-bottom: 20px;
  opacity: 0;
  animation: heroFadeUp 0.8s ease forwards;
  animation-delay: 0.6s;
}

.hero-desc {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.82);
  max-width: 560px;
  margin: 0 auto 36px;
  line-height: 1.7;
  opacity: 0;
  animation: heroFadeUp 0.8s ease forwards;
  animation-delay: 0.8s;
}

.hero-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: heroFadeUp 0.8s ease forwards;
  animation-delay: 1s;
}

@keyframes heroFadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ── Badges ── */
.hero-badges {
  position: relative;
  z-index: 2;
  display: flex;
  gap: 12px;
  margin-top: 60px;
  flex-wrap: wrap;
  justify-content: center;
  opacity: 0;
  animation: heroFadeUp 0.8s ease forwards;
  animation-delay: 1.2s;
}

.badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--white);
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
  backdrop-filter: blur(10px);
  transition: var(--transition);
}

.badge:hover {
  background: rgba(255, 255, 255, 0.18);
  transform: translateY(-2px);
}

.badge-icon {
  font-size: 1.1rem;
}

/* ── Scroll Hint ── */
.scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: 0;
  animation: heroFadeUp 0.8s ease forwards;
  animation-delay: 1.4s;
}

.scroll-arrow {
  width: 20px;
  height: 20px;
  border-right: 2px solid rgba(255, 255, 255, 0.5);
  border-bottom: 2px solid rgba(255, 255, 255, 0.5);
  transform: rotate(45deg);
  animation: scrollBounce 1.5s infinite;
}

@keyframes scrollBounce {

  0%,
  100% {
    opacity: 0.4;
    transform: rotate(45deg) translateY(0);
  }

  50% {
    opacity: 1;
    transform: rotate(45deg) translateY(6px);
  }
}




/* ======================================================
   MARQUEE STRIP
   ====================================================== */
.marquee-strip {
  background: linear-gradient(90deg, var(--green-mid), var(--green-dark));
  padding: 14px 0;
  overflow: hidden;
  white-space: nowrap;
  border-top: 3px solid var(--green-light);
  border-bottom: 3px solid var(--green-light);
}

.marquee-track {
  display: inline-flex;
  gap: 48px;
  animation: marqueeScroll 25s linear infinite;
}

.marquee-track span {
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 1px;
  opacity: 0.9;
}

@keyframes marqueeScroll {
  from {
    transform: translateX(0)
  }

  to {
    transform: translateX(-50%)
  }
}

/* ======================================================
   SEAFOOD SECTION
   ====================================================== */
.seafood-section {
  padding: 100px 5%;
  background: var(--off-white);
  max-width: 1200px;
  margin: 0 auto;
}

/* Hero Card */
.seafood-hero-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  background: var(--white);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  margin-bottom: 60px;
  border: 1px solid rgba(60, 140, 60, 0.1);
  position: relative;
}

.seafood-hero-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 6px;
  height: 100%;
  background: linear-gradient(180deg, var(--green-vivid), var(--green-mid));
}

.seafood-img-wrap {
  position: relative;
  overflow: hidden;
}

.seafood-img-wrap img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  background-color: var(--white);
  transition: transform 0.5s ease;
}

.seafood-img-wrap:hover img {
  transform: scale(1.05);
}

.seafood-badge-float {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--gold);
  color: var(--white);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 16px rgba(200, 150, 26, 0.4);
}

.seafood-hero-content {
  padding: 48px 48px 48px 12px;
}

.seafood-hero-content h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.9rem;
  color: var(--text-dark);
  margin-bottom: 14px;
  line-height: 1.3;
}

.seafood-hero-content p {
  color: var(--text-muted);
  margin-bottom: 20px;
  line-height: 1.7;
}

.seafood-features {
  list-style: none;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.seafood-features li {
  font-size: 0.92rem;
  color: var(--text-mid);
  font-weight: 500;
}

.price-tag {
  display: inline-block;
  background: var(--green-pale);
  color: var(--green-mid);
  font-weight: 700;
  font-size: 1rem;
  padding: 10px 22px;
  border-radius: 50px;
  margin-bottom: 20px;
  border: 1px solid rgba(60, 140, 60, 0.2);
}

/* Seafood Grid */
.seafood-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.seafood-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 1px solid rgba(60, 140, 60, 0.08);
}

.seafood-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.seafood-card-img-wrap {
  position: relative;
  overflow: hidden;
}

.seafood-card-img-wrap img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  background-color: var(--white);
  transition: transform 0.4s ease;
}

.seafood-card:hover .seafood-card-img-wrap img {
  transform: scale(1.08);
}

.card-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--green-vivid);
  color: var(--white);
  padding: 5px 12px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
}

.seafood-card-body {
  padding: 20px;
}

.seafood-card-body h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  margin-bottom: 8px;
  color: var(--text-dark);
}

.seafood-card-body p {
  font-size: 0.87rem;
  color: var(--text-muted);
  margin-bottom: 16px;
  line-height: 1.5;
}

.card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.card-price {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--green-mid);
}

/* ======================================================
   FRIED ITEMS SHOWCASE
   ====================================================== */
.fried-showcase {
  max-width: 1200px;
  margin: 0 auto;
}

.fried-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: center;
}

.fried-card {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
  transition: var(--transition);
  cursor: pointer;
}

.fried-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.22);
}

.fried-card-img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1 / 1;
}

.fried-card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background-color: var(--white);
  transition: transform 0.5s ease;
  display: block;
}

.fried-card:hover .fried-card-img-wrap img {
  transform: scale(1.08);
}

.fried-card-img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 25, 10, 0.7) 0%, transparent 55%);
}

.fried-card-label {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #fff;
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  white-space: nowrap;
  z-index: 2;
  letter-spacing: 0.5px;
  transition: var(--transition);
}

.fried-card:hover .fried-card-label {
  background: rgba(60, 140, 60, 0.5);
  border-color: rgba(92, 184, 92, 0.5);
}

/* ======================================================
   MENU SECTION
   ====================================================== */
.menu-section {
  padding: 100px 5%;
  background: linear-gradient(160deg, var(--green-dark) 0%, #0f2a0f 100%);
  position: relative;
  overflow: hidden;
}

.menu-section::before {
  content: '🐟';
  position: absolute;
  font-size: 220px;
  opacity: 0.04;
  top: 50px;
  right: -30px;
  pointer-events: none;
}

.menu-section .section-header {
  max-width: 1100px;
  margin: 0 auto 40px;
}

.menu-tabs {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.tab-btn {
  background: rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 12px 28px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  font-family: 'Poppins', sans-serif;
}

.tab-btn:hover {
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
}

.tab-btn.active {
  background: linear-gradient(135deg, var(--green-vivid), var(--green-mid));
  color: var(--white);
  border-color: transparent;
  box-shadow: 0 4px 18px rgba(60, 140, 60, 0.4);
}

.tab-content {
  display: none;
  max-width: 900px;
  margin: 0 auto;
}

.tab-content.active {
  display: block;
  animation: fadeUp 0.4s ease;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(16px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

.menu-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius);
  overflow: hidden;
}

.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 24px;
  background: rgba(255, 255, 255, 0.04);
  transition: var(--transition);
  gap: 16px;
}

.menu-item:hover {
  background: rgba(255, 255, 255, 0.09);
}

.featured-item {
  background: rgba(60, 140, 60, 0.12) !important;
}

.featured-item:hover {
  background: rgba(60, 140, 60, 0.2) !important;
}

.menu-item-name {
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.92rem;
  font-weight: 500;
}

.menu-item-price {
  color: var(--green-light);
  font-weight: 700;
  font-size: 0.95rem;
  flex-shrink: 0;
}

/* ======================================================
   TODDY SECTION
   ====================================================== */
.toddy-section {
  padding: 100px 5%;
  background: var(--off-white);
}

.toddy-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.toddy-text .section-tag {
  color: var(--green-mid);
}

.toddy-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: var(--text-dark);
  margin-bottom: 18px;
  line-height: 1.25;
}

.toddy-text p {
  color: var(--text-muted);
  margin-bottom: 22px;
  line-height: 1.75;
}

.toddy-list {
  list-style: none;
  margin-bottom: 30px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.toddy-list li {
  font-size: 0.95rem;
  color: var(--text-mid);
  font-weight: 500;
}

.toddy-img-wrap {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.toddy-img-wrap img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  transition: transform 0.5s;
}

.toddy-img-wrap:hover img {
  transform: scale(1.04);
}

.toddy-float-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: var(--green-vivid);
  color: var(--white);
  padding: 10px 22px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.88rem;
  box-shadow: 0 4px 18px rgba(60, 140, 60, 0.4);
}

/* ======================================================
   STATS
   ====================================================== */
.stats-section {
  background: linear-gradient(135deg, var(--green-vivid), var(--green-dark));
  padding: 70px 5%;
}

.stats-grid {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}

.stat-item {
  color: var(--white);
}

.stat-num {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1;
  margin-bottom: 8px;
  color: var(--gold-light);
}

.stat-icon {
  width: 58px;
  height: 58px;
  stroke: var(--gold-light);
  stroke-width: 1.5;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.4));
  animation: float3D 4s ease-in-out infinite;
}

@keyframes float3D {

  0%,
  100% {
    transform: translateY(0) rotate(-2deg);
  }

  50% {
    transform: translateY(-8px) rotate(3deg);
  }
}

.stat-label {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 500;
  letter-spacing: 0.5px;
}

/* ======================================================
   ABOUT
   ====================================================== */
.about-section {
  padding: 100px 5%;
  background: var(--white);
}

.about-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

.about-img-wrap {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-img {
  width: 100%;
  height: 480px;
  object-fit: cover;
}

.about-badge {
  position: absolute;
  bottom: 24px;
  right: 24px;
  background: var(--green-dark);
  color: var(--white);
  padding: 12px 24px;
  border-radius: 14px;
  font-weight: 700;
  font-size: 1.1rem;
  font-family: 'Playfair Display', serif;
  border: 2px solid var(--green-light);
}

.about-text .section-tag {
  color: var(--green-mid);
}

.about-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  color: var(--text-dark);
  margin-bottom: 18px;
  line-height: 1.25;
}

.about-text p {
  color: var(--text-muted);
  margin-bottom: 16px;
  line-height: 1.75;
}

.about-highlights {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 24px;
}

.about-highlight {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 18px;
  background: var(--green-pale);
  border-radius: var(--radius-sm);
  border-left: 4px solid var(--green-vivid);
}

.highlight-icon {
  font-size: 1.3rem;
}

.about-highlight span:last-child {
  font-size: 0.92rem;
  color: var(--text-mid);
  font-weight: 500;
}

/* ======================================================
   HIGHLIGHT SHOWCASE
   ====================================================== */
.highlight-showcase {
  padding: 100px 5%;
  background: linear-gradient(170deg, var(--white), var(--green-pale));
}

.highlight-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: stretch;
}

.highlight-card {
  background: var(--white);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  transition: var(--transition);
  border: 1px solid rgba(60, 140, 60, 0.1);
}

.highlight-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.12);
  border-color: var(--green-light);
}

.highlight-img-wrap {
  position: relative;
  width: 100%;
  height: 320px;
  overflow: hidden;
}

.highlight-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.highlight-card:hover .highlight-img-wrap img {
  transform: scale(1.05);
}

.highlight-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--green-vivid);
  color: var(--white);
  padding: 8px 18px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 12px rgba(60,140,60,0.3);
}

.highlight-content {
  padding: 30px 40px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.highlight-content h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  color: var(--text-dark);
  line-height: 1.3;
}

.highlight-content p {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.7;
}

@media (max-width: 900px) {
  .highlight-inner {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

/* ======================================================
   NEARBY ATTRACTIONS
   ====================================================== */
.tourist-section {
  padding: 100px 5%;
  background: var(--off-white);
}

.tourist-section .section-header {
  margin-bottom: 50px;
}

.tourist-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.tourist-card {
  background: var(--white);
  border: 1px solid rgba(60, 140, 60, 0.08);
  padding: 20px 24px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  gap: 18px;
  transition: var(--transition);
  box-shadow: 0 4px 16px rgba(0,0,0,0.03);
}

.tourist-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: var(--green-light);
}

.tourist-icon {
  font-size: 1.8rem;
  background: var(--green-pale);
  color: var(--green-dark);
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  flex-shrink: 0;
  border: 1px solid rgba(60, 140, 60, 0.15);
}

.tourist-icon svg {
  width: 26px;
  height: 26px;
  stroke: var(--green-mid);
  stroke-width: 2;
}

.tourist-card h3 {
  font-size: 1.05rem;
  font-family: 'Poppins', sans-serif;
  color: var(--text-dark);
  font-weight: 500;
  line-height: 1.3;
}

/* ======================================================
   CONTACT
   ====================================================== */
.contact-section {
  padding: 100px 5%;
  background: linear-gradient(160deg, var(--green-dark), #0a1e0a);
}

.contact-section .section-header {
  max-width: 1100px;
  margin: 0 auto 60px;
}

.contact-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 48px;
  align-items: start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  color: rgba(255, 255, 255, 0.85);
}

.contact-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-item strong {
  display: block;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 4px;
}

.contact-item p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.6;
}

.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #25D366;
  color: #fff;
  font-size: 0.88rem;
  font-weight: 600;
  padding: 9px 20px;
  border-radius: 50px;
  margin-top: 6px;
  text-decoration: none;
  transition: background 0.25s ease, transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.35);
  font-family: 'Poppins', sans-serif;
}

.whatsapp-btn:hover {
  background: #1ebe5d;
  transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(37, 211, 102, 0.5);
  color: #fff;
}

.whatsapp-btn svg {
  flex-shrink: 0;
}

.contact-form {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  padding: 40px;
  backdrop-filter: blur(10px);
}

.contact-form h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  color: var(--white);
  margin-bottom: 24px;
}

.form-group {
  margin-bottom: 14px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: var(--white);
  padding: 13px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-family: 'Poppins', sans-serif;
  transition: var(--transition);
  outline: none;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--green-light);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 0 3px rgba(92, 184, 92, 0.15);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

.contact-form select option {
  background: var(--green-dark);
  color: var(--white);
}

.contact-form textarea {
  resize: vertical;
  min-height: 90px;
}

.form-note {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.45);
  text-align: center;
  margin-top: 10px;
}

.contact-location {
  max-width: 1100px;
  margin: 60px auto 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.contact-storefront {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  height: 400px;
}

.contact-storefront img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.contact-storefront:hover img {
  transform: scale(1.05);
}

.contact-map {
  height: 400px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ======================================================
   FOOTER
   ====================================================== */
.footer {
  background: var(--green-dark);
  border-top: 2px solid rgba(92, 184, 92, 0.2);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 5% 40px;
  display: grid;
  grid-template-columns: 1.6fr 0.9fr 1.2fr 0.9fr;
  gap: 40px;
  align-items: start;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-brand .logo-text {
  font-size: 1.8rem;
}

.footer-brand p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.6;
}

.footer-links,
.footer-social {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a,
.footer-social a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.88rem;
  transition: var(--transition);
}

.footer-links a:hover,
.footer-social a:hover {
  color: var(--green-light);
  padding-left: 4px;
}

.social-link {
  font-weight: 500;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding: 20px 5%;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.4);
}

/* ── Footer Branches Column ── */
.footer-col-title {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(255, 255, 255, 0.35);
  margin-bottom: 16px;
}

.footer-branches {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-branch-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.footer-branch-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  flex-shrink: 0;
  margin-top: 4px;
}

.current-dot {
  background: #25D366;
  box-shadow: 0 0 8px rgba(37, 211, 102, 0.7);
}

.footer-branch-name {
  display: flex;
  align-items: center;
  gap: 7px;
  flex-wrap: wrap;
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.3;
}

.footer-branch-item:not(.current) .footer-branch-name {
  color: rgba(255, 255, 255, 0.4);
  font-weight: 400;
  font-size: 0.85rem;
}

.footer-branch-loc {
  display: block;
  font-size: 0.76rem;
  color: rgba(255, 255, 255, 0.3);
  margin-top: 2px;
  line-height: 1.4;
}

.footer-branch-item.current .footer-branch-loc {
  color: rgba(255, 255, 255, 0.5);
}

/* "You are here" badge */
.here-badge {
  display: inline-block;
  background: rgba(37, 211, 102, 0.15);
  color: #25D366;
  border: 1px solid rgba(37, 211, 102, 0.3);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 2px 7px;
  border-radius: 50px;
  vertical-align: middle;
  white-space: nowrap;
}

/* Contact section address tag */
.branch-tag {
  display: inline-block;
  background: rgba(92, 184, 92, 0.12);
  color: var(--green-light);
  border: 1px solid rgba(92, 184, 92, 0.28);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 2px 8px;
  border-radius: 50px;
  margin-left: 6px;
  vertical-align: middle;
}

/* ======================================================
   RESPONSIVE
   ====================================================== */

/* Tablet */
@media (max-width: 900px) {
  .seafood-hero-card {
    grid-template-columns: 1fr;
  }

  .seafood-hero-content {
    padding: 32px;
  }

  .seafood-img-wrap img {
    height: 300px;
  }

  .seafood-grid {
    grid-template-columns: 1fr 1fr;
  }

  .fried-grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  .toddy-inner {
    grid-template-columns: 1fr;
  }

  .toddy-img-wrap {
    order: -1;
  }

  .toddy-img-wrap img {
    height: 320px;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-inner {
    grid-template-columns: 1fr;
  }

  .about-img {
    height: 340px;
  }

  .contact-grid,
  .contact-location {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }
}

/* Mobile */
@media (max-width: 600px) {
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 86px;
    left: 0;
    right: 0;
    background: rgba(26, 58, 31, 0.98);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 24px;
    gap: 12px;
    border-bottom: 2px solid rgba(92, 184, 92, 0.4);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  }

  .nav-links.open {
    display: flex;
    animation: slideDown 0.3s ease-out forwards;
  }

  @keyframes slideDown {
    from {
      opacity: 0;
      transform: translateY(-10px);
    }

    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .btn-reserve, #touristBtn {
    display: none;
  }
  #mobileTouristLink, #mobileReserveLink {
    display: inline !important;
  }

  .hamburger {
    display: flex;
  }

  .hero {
    padding: 100px 5% 80px;
  }

  .hero-tagline {
    font-size: 1.2rem;
  }

  .hero-btns {
    flex-direction: column;
    align-items: center;
    width: 100%;
  }

  .hero-btns a {
    width: 100%;
    margin-bottom: 10px;
    text-align: center;
  }

  .hero-badges {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    gap: 10px;
    margin-top: 40px;
  }

  .badge {
    justify-content: center;
  }

  .scroll-hint {
    display: none;
  }

  .section-header {
    margin-bottom: 40px;
  }

  .seafood-section,
  .menu-section,
  .toddy-section,
  .about-section,
  .contact-section,
  .gallery-section {
    padding: 60px 5%;
  }

  .seafood-hero-card::before {
    display: none;
  }

  .seafood-hero-content {
    padding: 24px 20px;
  }

  .seafood-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .fried-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .menu-grid {
    grid-template-columns: 1fr;
  }

  .menu-tabs {
    flex-direction: column;
    align-items: stretch;
  }

  .tab-btn {
    text-align: center;
  }

  .stats-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-form {
    padding: 24px;
  }

  .contact-map,
  .contact-storefront {
    height: 300px;
  }

  .toddy-img-wrap img {
    height: 260px;
  }

  .about-img {
    height: 260px;
  }
}

/* ======================================================
   FLOATING WHATSAPP BUTTON
   ====================================================== */
.whatsapp-float {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 9990;
  width: 62px;
  height: 62px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.5);
  color: #fff;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: waBounceIn 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

.whatsapp-float svg {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}

/* Pulse ring */
.whatsapp-float::before {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 3px solid #25D366;
  animation: waPulse 2s ease-out infinite;
  opacity: 0;
}

@keyframes waPulse {
  0% {
    transform: scale(1);
    opacity: 0.7;
  }

  100% {
    transform: scale(1.6);
    opacity: 0;
  }
}

@keyframes waBounceIn {
  from {
    transform: scale(0) translateY(40px);
    opacity: 0;
  }

  to {
    transform: scale(1) translateY(0);
    opacity: 1;
  }
}

.whatsapp-float:hover {
  transform: scale(1.12) translateY(-4px);
  box-shadow: 0 12px 36px rgba(37, 211, 102, 0.6);
}

/* Tooltip */
.whatsapp-float-tooltip {
  position: absolute;
  right: 74px;
  background: #1a1a1a;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: 8px;
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transform: translateX(8px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.whatsapp-float-tooltip::after {
  content: '';
  position: absolute;
  top: 50%;
  right: -6px;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-left-color: #1a1a1a;
  border-right: 0;
}

.whatsapp-float:hover .whatsapp-float-tooltip {
  opacity: 1;
  transform: translateX(0);
}

/* Hide tooltip on small screens */
@media (max-width: 600px) {
  .whatsapp-float {
    bottom: 20px;
    right: 20px;
    width: 54px;
    height: 54px;
  }

  .whatsapp-float svg {
    width: 26px;
    height: 26px;
  }

  .whatsapp-float-tooltip {
    display: none;
  }
}

/* ======================================================
   ANIMATED CUSTOM CURSOR
   ====================================================== */
* {
  cursor: none !important;
}

.cursor-dot {
  position: fixed;
  top: 0;
  left: 0;
  width: 10px;
  height: 10px;
  background: #3a8c3a;
  border-radius: 50%;
  pointer-events: none;
  z-index: 99999;
  transform: translate(-50%, -50%);
  transition: width 0.2s ease, height 0.2s ease, background 0.2s ease;
  mix-blend-mode: normal;
}

.cursor-ring {
  position: fixed;
  top: 0;
  left: 0;
  width: 38px;
  height: 38px;
  border: 2px solid rgba(58, 140, 58, 0.65);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99998;
  transform: translate(-50%, -50%);
  transition: width 0.15s ease, height 0.15s ease,
    border-color 0.2s ease, transform 0.08s linear;
}

/* Hover state — ring expands, dot shrinks */
.cursor-dot.hovered {
  width: 6px;
  height: 6px;
  background: #25D366;
}

.cursor-ring.hovered {
  width: 52px;
  height: 52px;
  border-color: rgba(37, 211, 102, 0.55);
}

/* Click state */
.cursor-dot.clicked {
  width: 14px;
  height: 14px;
  background: #c8961a;
}

.cursor-ring.clicked {
  width: 28px;
  height: 28px;
  border-color: rgba(200, 150, 26, 0.7);
}

/* Touch devices – restore default cursor */
@media (hover: none) and (pointer: coarse) {
  * {
    cursor: auto !important;
  }

  .cursor-dot,
  .cursor-ring {
    display: none !important;
  }
}

/* ======================================================
   FROM OUR KITCHEN – PHOTO GALLERY
   ====================================================== */
.gallery-section {
  padding: 100px 5%;
  background: linear-gradient(180deg, var(--green-dark) 0%, #0e2212 100%);
  position: relative;
  overflow: hidden;
}

.gallery-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 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='%233a8c3a' fill-opacity='0.04'%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;
}

.gallery-section .section-header {
  position: relative;
  z-index: 1;
}

.gallery-section .section-tag {
  background: rgba(92, 184, 92, 0.15);
  color: var(--green-light);
  border-color: rgba(92, 184, 92, 0.3);
}

.gallery-section .section-title {
  color: var(--white);
}

.gallery-section .section-sub {
  color: rgba(255, 255, 255, 0.65);
}

.gallery-masonry {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 16px;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.gallery-item {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
    box-shadow 0.4s ease;
  aspect-ratio: 1 / 1;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background-color: var(--white);
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1),
    filter 0.4s ease;
  display: block;
}

.gallery-item:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
  z-index: 2;
}

.gallery-item:hover img {
  transform: scale(1.08);
  filter: brightness(1.1) saturate(1.15);
}

.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 28px 20px 20px;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.85) 0%, transparent 100%);
  display: flex;
  align-items: center;
  gap: 10px;
  transform: translateY(6px);
  opacity: 0.9;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.gallery-item:hover .gallery-caption {
  opacity: 1;
  transform: translateY(0);
}

.gallery-emoji {
  font-size: 1.5rem;
  line-height: 1;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.4));
}

.gallery-caption span:last-child {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.3px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

/* Gallery border accent */
.gallery-item::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 18px;
  border: 2px solid transparent;
  transition: border-color 0.3s ease;
  z-index: 1;
  pointer-events: none;
}

.gallery-item:hover::before {
  border-color: rgba(92, 184, 92, 0.5);
}

/* ── Gallery Responsive ── */
@media (max-width: 900px) {
  .gallery-masonry {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .gallery-masonry {
    grid-template-columns: 1fr;
  }

  .gallery-section {
    padding: 60px 5%;
  }
}

/* ======================================================
   EXTRA MOBILE POLISH (≤ 480px)
   ====================================================== */
@media (max-width: 480px) {
  .logo-img {
    width: 52px;
    height: 52px;
  }

  .logo-text {
    font-size: 1.3rem;
  }

  .nav-container {
    height: 72px;
    padding: 0 16px;
  }

  .navbar {
    padding: 0 4%;
  }

  /* Buttons: full-width on very small screens */
  .btn-primary,
  .btn-outline {
    padding: 12px 24px;
    font-size: 0.9rem;
  }

  .hero-title {
    font-size: clamp(2.8rem, 13vw, 4rem);
  }

  .hero-desc {
    font-size: 0.95rem;
  }

  .seafood-hero-content {
    padding: 20px 16px;
  }

  .seafood-img-wrap img {
    height: 240px;
  }

  .seafood-card-img-wrap img {
    height: 180px;
  }

  .menu-item {
    padding: 14px 16px;
  }

  .menu-item-name {
    font-size: 0.85rem;
  }

  .contact-form {
    padding: 20px 16px;
  }

  .contact-form h3 {
    font-size: 1.3rem;
  }

  .contact-map,
  .contact-storefront {
    height: 240px;
  }

  .footer-inner {
    padding: 40px 5% 30px;
  }

  .stat-3d-icon {
    width: 50px;
    height: 50px;
  }

  .stat-num {
    font-size: 2rem;
  }

  .whatsapp-float {
    bottom: 16px;
    right: 16px;
  }
}