/* ============================================================
   FrenchDuck Restaurant — Main Stylesheet
   Blue etang theme, elegant French bistro
   ============================================================ */

/* ---------- CSS Custom Properties ---------- */
:root {
  /* Blues */
  --blue-deep:    #0d2137;
  --blue-dark:    #1a3a5c;
  --blue-mid:     #1e5080;
  --blue-slate:   #2d6a96;
  --blue-aqua:    #4a9abf;
  --blue-light:   #7bc4d8;
  --blue-pale:    #c8e8f2;
  --blue-mist:    #e8f4f9;

  /* Neutrals */
  --white:        #ffffff;
  --cream:        #f8f4ef;
  --cream-warm:   #f0e8da;

  /* Gold / confit accents */
  --gold-bright:  #e8b86d;
  --gold-mid:     #d4a574;
  --gold-deep:    #c4944c;
  --gold-dark:    #8b6914;

  /* Text */
  --text-primary: #0d2137;
  --text-light:   #ffffff;
  --text-muted:   #5a7a8e;

  /* Spacing / radius */
  --radius-sm:    6px;
  --radius-md:    12px;
  --radius-lg:    24px;
  --radius-full:  9999px;

  /* Transitions */
  --transition:   0.35s ease;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Lato', 'Helvetica Neue', Arial, sans-serif;
  color: var(--text-primary);
  background: var(--cream);
  line-height: 1.7;
  overflow-x: hidden;
}

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

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

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
  line-height: 1.2;
  color: var(--blue-deep);
}

.section-label {
  font-family: 'Lato', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 0.75rem;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  margin-bottom: 1.25rem;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 560px;
}

/* ---------- Navigation ---------- */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 4%;
  transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
}

#navbar.scrolled {
  background: rgba(13, 33, 55, 0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
  padding: 0.8rem 4%;
}

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

.nav-logo img {
  width: auto;
  max-width: 120px;
  height: 44px;
  transition: transform var(--transition);
}

.nav-logo:hover img {
  transform: scale(1.05);
}

.nav-logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.02em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  list-style: none;
}

.nav-links a {
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  transition: color var(--transition);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold-bright);
  transition: width var(--transition);
}

.nav-links a:hover {
  color: var(--gold-bright);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  background: var(--gold-deep);
  color: var(--white) !important;
  padding: 0.55rem 1.4rem;
  border-radius: var(--radius-full);
  transition: background var(--transition), transform var(--transition) !important;
}

.nav-cta:hover {
  background: var(--gold-bright) !important;
  color: var(--blue-deep) !important;
  transform: translateY(-1px);
}

.nav-cta::after {
  display: none !important;
}

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

.nav-hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}

.nav-hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.nav-hamburger.open span:nth-child(2) {
  opacity: 0;
}
.nav-hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile nav */
.nav-mobile {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--blue-deep);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}

.nav-mobile.open {
  display: flex;
  opacity: 1;
  pointer-events: all;
}

.nav-mobile a {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: var(--white);
  transition: color var(--transition);
}

.nav-mobile a:hover {
  color: var(--gold-bright);
}

/* ---------- Hero ---------- */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

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

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease;
}

.hero-slide.active {
  opacity: 1;
}

.hero-slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(13, 33, 55, 0.55) 0%,
    rgba(13, 33, 55, 0.40) 40%,
    rgba(13, 33, 55, 0.70) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 2rem 1.5rem;
  max-width: 780px;
}

