/* ── RESET & VARIABLES ── */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --brown: #6f4e37;
  --cream: #fdf6ec;
  --dark: #2c1a0e;
  --light: #f5e6d3;
  --gray: #888;
  --white: #ffffff;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Georgia', serif;
  background: var(--cream);
  color: var(--dark);
}

/* ── NAVBAR ── */
nav {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 1.2rem 4rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(253, 246, 236, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(111, 78, 55, 0.15);
  z-index: 100;
}

.logo {
  font-size: 1.5rem;
  color: var(--brown);
  letter-spacing: 2px;
  font-weight: bold;
}

nav ul {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}

nav ul a {
  text-decoration: none;
  color: var(--dark);
  font-size: 0.9rem;
  letter-spacing: 1px;
  transition: color 0.3s;
}

nav ul a:hover {
  color: var(--brown);
}

.btn {
  padding: 0.8rem 2rem;
  background: var(--brown);
  color: var(--white);
  text-decoration: none;
  font-size: 0.85rem;
  letter-spacing: 2px;
  transition: background 0.3s;
  border: none;
  cursor: pointer;
  border-radius: 4px;
}

.btn:hover {
  background: var(--dark);
}

.btn-outline {
  padding: 0.8rem 2rem;
  background: transparent;
  border: 1px solid var(--brown);
  color: var(--brown);
  text-decoration: none;
  font-size: 0.85rem;
  letter-spacing: 2px;
  transition: all 0.3s;
  border-radius: 4px;
}

.btn-outline:hover {
  background: var(--brown);
  color: var(--white);
}

/* ── HERO ── */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 0 4rem;
  background: linear-gradient(135deg, #fdf6ec 0%, #f5e6d3 60%, #ead5b7 100%);
  position: relative;
  overflow: hidden;
}

#hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(111,78,55,0.08) 0%, transparent 70%);
  border-radius: 50%;
}

.hero-content {
  max-width: 650px;
  position: relative;
}

.hero-badge {
  display: inline-block;
  border: 1px solid var(--brown);
  color: var(--brown);
  font-size: 0.75rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  padding: 0.4rem 1.2rem;
  border-radius: 100px;
  margin-bottom: 2rem;
}

.hero-content h1 {
  font-size: clamp(2.5rem, 6vw, 5rem);
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: var(--dark);
}

.hero-content h1 span {
  color: var(--brown);
}

.hero-content p {
  font-size: 1.05rem;
  color: var(--gray);
  line-height: 1.9;
  max-width: 480px;
  margin-bottom: 2.5rem;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
}

/* ── ABOUT ── */
#about {
  padding: 6rem 4rem;
  background: var(--white);
}

.about-content {
  display: flex;
  gap: 4rem;
  align-items: center;
}

.about-text {
  flex: 1;
}

.section-label {
  font-size: 0.75rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--brown);
  margin-bottom: 1rem;
  display: block;
}

.about-text h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin-bottom: 1.5rem;
  line-height: 1.2;
  color: var(--dark);
}

.about-text p {
  font-size: 0.95rem;
  color: var(--gray);
  line-height: 1.9;
  margin-bottom: 1rem;
}

.about-image {
  flex: 1;
  height: 450px;
  overflow: hidden;
  border-radius: 8px;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.about-image:hover img {
  transform: scale(1.05);
}

/* ── MENU ── */
#menu {
  padding: 6rem 4rem;
  background: var(--cream);
  text-align: center;
}

#menu .section-label {
  display: block;
  text-align: center;
  margin-bottom: 0.5rem;
}

#menu h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin-bottom: 3rem;
  color: var(--dark);
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.menu-card {
  background: var(--white);
  padding: 2.5rem 2rem;
  text-align: center;
  border: 1px solid rgba(111, 78, 55, 0.1);
  border-radius: 12px;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.menu-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--brown);
  transition: width 0.4s;
}

.menu-card:hover::before {
  width: 100%;
}

.menu-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(111, 78, 55, 0.1);
}

.menu-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.menu-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.8rem;
  color: var(--dark);
}

.menu-card p {
  font-size: 0.85rem;
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 1.2rem;
}

.menu-price {
  font-size: 1.2rem;
  color: var(--brown);
  font-weight: bold;
}

/* ── CONTACT ── */
#contact {
  padding: 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 600px;
}

/* LEFT DARK SIDE */
.contact-left {
  background: var(--dark);
  padding: 5rem 4rem;
  color: var(--cream);
}

