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

:root {
  --primary: #8b4513;
  --primary-light: #a0522d;
  --primary-dark: #5d2e0c;
  --cream: #fdf8f3;
  --cream-dark: #f5ebe0;
  --dark: #2c1810;
  --text: #4a3728;
  --text-light: #7a6455;
  --white: #ffffff;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  color: var(--text);
  background-color: var(--cream);
  line-height: 1.6;
}

h1,
h2,
h3,
h4 {
  font-family: "Playfair Display", serif;
  color: var(--dark);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: all 0.3s ease;
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
  padding: 15px 0;
}

.navbar-dark {
  background: var(--dark);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo-icon {
  font-size: 28px;
}

.logo-text {
  font-family: "Playfair Display", serif;
  font-size: 24px;
  font-weight: 600;
  color: var(--white);
}

.navbar.scrolled .logo-text {
  color: var(--dark);
}

.navbar-dark .logo-text {
  color: var(--white);
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 40px;
}

.nav-links a {
  text-decoration: none;
  color: var(--white);
  font-weight: 500;
  font-size: 15px;
  transition: color 0.3s;
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width 0.3s;
}

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

.navbar.scrolled .nav-links a {
  color: var(--text);
}

.navbar-dark .nav-links a {
  color: var(--white);
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.mobile-toggle span {
  width: 25px;
  height: 2px;
  background: var(--white);
  transition: all 0.3s;
}

.navbar.scrolled .mobile-toggle span {
  background: var(--dark);
}

/* Hero Section */
.hero {
  height: 100vh;
  min-height: 700px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: url("https://images.unsplash.com/photo-1495474472287-4d71bcdd2085?w=1920&h=1080&fit=crop") center / cover
    no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(44, 24, 16, 0.7), rgba(44, 24, 16, 0.5));
}

.hero-content {
  position: relative;
  text-align: center;
  color: var(--white);
  padding: 20px;
}

.hero-badge {
  display: inline-block;
  padding: 8px 20px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50px;
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.hero-title {
  font-size: clamp(48px, 10vw, 100px);
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--white);
  letter-spacing: 2px;
}

.hero-subtitle {
  font-size: clamp(18px, 3vw, 24px);
  font-weight: 300;
  margin-bottom: 40px;
  opacity: 0.9;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 16px 36px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s;
  cursor: pointer;
  border: none;
}

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

.btn-primary:hover {
  background: var(--primary-light);
  transform: translateY(-2px);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

.btn-secondary:hover {
  background: var(--white);
  color: var(--dark);
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  color: var(--white);
}

.hero-scroll span {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 10px;
}

.scroll-indicator {
  width: 24px;
  height: 40px;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 12px;
  margin: 0 auto;
  position: relative;
}

.scroll-indicator::after {
  content: "";
  width: 4px;
  height: 8px;
  background: var(--white);
  border-radius: 2px;
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  animation: scroll 2s infinite;
}

@keyframes scroll {
  0%,
  100% {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
  50% {
    opacity: 0.5;
    transform: translateX(-50%) translateY(10px);
  }
}

/* Section Styles */
.section-badge {
  display: inline-block;
  padding: 8px 20px;
  background: var(--cream-dark);
  color: var(--primary);
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.section-title {
  font-size: clamp(32px, 5vw, 48px);
  margin-bottom: 20px;
  line-height: 1.2;
}

.section-subtitle {
  font-size: 18px;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

/* About Section */
.about {
  padding: 120px 0;
  background: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-image {
  position: relative;
}

.about-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 20px;
}

.about-image-badge {
  position: absolute;
  bottom: -30px;
  right: -30px;
  background: var(--primary);
  color: var(--white);
  padding: 25px 30px;
  border-radius: 15px;
  text-align: center;
}

.badge-number {
  display: block;
  font-family: "Playfair Display", serif;
  font-size: 36px;
  font-weight: 700;
}

.badge-text {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.about-content {
  padding-left: 20px;
}

.about-text {
  font-size: 16px;
  color: var(--text-light);
  margin-bottom: 20px;
  line-height: 1.8;
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 40px;
}

.feature {
  display: flex;
  align-items: center;
  gap: 15px;
}

.feature-icon {
  width: 50px;
  height: 50px;
  background: var(--cream);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}

.feature-text h4 {
  font-size: 16px;
  margin-bottom: 2px;
}

.feature-text p {
  font-size: 14px;
  color: var(--text-light);
}

/* Location Section */
.location {
  padding: 120px 0;
  background: var(--cream);
}

.location-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
  align-items: stretch;
}

.map-container {
  border-radius: 20px;
  overflow: hidden;
  height: 450px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.map-container iframe {
  width: 100%;
  height: 100%;
}

.location-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.info-card {
  background: var(--white);
  padding: 25px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  gap: 15px;
  transition: transform 0.3s;
}

.info-card:hover {
  transform: translateY(-5px);
}

.info-icon {
  font-size: 24px;
  width: 50px;
  height: 50px;
  background: var(--cream);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.info-content h4 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 4px;
  font-family: "Inter", sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-light);
}

.info-content p {
  font-size: 16px;
  color: var(--dark);
  font-weight: 500;
}

/* Menu Hero */
.menu-hero {
  height: 50vh;
  min-height: 400px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: url("https://images.unsplash.com/photo-1447933601403-0c6688de566e?w=1920&h=600&fit=crop") center / cover
    no-repeat;
}

.menu-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(44, 24, 16, 0.75);
}

.menu-hero-content {
  position: relative;
  text-align: center;
  color: var(--white);
}

.menu-hero-content h1 {
  font-size: clamp(40px, 8vw, 72px);
  color: var(--white);
  margin-bottom: 15px;
}

.menu-hero-content p {
  font-size: 18px;
  opacity: 0.9;
}

/* Menu Navigation */
.menu-nav {
  background: var(--white);
  position: sticky;
  top: 70px;
  z-index: 100;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.menu-tabs {
  display: flex;
  justify-content: center;
  gap: 10px;
  padding: 20px 0;
  flex-wrap: wrap;
}

.menu-tab {
  padding: 12px 30px;
  border: 2px solid var(--cream-dark);
  background: transparent;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s;
  font-family: "Inter", sans-serif;
}

.menu-tab:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.menu-tab.active {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
}

/* Menu Section */
.menu-section {
  padding: 80px 0;
  background: var(--cream);
}

.menu-section.hidden {
  display: none;
}

.menu-header {
  text-align: center;
  margin-bottom: 50px;
}

.menu-header h2 {
  font-size: 36px;
  margin-bottom: 10px;
}

.menu-header p {
  color: var(--text-light);
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 30px;
}

.menu-item {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.3s;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.menu-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.menu-item-image {
  height: 200px;
  overflow: hidden;
}

.menu-item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.menu-item:hover .menu-item-image img {
  transform: scale(1.1);
}

.menu-item-content {
  padding: 25px;
}

.menu-item-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.menu-item-header h3 {
  font-size: 18px;
}

.price {
  font-size: 18px;
  font-weight: 700;
  color: var(--primary);
}

.menu-item-content p {
  font-size: 14px;
  color: var(--text-light);
}

/* Footer */
.footer {
  background: var(--dark);
  color: var(--white);
  padding: 80px 0 30px;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 50px;
}

.footer-brand p {
  margin-top: 15px;
  opacity: 0.7;
  font-size: 14px;
}

.footer-brand .logo-text {
  color: var(--white);
}

.footer-links h4,
.footer-social h4 {
  font-size: 16px;
  margin-bottom: 20px;
  color: var(--white);
  font-family: "Inter", sans-serif;
  font-weight: 600;
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: var(--white);
}

.social-icons {
  display: flex;
  gap: 15px;
}

.social-icon {
  padding: 10px 20px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: var(--white);
  text-decoration: none;
  font-size: 14px;
  transition: background 0.3s;
}

.social-icon:hover {
  background: var(--primary);
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  font-size: 14px;
  opacity: 0.7;
}

/* Responsive */
@media (max-width: 992px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .about-image-badge {
    right: 20px;
    bottom: -20px;
  }

  .about-content {
    padding-left: 0;
  }

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

  .footer-content {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    height: 100vh;
    background: var(--dark);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
    transition: right 0.3s;
  }

  .nav-links.active {
    right: 0;
  }

  .nav-links a {
    color: var(--white);
    font-size: 18px;
  }

  .mobile-toggle {
    display: flex;
    z-index: 1001;
  }

  .mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .mobile-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

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

  .btn {
    width: 100%;
    max-width: 280px;
    text-align: center;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .social-icons {
    justify-content: center;
  }
}