.hero-badge {
  display: inline-block;
  background: rgba(212, 165, 116, 0.2);
  border: 1px solid var(--gold-mid);
  color: var(--gold-bright);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 0.45rem 1.2rem;
  border-radius: var(--radius-full);
  margin-bottom: 1.5rem;
  backdrop-filter: blur(8px);
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3.5rem, 9vw, 7rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin-bottom: 1rem;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.hero-title span {
  color: var(--gold-bright);
  display: block;
}

.hero-tagline {
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  color: rgba(255,255,255,0.88);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 2.5rem;
  font-weight: 300;
}

.hero-divider {
  width: 60px;
  height: 2px;
  background: var(--gold-mid);
  margin: 0 auto 2.5rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: var(--radius-full);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: all var(--transition);
  cursor: pointer;
  border: none;
}

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

.btn-primary:hover {
  background: var(--gold-bright);
  color: var(--blue-deep);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(196, 148, 76, 0.4);
}

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

.btn-outline:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.1);
  transform: translateY(-2px);
}

/* Hero scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.6);
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.scroll-mouse {
  width: 24px;
  height: 38px;
  border: 2px solid rgba(255,255,255,0.4);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}

.scroll-dot {
  width: 4px;
  height: 8px;
  background: rgba(255,255,255,0.7);
  border-radius: 2px;
  animation: scrollDot 1.6s ease-in-out infinite;
}

@keyframes scrollDot {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50% { transform: translateY(6px); opacity: 0.3; }
}

/* Hero slide indicators */
.hero-indicators {
  position: absolute;
  bottom: 2.5rem;
  right: 4%;
  z-index: 2;
  display: flex;
  gap: 0.5rem;
}

.hero-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.35);
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  padding: 0;
}

.hero-dot.active {
  background: var(--gold-bright);
  transform: scale(1.25);
}

/* ---------- About Section ---------- */
#about {
  background: var(--blue-deep);
  padding: 8rem 4%;
  position: relative;
  overflow: hidden;
}

#about::before {
  content: '';
  position: absolute;
  top: -60px;
  left: 0;
  right: 0;
  height: 120px;
  background: var(--cream);
  clip-path: ellipse(55% 100% at 50% 0%);
}

.about-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-text .section-label {
  color: var(--blue-aqua);
}

.about-text .section-title {
  color: var(--white);
}

.about-description {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.78);
  line-height: 1.9;
  margin-bottom: 2rem;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-top: 2.5rem;
}

.about-feature {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  transition: background var(--transition);
}

.about-feature:hover {
  background: rgba(255,255,255,0.1);
}

.about-feature-icon {
  font-size: 1.6rem;
  margin-bottom: 0.5rem;
}

.about-feature h4 {
  color: var(--gold-bright);
  font-size: 0.95rem;
  margin-bottom: 0.25rem;
}

.about-feature p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
}

.about-visual {
  position: relative;
}

.about-img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.4);
}

.about-img-wrap img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
}

.about-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 130px;
  height: 130px;
  background: var(--gold-deep);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 30px rgba(0,0,0,0.3);
  text-align: center;
  padding: 1rem;
}

.about-badge-num {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}

.about-badge-text {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  margin-top: 0.2rem;
}

/* Water ripple decoration */
.water-waves {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80px;
  overflow: hidden;
}

.water-waves svg {
  width: 100%;
  height: 100%;
}

/* ---------- Menu Section ---------- */
#menu {
  background: var(--cream);
  padding: 8rem 4%;
  position: relative;
}

.menu-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.menu-header {
  text-align: center;
  margin-bottom: 4rem;
}

.menu-header .section-subtitle {
  margin: 0 auto;
}

/* Featured dish */
.menu-featured {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(13, 33, 55, 0.15);
  margin-bottom: 4rem;
}

.menu-featured-img {
  position: relative;
  min-height: 460px;
}

.menu-featured-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.menu-featured-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, transparent 60%, rgba(13,33,55,0.1));
}

.menu-featured-info {
  background: var(--blue-deep);
  padding: 3.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.menu-featured-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-bright);
  margin-bottom: 1rem;
}

.menu-featured-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  color: var(--white);
  margin-bottom: 1rem;
}

.menu-featured-desc {
  color: rgba(255,255,255,0.72);
  line-height: 1.8;
  margin-bottom: 2rem;
  font-size: 1rem;
}