.contact-left .section-label {
  color: #c9a84c;
  margin-bottom: 1rem;
}

.contact-left h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  color: var(--cream);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.contact-left > p {
  font-size: 0.95rem;
  color: rgba(253,246,236,0.6);
  line-height: 1.9;
  margin-bottom: 2.5rem;
}

.info-item {
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
  margin-bottom: 2rem;
}

.info-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
}

.info-item h4 {
  font-size: 0.7rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #c9a84c;
  margin-bottom: 0.3rem;
}

.contact-left .info-item p {
  color: rgba(253,246,236,0.75);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* RIGHT LIGHT SIDE */
.contact-right {
  background: var(--white);
  padding: 5rem 4rem;
}

.contact-right h3 {
  font-size: 1.8rem;
  color: var(--dark);
  margin-bottom: 2rem;
}

.form-group {
  margin-bottom: 1.2rem;
}

.form-group label {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--brown);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  background: var(--cream);
  border: 1px solid rgba(111,78,55,0.2);
  color: var(--dark);
  padding: 0.9rem 1rem;
  font-family: 'Georgia', serif;
  font-size: 0.95rem;
  outline: none;
  border-radius: 6px;
  transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--brown);
}

.form-group textarea {
  height: 140px;
  resize: none;
}

.submit-btn {
  width: 100%;
  padding: 1rem;
  background: var(--brown);
  color: var(--white);
  border: none;
  font-family: 'Georgia', serif;
  font-size: 0.85rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: bold;
  cursor: pointer;
  margin-top: 0.5rem;
  border-radius: 6px;
  transition: background 0.3s;
}

.submit-btn:hover {
  background: var(--dark);
}

/* ── FOOTER ── */
footer {
  background: var(--dark);
  border-top: 3px solid var(--brown);
}

.footer-top {
  padding: 3rem 4rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(253,246,236,0.08);
}

.footer-logo {
  font-size: 1.6rem;
  color: var(--cream);
  letter-spacing: 3px;
  font-weight: bold;
}

.footer-tagline {
  font-size: 0.9rem;
  color: rgba(253,246,236,0.45);
  font-style: italic;
  letter-spacing: 1px;
}

.footer-socials {
  display: flex;
  gap: 1.5rem;
}

.footer-socials a {
  color: rgba(253,246,236,0.6);
  text-decoration: none;
  font-size: 0.85rem;
  letter-spacing: 1px;
  transition: color 0.3s;
}

.footer-socials a:hover {
  color: var(--brown);
}

.footer-bottom {
  padding: 1.5rem 4rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(253,246,236,0.35);
}

.footer-links {
  display: flex;
  gap: 2rem;
}

.footer-links a {
  font-size: 0.8rem;
  color: rgba(253,246,236,0.5);
  text-decoration: none;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: var(--brown);
}

/* ── MOBILE RESPONSIVE ── */
@media (max-width: 768px) {

  /* Navbar */
  nav {
    padding: 1rem 1.5rem;
  }
  nav ul {
    display: none;
  }

  /* Hero */
  #hero {
    padding: 7rem 1.5rem 3rem;
    min-height: 100vh;
  }
  .hero-content h1 {
    font-size: 2.2rem;
  }
  .hero-buttons {
    flex-direction: column;
    align-items: flex-start;
  }
  .btn-outline {
    margin-left: 0;
  }

  /* About */
  #about {
    padding: 4rem 1.5rem;
  }
  .about-content {
    flex-direction: column;
    gap: 2rem;
  }
  .about-image {
    height: 280px;
    width: 100%;
  }

  /* Menu */
  #menu {
    padding: 4rem 1.5rem;
  }
  .menu-grid {
    grid-template-columns: 1fr;
  }

  /* Contact */
  .contact-grid {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .contact-left {
    padding: 3rem 1.5rem;
  }
  .contact-right {
    padding: 3rem 1.5rem;
  }

  /* Footer */
  .footer-top {
    flex-direction: column;
    gap: 1.2rem;
    padding: 2rem 1.5rem;
    text-align: center;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    padding: 1.5rem;
    text-align: center;
  }
  .footer-socials {
    flex-direction: row;
    justify-content: center;
    gap: 1.5rem;
  }
  .footer-links {
    flex-direction: row;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
  }
  .footer-logo {
    font-size: 1.3rem;
  }

}
