:root {
  --primary-green: #26332a;
  --secondary-brown: #a87232;
  --accent-gold: #d49a42;
  --accent-green: #405c45;
  --bg-dark: #121714;
  --bg-card: #1c2621;
  --text-light: #f2e7ce;
  --text-muted: #a39b8a;
  --font-main: 'Outfit', sans-serif;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-main);
  background-color: var(--bg-dark);
  color: var(--text-light);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-weight: 600;
  margin-bottom: 1rem;
}

h2 {
  font-size: 2.5rem;
  color: var(--accent-gold);
  text-align: center;
  position: relative;
  display: inline-block;
  left: 50%;
  transform: translateX(-50%);
  margin-bottom: 3rem;
}

h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 3px;
  background-color: var(--secondary-brown);
  border-radius: 2px;
}

a {
  text-decoration: none;
  color: inherit;
}

section {
  padding: 6rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.btn {
  display: inline-block;
  padding: 0.8rem 2rem;
  border-radius: 30px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
}

.btn-primary {
  background-color: var(--accent-gold);
  color: var(--bg-dark);
  box-shadow: 0 4px 15px rgba(212, 154, 66, 0.4);
}

.btn-primary:hover {
  background-color: var(--text-light);
  color: var(--bg-dark);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(212, 154, 66, 0.6);
}

.btn-outline {
  background-color: transparent;
  color: var(--accent-gold);
  border-color: var(--accent-gold);
}

.btn-outline:hover {
  background-color: var(--accent-gold);
  color: var(--bg-dark);
  transform: translateY(-3px);
}

/* Navbar */
nav {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 1.5rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  transition: var(--transition);
}

nav.scrolled {
  background-color: rgba(38, 51, 42, 0.95);
  backdrop-filter: blur(10px);
  padding: 0.8rem 2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

nav.scrolled .nav-logo-img {
  height: 50px;
}

.logo {
  display: flex;
  align-items: center;
}

.nav-logo-img {
  height: 65px;
  width: auto;
  border-radius: 50%;
  transition: var(--transition);
}

.nav-logo-img:hover {
  transform: scale(1.05);
}

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

.nav-links a {
  font-weight: 500;
  font-size: 1rem;
  position: relative;
  transition: var(--transition);
}

.nav-links a:hover {
  color: var(--accent-gold);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--accent-gold);
  transition: var(--transition);
}

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

.mobile-menu-btn {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
}

/* Hero Section */
.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  background: url('assets/hero_bg.png') center/cover no-repeat;
  max-width: 100%;
  padding: 0;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(10, 14, 13, 0.7), rgba(20, 54, 43, 0.8));
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  padding: 2rem;
}

.hero h1 {
  font-size: 5rem;
  margin-bottom: 0.5rem;
  color: var(--text-light);
  letter-spacing: 3px;
  text-transform: uppercase;
  animation: fadeUp 1s ease forwards;
}

.hero .highlight {
  color: var(--accent-gold);
}

.hero .tagline {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  color: var(--text-muted);
  font-weight: 300;
  letter-spacing: 5px;
  text-transform: uppercase;
  animation: fadeUp 1s ease 0.2s forwards;
  opacity: 0;
}

.hero-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  animation: fadeUp 1s ease 0.4s forwards;
  opacity: 0;
}

/* About Section */
.about {
  display: flex;
  align-items: center;
  gap: 4rem;
}

.about-text {
  flex: 1;
}

.about-text p {
  font-size: 1.2rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.about-image {
  flex: 1;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
  position: relative;
}

.about-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: var(--transition);
}

.about-image:hover img {
  transform: scale(1.05);
}

.about-image::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: inset 0 0 50px rgba(20, 54, 43, 0.3);
  pointer-events: none;
}

/* Menu Section */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.menu-category {
  background-color: var(--bg-card);
  border-radius: 15px;
  padding: 2rem;
  transition: var(--transition);
  border: 1px solid rgba(207, 170, 107, 0.1);
  display: flex;
  flex-direction: column;
}

.menu-category:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.3);
  border-color: rgba(207, 170, 107, 0.3);
}

.menu-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 1.5rem;
}

.menu-category h3 {
  color: var(--accent-gold);
  border-bottom: 1px dashed var(--text-muted);
  padding-bottom: 0.5rem;
  margin-bottom: 1rem;
}

.menu-item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.8rem;
}

.menu-item-name {
  font-weight: 500;
}

.menu-item-price {
  color: var(--secondary-brown);
  font-weight: 600;
}

/* Gallery Section */
.gallery {
  max-width: 100%;
  padding: 6rem 0;
}

.gallery h2 {
  margin-bottom: 3rem;
}

.gallery-grid {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  padding: 0 2rem;
  scrollbar-width: none;
}

.gallery-grid::-webkit-scrollbar {
  display: none;
}

.gallery-item {
  min-width: 300px;
  height: 400px;
  border-radius: 15px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

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

/* Contact Section */
.contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
}

.info-icon {
  font-size: 2rem;
  color: var(--accent-gold);
  background: rgba(207, 170, 107, 0.1);
  padding: 1rem;
  border-radius: 50%;
}

.info-text h4 {
  margin-bottom: 0.3rem;
  color: var(--text-light);
}

.info-text p {
  color: var(--text-muted);
}

.map-container {
  border-radius: 15px;
  overflow: hidden;
  height: 400px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

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

/* Footer */
footer {
  background-color: #050807;
  padding: 4rem 2rem 2rem;
  text-align: center;
}

.footer-content {
  max-width: 800px;
  margin: 0 auto;
}

.footer-logo {
  display: inline-block;
  margin-bottom: 1rem;
}

.footer-logo-img {
  height: 100px;
  width: auto;
  border-radius: 50%;
  transition: var(--transition);
}

.footer-logo-img:hover {
  transform: scale(1.05);
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin: 2rem 0;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background-color: var(--bg-card);
  color: var(--accent-gold);
  font-size: 1.2rem;
  transition: var(--transition);
}

.social-links a:hover {
  background-color: var(--accent-gold);
  color: var(--bg-dark);
  transform: translateY(-5px);
}

.copyright {
  color: var(--text-muted);
  font-size: 0.9rem;
  border-top: 1px solid rgba(255,255,255,0.05);
  padding-top: 1.5rem;
}

/* Animations */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 3rem;
  }
  
  .about, .contact {
    flex-direction: column;
    grid-template-columns: 1fr;
  }
  
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: 70%;
    background-color: var(--primary-green);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: var(--transition);
    box-shadow: -10px 0 30px rgba(0,0,0,0.5);
  }
  
  .nav-links.active {
    right: 0;
  }
  
  .mobile-menu-btn {
    display: block;
    z-index: 1001;
  }
}