.menu-featured-price {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: var(--gold-bright);
  margin-bottom: 2rem;
}

.menu-featured-price small {
  font-size: 1rem;
  color: rgba(255,255,255,0.5);
  font-family: 'Lato', sans-serif;
}

/* Menu grid */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  margin-bottom: 4rem;
}

.menu-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(13, 33, 55, 0.08);
  transition: transform var(--transition), box-shadow var(--transition);
}

.menu-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(13, 33, 55, 0.15);
}

.menu-card-img {
  height: 220px;
  overflow: hidden;
  position: relative;
}

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

.menu-card:hover .menu-card-img img {
  transform: scale(1.06);
}

.menu-card-tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--blue-deep);
  color: var(--gold-bright);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.3rem 0.8rem;
  border-radius: var(--radius-full);
}

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

.menu-card-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  color: var(--blue-deep);
  margin-bottom: 0.4rem;
}

.menu-card-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.menu-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.menu-card-price {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  color: var(--gold-deep);
  font-weight: 700;
}

/* Menu list */
.menu-list-section {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 3rem;
  box-shadow: 0 4px 20px rgba(13, 33, 55, 0.07);
}

.menu-list-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: var(--blue-deep);
  margin-bottom: 1.75rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--blue-pale);
}

.menu-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem 3rem;
}

.menu-list li {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--cream-warm);
}

.menu-item-name {
  font-size: 0.97rem;
  color: var(--text-primary);
  font-weight: 500;
}

.menu-item-price {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  color: var(--gold-deep);
  white-space: nowrap;
}

/* ---------- Hours & Info Section ---------- */
#info {
  background: var(--blue-dark);
  padding: 8rem 4%;
  position: relative;
  overflow: hidden;
}

#info::before {
  content: '';
  position: absolute;
  top: -2px;
  left: 0;
  right: 0;
  height: 80px;
  background: var(--cream);
  clip-path: polygon(0 0, 100% 0, 100% 0, 0 100%);
  opacity: 0.08;
}

/* Animated water background */
.info-water-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 10% 110%, rgba(74, 154, 191, 0.15) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 90% 0%, rgba(45, 106, 150, 0.12) 0%, transparent 60%);
  pointer-events: none;
}

.info-inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
}

.info-header {
  text-align: center;
  margin-bottom: 4rem;
}

.info-header .section-label {
  color: var(--blue-aqua);
}

.info-header .section-title {
  color: var(--white);
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.info-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  text-align: center;
  backdrop-filter: blur(8px);
  transition: background var(--transition), transform var(--transition);
}

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

.info-card-icon {
  width: 60px;
  height: 60px;
  background: rgba(74, 154, 191, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.info-card-icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--blue-aqua);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.info-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  color: var(--gold-bright);
  margin-bottom: 1.25rem;
}

.info-card p,
.info-card address {
  font-style: normal;
  color: rgba(255,255,255,0.78);
  font-size: 0.97rem;
  line-height: 1.85;
}

.hours-table {
  width: 100%;
  border-collapse: collapse;
  margin: 0 auto;
  text-align: left;
}

.hours-table tr {
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.hours-table tr:last-child {
  border-bottom: none;
}

.hours-table td {
  padding: 0.5rem 0;
  color: rgba(255,255,255,0.78);
  font-size: 0.93rem;
}

.hours-table td:last-child {
  text-align: right;
  color: var(--blue-light);
  font-weight: 600;
}

.hours-table .closed-row td {
  color: rgba(255,255,255,0.35);
}

.hours-table .closed-row td:last-child {
  color: rgba(255,255,255,0.35);
}

.info-phone-link {
  display: inline-block;
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  color: var(--gold-bright);
  transition: color var(--transition);
}

.info-phone-link:hover {
  color: var(--white);
}

.info-address {
  color: rgba(255,255,255,0.78);
  font-size: 0.97rem;
  line-height: 1.85;
}

/* ---------- Map & Reservation Section ---------- */
#contact {
  background: var(--cream);
  padding: 8rem 4%;
}

