/* ── RESET & BASE ── */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Nunito', sans-serif;
  background-color: #fffaf7;
  color: #3d2b2b;
}

/* ── TYPOGRAPHY ── */
h1, h2, h3 {
  font-family: 'Cormorant Garamond', serif;
}

.section-title {
  font-size: 2.4rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 0.5rem;
  color: #3d2b2b;
}

.section-subtitle {
  text-align: center;
  color: #9e7b7b;
  font-size: 1rem;
  margin-bottom: 3rem;
  font-weight: 300;
}

/* ── NAVBAR ── */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.4rem 4rem;
  background-color: #fffaf7;
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid #f0e0e0;
}

.nav-logo {
  font-family: 'Dancing Script', cursive;
  font-size: 1.8rem;
  color: #c47a85;
}

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

.nav-links a {
  text-decoration: none;
  color: #3d2b2b;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #c47a85;
}

/* ── HERO ── */
.hero {
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-color: #fdf0f2;
  padding: 4rem 2rem;
}

.hero-tagline {
  font-family: 'Dancing Script', cursive;
  font-size: 1.4rem;
  color: #c47a85;
  margin-bottom: 1rem;
}

.hero-title {
  font-family: 'Dancing Script', cursive;
  font-size: 5rem;
  color: #3d2b2b;
  margin-bottom: 1.2rem;
  line-height: 1.1;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: #9e7b7b;
  max-width: 480px;
  margin: 0 auto 2.2rem;
  font-weight: 300;
  line-height: 1.8;
}

/* ── BUTTON ── */
.btn {
  display: inline-block;
  background-color: #c47a85;
  color: #fff;
  padding: 0.85rem 2.2rem;
  border-radius: 50px;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn:hover {
  background-color: #a85f6e;
  transform: translateY(-2px);
}

/* ── MENU ── */
.menu {
  padding: 6rem 4rem;
  background-color: #fffaf7;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

.menu-card {
  background-color: #fff;
  border: 1px solid #f0e0e0;
  border-radius: 16px;
  padding: 2rem 1.5rem;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.menu-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(196, 122, 133, 0.12);
}

.menu-card h3 {
  font-size: 1.4rem;
  margin-bottom: 0.8rem;
  color: #3d2b2b;
}

.menu-card p {
  font-size: 0.9rem;
  color: #9e7b7b;
  line-height: 1.7;
  margin-bottom: 1.2rem;
}

.price {
  display: inline-block;
  background-color: #fdf0f2;
  color: #c47a85;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.3rem 1rem;
  border-radius: 50px;
}

/* ── GALLERY ── */
.gallery {
  padding: 6rem 4rem;
  background-color: #fdf0f2;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  max-width: 1100px;
  margin: 0 auto;
}

.gallery-item {
  background-color: #f0d5d9;
  border-radius: 12px;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}

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

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

/* ── ABOUT ── */
.about {
  padding: 6rem 4rem;
  background-color: #fffaf7;
}

.about-content {
  display: flex;
  align-items: center;
  gap: 4rem;
  max-width: 1000px;
  margin: 0 auto;
}

.about-image {
  width: 360px;
  height: 420px;
  border-radius: 16px;
  background-color: #f0d5d9;
  flex-shrink: 0;
  overflow: hidden;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-text h2 {
  font-size: 2.4rem;
  margin-bottom: 1.2rem;
  color: #3d2b2b;
}

.about-text p {
  font-size: 1rem;
  color: #9e7b7b;
  line-height: 1.9;
  margin-bottom: 1.2rem;
  font-weight: 300;
}

/* ── ORDER FORM ── */
.order {
  padding: 6rem 4rem;
  background-color: #fdf0f2;
}

.order-form {
  max-width: 680px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

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

.order-form input,
.order-form textarea {
  width: 100%;
  padding: 0.9rem 1.2rem;
  border: 1px solid #f0e0e0;
  border-radius: 10px;
  font-family: 'Nunito', sans-serif;
  font-size: 0.95rem;
  background-color: #fff;
  color: #3d2b2b;
  outline: none;
  transition: border-color 0.3s ease;
}

.order-form input:focus,
.order-form textarea:focus {
  border-color: #c47a85;
}

.order-form textarea {
  resize: vertical;
}

.order-form .btn {
  align-self: center;
  margin-top: 0.5rem;
}

/* ── FOOTER ── */
.footer {
  background-color: #3d2b2b;
  color: #f0d5d9;
  text-align: center;
  padding: 2.5rem;
  font-size: 0.85rem;
  line-height: 2;
}

.footer-logo {
  font-family: 'Dancing Script', cursive;
  font-size: 1.6rem;
  color: #f0d5d9;
  margin-bottom: 0.3rem;
}
/* ── FORM SUCCESS ── */
.form-success {
  text-align: center;
  padding: 3rem;
  background-color: #fff;
  border-radius: 16px;
  border: 1px solid #f0e0e0;
}

.form-success h3 {
  font-size: 1.8rem;
  color: #3d2b2b;
  margin-bottom: 0.8rem;
}

.form-success p {
  color: #9e7b7b;
  font-weight: 300;
}
/* ── FOOTER LEGAL ── */
.footer-legal {
  margin-top: 1rem;
  font-size: 0.75rem;
  color: #a07070;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.8;
}
.nav-logo {
    white-space: nowrap;
}
/* ── HAMBURGER MENU ── */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: #3d2b2b;
  border-radius: 2px;
  transition: all 0.3s ease;
}

@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: #fffaf7;
    border-bottom: 1px solid #f0e0e0;
    padding: 1.5rem 2rem;
    gap: 1.2rem;
  }

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

  .navbar {
    position: relative;
  }
}