﻿@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700;800&family=Manrope:wght@400;600;700;800&display=swap');

:root {
  --navy: #12375f;
  --navy-dark: #071a30;
  --terracotta: #a84f2d;
  --gold: #d9a441;
  --paper: #fff9ed;
  --cream: #f4e7cf;
  --ink: #20242b;
  --muted: #6d6255;
  --line: rgba(18, 55, 95, .16);
  --shadow: 0 22px 60px rgba(20, 24, 31, .16);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  font-family: 'Manrope', Arial, sans-serif;
  background:
    radial-gradient(circle at top left, rgba(217, 164, 65, .30), transparent 32rem),
    linear-gradient(135deg, #f8eddb 0%, #e6cfa8 48%, #f5ead8 100%);
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .16;
  background-image: linear-gradient(90deg, rgba(18, 55, 95, .18) 1px, transparent 1px), linear-gradient(rgba(18, 55, 95, .14) 1px, transparent 1px);
  background-size: 42px 42px;
  z-index: -1;
}

.site-nav {
  position: fixed;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  width: min(calc(100% - 28px), 760px);
  display: flex;
  justify-content: center;
  gap: 8px;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, .24);
  border-radius: 999px;
  background: rgba(7, 26, 48, .82);
  box-shadow: 0 16px 40px rgba(0, 0, 0, .24);
  backdrop-filter: blur(14px);
}

.site-nav a {
  color: #fff;
  text-decoration: none;
  font-size: .92rem;
  font-weight: 800;
  padding: 10px 16px;
  border-radius: 999px;
  transition: background .2s ease, color .2s ease, transform .2s ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--navy-dark);
  background: var(--paper);
  transform: translateY(-1px);
}

.hero {
  min-height: 86vh;
  display: grid;
  place-items: center;
  text-align: center;
  color: #fff;
  padding: 120px 18px 78px;
  background:
    linear-gradient(135deg, rgba(7, 26, 48, .52), rgba(7, 26, 48, .76)),
    url('../../images/header.jpg') center/cover no-repeat;
}

.hero-box {
  width: min(920px, 100%);
  padding: clamp(28px, 6vw, 58px);
  border: 1px solid rgba(255, 255, 255, .42);
  border-radius: 32px;
  background: linear-gradient(135deg, rgba(7, 26, 48, .76), rgba(18, 55, 95, .58));
  box-shadow: 0 28px 90px rgba(0, 0, 0, .36);
  backdrop-filter: blur(4px);
  animation: fadeUp .7s ease both;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.hero h1,
h2,
.dish-card h3 {
  font-family: 'Playfair Display', Georgia, serif;
}

.hero h1 {
  margin: 12px 0 14px;
  font-size: clamp(2.55rem, 8vw, 5.85rem);
  line-height: .95;
  letter-spacing: -.04em;
}

.hero p {
  max-width: 660px;
  margin: 0 auto;
  color: rgba(255, 255, 255, .88);
  font-size: clamp(1rem, 2.4vw, 1.28rem);
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 13px;
  margin-top: 28px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 21px;
  border-radius: 999px;
  color: #fff;
  text-decoration: none;
  font-weight: 900;
  box-shadow: 0 12px 30px rgba(0, 0, 0, .22);
  transition: transform .2s ease, box-shadow .2s ease;
}

.btn:hover { transform: translateY(-2px); box-shadow: 0 18px 38px rgba(0, 0, 0, .28); }
.btn-primary { background: var(--terracotta); }
.btn-whatsapp { background: #1fb85e; }

main {
  width: min(1180px, calc(100% - 28px));
  margin: 0 auto;
  padding: 54px 0 36px;
}

.section-card {
  border: 1px solid rgba(255, 255, 255, .68);
  border-radius: 28px;
  background: rgba(255, 249, 237, .88);
  box-shadow: var(--shadow);
}

.intro,
.legend,
.contact-box {
  margin-bottom: 42px;
  padding: clamp(24px, 4vw, 42px);
  text-align: center;
}

.intro p {
  max-width: 760px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.8;
}

h2 {
  margin: 8px 0 26px;
  color: var(--navy);
  font-size: clamp(2rem, 5vw, 3.35rem);
  line-height: 1.05;
  letter-spacing: -.03em;
  text-align: center;
}

.menu-section { margin: 0 0 48px; }
.menu-section-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
  padding: 0 4px;
}

.menu-section-header h3 {
  margin: 0;
  color: var(--navy);
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.65rem, 4vw, 2.35rem);
}

