*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --bg: #fce4ec;
  --bg-light: #fff0f3;
  --primary: #d4838f;
  --primary-dark: #b56576;
  --accent: #f8bbd0;
  --text: #5d3a3a;
  --text-light: #8b6060;
  --white: #ffffff;
}

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

body {
  font-family: 'Lato', sans-serif;
  color: var(--text);
  background-color: var(--bg-light);
  line-height: 1.7;
}

/* ── Navigation ── */

nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255, 240, 243, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--accent);
  padding: 0.75rem 2rem;
  display: flex;
  justify-content: center;
  gap: 2rem;
  transition: box-shadow 0.3s ease;
}

nav.scrolled {
  box-shadow: 0 2px 20px rgba(180, 101, 118, 0.1);
}

nav a {
  text-decoration: none;
  color: var(--text-light);
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.25rem 0;
  border-bottom: 2px solid transparent;
  transition: color 0.3s ease, border-color 0.3s ease;
}

nav a:hover,
nav a.active {
  color: var(--primary);
  border-bottom-color: var(--primary);
}

/* ── Hero ── */

.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--bg);
  text-align: center;
  padding: 6rem 2rem 4rem;
  position: relative;
}

.hero-logo {
  width: min(320px, 70vw);
  height: auto;
  margin-bottom: 2rem;
  animation: fadeInUp 1s ease;
}

.hero-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 400;
  font-style: italic;
  color: var(--primary);
  letter-spacing: 0.3em;
  animation: fadeInUp 1s ease 0.2s both;
}

.scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  animation: fadeInUp 1s ease 0.6s both, bounce 2s ease-in-out 1.6s infinite;
}

.scroll-hint svg {
  width: 24px;
  height: 24px;
  stroke: var(--primary);
  opacity: 0.5;
}

/* ── Sections (shared) ── */

section {
  padding: 5rem 2rem;
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  font-weight: 500;
  color: var(--primary-dark);
  text-align: center;
  margin-bottom: 0.5rem;
}

.section-divider {
  width: 60px;
  height: 2px;
  background: var(--accent);
  margin: 0 auto 2.5rem;
  border: none;
}

/* ── About ── */

.about {
  background: var(--white);
  text-align: center;
  max-width: 100%;
}

.about-content {
  max-width: 620px;
  margin: 0 auto;
  font-size: 1.05rem;
  line-height: 1.9;
  color: var(--text-light);
}

.about-content p + p {
  margin-top: 1.2rem;
}

/* ── Menu ── */

.menu {
  background: var(--bg-light);
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto;
}

.menu-card {
  background: var(--white);
  border-radius: 16px;
  padding: 1.8rem;
  text-align: center;
  border: 1px solid var(--accent);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.menu-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(180, 101, 118, 0.12);
}

.menu-card-icon {
  font-size: 2rem;
  margin-bottom: 0.75rem;
}

.menu-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--primary-dark);
  margin-bottom: 0.3rem;
}

.menu-card .description {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 0.75rem;
}

.menu-card .price {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 0.05em;
}

.menu-note {
  text-align: center;
  margin-top: 2rem;
  font-size: 0.9rem;
  color: var(--text-light);
  font-style: italic;
}

/* ── Contact ── */

.contact {
  background: var(--white);
  text-align: center;
}

.contact-intro {
  max-width: 500px;
  margin: 0 auto 2.5rem;
  font-size: 1.05rem;
  color: var(--text-light);
  line-height: 1.8;
}

.contact-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  max-width: 600px;
  margin: 0 auto;
}

.contact-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--text);
  background: var(--bg);
  padding: 1rem 1.8rem;
  border-radius: 50px;
  border: 1px solid var(--accent);
  transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  font-size: 0.95rem;
}

.contact-link:hover {
  background: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(180, 101, 118, 0.15);
}

.contact-link svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

/* ── Footer ── */

footer {
  background: var(--bg);
  text-align: center;
  padding: 2rem;
  font-size: 0.8rem;
  color: var(--text-light);
  letter-spacing: 0.05em;
  border-top: 1px solid var(--accent);
}

/* ── Animations ── */

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

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ── Responsive ── */

@media (max-width: 768px) {
  nav {
    gap: 1.2rem;
    padding: 0.65rem 1rem;
  }

  nav a {
    font-size: 0.75rem;
    letter-spacing: 0.1em;
  }

  .hero {
    padding: 5rem 1.5rem 3rem;
  }

  .hero-logo {
    width: min(260px, 65vw);
  }

  section {
    padding: 3.5rem 1.5rem;
  }

  .section-title {
    font-size: 1.8rem;
  }

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

  .contact-links {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 400px) {
  nav {
    gap: 0.8rem;
  }

  nav a {
    font-size: 0.7rem;
  }
}