.contact-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.contact-header {
  text-align: center;
  margin-bottom: 4rem;
}

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

/* Map */
.map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(13, 33, 55, 0.12);
  height: 400px;
  position: relative;
}

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

/* Reservation form */
.reservation-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 3rem;
  box-shadow: 0 10px 40px rgba(13, 33, 55, 0.1);
}

.reservation-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  color: var(--blue-deep);
  margin-bottom: 0.5rem;
}

.reservation-card p {
  color: var(--text-muted);
  margin-bottom: 2rem;
  font-size: 0.95rem;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue-dark);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.85rem 1.1rem;
  border: 1.5px solid var(--blue-pale);
  border-radius: var(--radius-sm);
  font-family: 'Lato', sans-serif;
  font-size: 0.95rem;
  color: var(--text-primary);
  background: var(--blue-mist);
  transition: border-color var(--transition), background var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue-slate);
  background: var(--white);
}

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

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

.form-submit {
  width: 100%;
  margin-top: 0.5rem;
  padding: 1rem;
  justify-content: center;
  font-size: 0.92rem;
}

/* Form success */
.form-success {
  display: none;
  text-align: center;
  padding: 2rem;
}

.form-success.show {
  display: block;
}

.form-success-icon {
  width: 64px;
  height: 64px;
  background: var(--blue-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.form-success-icon svg {
  stroke: var(--blue-slate);
  fill: none;
  stroke-width: 2;
  width: 32px;
  height: 32px;
}

/* ---------- Footer ---------- */
footer {
  background: var(--blue-deep);
  padding: 4rem 4% 2.5rem;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 4rem;
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

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

.footer-logo img {
  width: 42px;
  height: 42px;
  filter: brightness(0) invert(1) sepia(1) saturate(2) hue-rotate(5deg);
}

.footer-logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--white);
}

.footer-tagline {
  color: rgba(255,255,255,0.5);
  font-size: 0.88rem;
  line-height: 1.7;
  max-width: 280px;
}

.footer-col h4 {
  color: var(--gold-bright);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

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

.footer-col ul a:hover {
  color: var(--gold-bright);
}

.footer-contact-item {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  line-height: 1.6;
}

.footer-contact-item a {
  color: rgba(255,255,255,0.6);
  transition: color var(--transition);
}

.footer-contact-item a:hover {
  color: var(--gold-bright);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-copy {
  color: rgba(255,255,255,0.3);
  font-size: 0.82rem;
}

.footer-copy span {
  color: var(--gold-deep);
}

/* ---------- Animations & Utility ---------- */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

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

/* Water ripple line decoration */
.ripple-line {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.ripple-line::before,
.ripple-line::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold-mid), transparent);
}

.ripple-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold-mid);
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .about-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .about-visual {
    order: -1;
  }

  .about-img-wrap img {
    height: 360px;
  }

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

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

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

  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 768px) {
  #navbar {
    padding: 1rem 5%;
  }

  .nav-links {
    display: none;
  }

  .nav-hamburger {
    display: flex;
  }

  .hero-title {
    font-size: clamp(2.8rem, 10vw, 4.5rem);
  }

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

  .menu-featured-img {
    min-height: 280px;
  }

  .menu-featured-info {
    padding: 2.5rem 2rem;
  }

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

  .menu-list-section {
    padding: 2rem 1.5rem;
  }

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

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

  .map-wrap {
    height: 280px;
  }

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

  .footer-top {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-brand {
    grid-column: auto;
  }

  .about-features {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 480px) {
  #about,
  #menu,
  #info,
  #contact {
    padding: 5rem 5%;
  }

  .reservation-card {
    padding: 2rem 1.5rem;
  }
}