.menu-section-header span {
  color: var(--muted);
  font-weight: 800;
  white-space: nowrap;
}

.cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.dish-card {
  display: grid;
  grid-template-columns: 152px 1fr;
  overflow: hidden;
  min-height: 132px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 249, 237, .94);
  box-shadow: 0 12px 32px rgba(20, 24, 31, .10);
  transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease;
}

.dish-card:hover {
  transform: translateY(-4px);
  border-color: rgba(168, 79, 45, .34);
  box-shadow: 0 20px 46px rgba(20, 24, 31, .16);
}

.dish-card img {
  width: 152px;
  height: 100%;
  min-height: 132px;
  display: block;
  object-fit: cover;
  background: #e6d2ae;
}

.dish-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 16px 18px;
}

.dish-top {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 14px;
  align-items: start;
}

.dish-card h3 {
  margin: 0;
  color: var(--navy);
  font-size: 1.16rem;
  line-height: 1.2;
}

.price {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 52px;
  padding: 7px 10px;
  border-radius: 999px;
  color: var(--navy-dark);
  background: rgba(217, 164, 65, .34);
  font-weight: 900;
  white-space: nowrap;
}

.allergen {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: .86rem;
  line-height: 1.45;
}

.legend {
  color: var(--muted);
  line-height: 1.7;
}

.legend strong { color: var(--navy); }

.gallery-section { margin-bottom: 42px; }
.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.gallery img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border: 8px solid rgba(255, 249, 237, .9);
  border-radius: 24px;
  box-shadow: var(--shadow);
  transition: transform .28s ease, filter .28s ease;
}

.gallery img:hover {
  transform: scale(1.025) rotate(-.4deg);
  filter: saturate(1.08);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  text-align: left;
}

.contact-grid p {
  margin: 0;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, .5);
}

.contact-grid strong,
.contact-grid span,
.contact-grid a {
  display: block;
}

.contact-grid strong {
  margin-bottom: 8px;
  color: var(--navy);
  font-size: .83rem;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.contact-grid span,
.contact-grid a {
  color: var(--ink);
  line-height: 1.55;
  text-decoration: none;
}

.whatsapp {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 90;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 58px;
  height: 58px;
  padding: 0 18px;
  border-radius: 999px;
  color: #fff;
  background: #1fb85e;
  text-decoration: none;
  font-size: .86rem;
  font-weight: 900;
  box-shadow: 0 16px 36px rgba(0, 0, 0, .28);
}

footer {
  padding: 24px 16px 32px;
  color: rgba(255, 255, 255, .82);
  background: var(--navy-dark);
  text-align: center;
}

[data-animate] { animation: fadeUp .62s ease both; }
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 900px) {
  .hero { min-height: 76vh; }
  .cards,
  .contact-grid { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 620px) {
  .site-nav {
    top: 8px;
    width: calc(100% - 16px);
    gap: 2px;
    padding: 6px;
  }

  .site-nav a {
    flex: 1;
    padding: 9px 6px;
    font-size: .78rem;
    text-align: center;
  }

  .hero { padding-top: 96px; }
  .hero-box { border-radius: 24px; }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .btn { width: 100%; }
  main { width: min(100% - 18px, 1180px); padding-top: 36px; }
  .menu-section-header { align-items: start; flex-direction: column; gap: 4px; }
  .dish-card { grid-template-columns: 108px 1fr; min-height: 118px; border-radius: 18px; }
  .dish-card img { width: 108px; min-height: 118px; }
  .dish-body { padding: 13px; }
  .dish-card h3 { font-size: 1rem; }
  .price { min-width: 46px; padding: 6px 8px; font-size: .92rem; }
  .allergen { font-size: .78rem; }
  .gallery { grid-template-columns: 1fr; }
  .gallery img { height: 230px; }
  .whatsapp { right: 12px; bottom: 12px; height: 52px; min-width: 52px; padding: 0 14px; font-size: .78rem; }
}
