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

:root{
  --primary:#d4a762;
  --dark:#111111;
  --brown:#2d1e1b;
  --cream:#f8f4ef;
  --white:#ffffff;
  --shadow:0 10px 30px rgba(0,0,0,0.15);
}

body{
  font-family:"Poppins", sans-serif;
  background:var(--cream);
  color:#333;
  overflow-x:hidden;
}

.section{
  padding:100px 8%;
}

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

.section-subtitle{
  color:var(--primary);
  font-weight:600;
  letter-spacing:2px;
  text-transform:uppercase;
  margin-bottom:10px;
}

.section-heading h2,
.about-content h2,
.special-content h2,
.contact-info h2{
  font-size:3rem;
  font-family:"Playfair Display", serif;
  color:var(--brown);
}

img{
  width:100%;
  display:block;
}

.primary-btn,
.secondary-btn{
  display:inline-block;
  padding:14px 32px;
  border-radius:50px;
  text-decoration:none;
  transition:0.4s ease;
  font-weight:600;
}

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

.primary-btn:hover{
  transform:translateY(-5px);
}

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

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

.header{
  width:100%;
  position:fixed;
  top:0;
  left:0;
  z-index:1000;
  padding:20px 8%;
  display:flex;
  justify-content:space-between;
  align-items:center;
  background:rgba(0,0,0,0.6);
  backdrop-filter:blur(10px);
}

.logo{
  color:var(--white);
  font-size:2rem;
  font-family:"Playfair Display", serif;
  font-weight:700;
}

.logo span{
  color:var(--primary);
}

.navbar{
  display:flex;
  gap:30px;
}

.navbar a{
  text-decoration:none;
  color:var(--white);
  font-weight:500;
  transition:0.3s;
}

.navbar a:hover{
  color:var(--primary);
}

.book-btn{
  background:var(--primary);
  border:none;
  padding:12px 25px;
  border-radius:50px;
  font-weight:600;
  cursor:pointer;
}

#menu-btn{
  color:var(--white);
  font-size:1.7rem;
  cursor:pointer;
  display:none;
}

.hero{
  height:100vh;
  background:url("https://images.unsplash.com/photo-1517248135467-4c7edcad34c4?q=80&w=1600&auto=format&fit=crop") center/cover no-repeat;
  display:flex;
  align-items:center;
  position:relative;
}

.hero-overlay{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,0.6);
}

.hero-content{
  position:relative;
  z-index:2;
  color:var(--white);
  width:700px;
  margin-left:8%;
}

.hero-tag{
  color:var(--primary);
  margin-bottom:15px;
  font-weight:600;
}

.hero-content h1{
  font-size:5rem;
  line-height:1.1;
  font-family:"Playfair Display", serif;
}

.hero-text{
  margin:25px 0;
  line-height:1.8;
  color:#ddd;
}

.hero-buttons{
  display:flex;
  gap:20px;
}

.features{
  padding:80px 8%;
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
  gap:30px;
  margin-top:-80px;
  position:relative;
  z-index:5;
}

.feature-card{
  background:var(--white);
  padding:40px 30px;
  border-radius:25px;
  box-shadow:var(--shadow);
  text-align:center;
  transition:0.4s;
}

.feature-card:hover{
  transform:translateY(-10px);
}

.feature-card i{
  font-size:2.5rem;
  color:var(--primary);
  margin-bottom:20px;
}

.about{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
  gap:60px;
  align-items:center;
}

.about-image img{
  border-radius:30px;
  box-shadow:var(--shadow);
}

.about-content p{
  line-height:1.9;
  margin:20px 0;
}

.about-stats{
  display:flex;
  gap:40px;
  margin:35px 0;
}

.about-stats h3{
  color:var(--primary);
  font-size:2rem;
}

.menu{
  background:#fff;
}

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

.menu-card{
  background:var(--cream);
  border-radius:25px;
  overflow:hidden;
  box-shadow:var(--shadow);
  transition:0.4s;
}

.menu-card:hover{
  transform:translateY(-10px);
}

.menu-card img{
  height:250px;
  object-fit:cover;
}

.menu-content{
  padding:25px;
}

.menu-top{
  display:flex;
  justify-content:space-between;
  margin-bottom:15px;
}

.menu-top span{
  color:var(--primary);
  font-weight:700;
}

.menu-content button{
  margin-top:20px;
  width:100%;
  padding:14px;
  border:none;
  border-radius:50px;
  background:var(--brown);
  color:var(--white);
  cursor:pointer;
  transition:0.4s;
}

.menu-content button:hover{
  background:var(--primary);
  color:var(--dark);
}

.special{
  background:
    linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)),
    url("https://images.unsplash.com/photo-1414235077428-338989a2e8c0?q=80&w=1600&auto=format&fit=crop")
    center/cover no-repeat;
  text-align:center;
  color:var(--white);
}

.special-content{
  max-width:700px;
  margin:auto;
}

.special-content h2{
  color:var(--white);
  margin:20px 0;
}

.special-content p{
  margin-bottom:30px;
  line-height:1.8;
}

.gallery-container{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
  gap:20px;
}

.gallery-container img{
  border-radius:20px;
  height:280px;
  object-fit:cover;
  transition:0.4s;
}

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

.reviews{
  background:#fff;
}

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

.review-card{
  background:var(--cream);
  padding:40px 30px;
  border-radius:25px;
  box-shadow:var(--shadow);
}

.review-card i{
  color:var(--primary);
  font-size:2rem;
  margin-bottom:20px;
}

.review-card p{
  line-height:1.8;
  margin-bottom:20px;
}

.contact-container{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
  gap:50px;
  align-items:center;
}

.contact-details p{
  margin:20px 0;
}

.contact-details i{
  color:var(--primary);
  margin-right:10px;
}

.contact-form{
  background:#fff;
  padding:40px;
  border-radius:25px;
  box-shadow:var(--shadow);
}

.contact-form input,
.contact-form textarea{
  width:100%;
  padding:15px;
  margin-bottom:20px;
  border:none;
  background:var(--cream);
  border-radius:15px;
  outline:none;
}

.contact-form button{
  width:100%;
  padding:15px;
  border:none;
  border-radius:50px;
  background:var(--primary);
  font-weight:600;
  cursor:pointer;
}

.footer{
  background:var(--dark);
  color:var(--white);
  text-align:center;
  padding:60px 8% 30px;
}

.footer-content h2{
  font-family:"Playfair Display", serif;
  font-size:2.5rem;
}

.socials{
  margin:25px 0;
}

.socials i{
  width:45px;
  height:45px;
  line-height:45px;
  border-radius:50%;
  background:#222;
  margin:0 8px;
  cursor:pointer;
  transition:0.4s;
}

.socials i:hover{
  background:var(--primary);
  color:var(--dark);
}

@media(max-width:950px){

  #menu-btn{
    display:block;
  }

  .navbar{
    position:absolute;
    top:100%;
    right:-100%;
    width:300px;
    height:100vh;
    background:var(--dark);
    flex-direction:column;
    padding:50px 30px;
    transition:0.5s;
  }

  .navbar.active{
    right:0;
  }

  .hero-content h1{
    font-size:3.5rem;
  }

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

  .book-btn{
    display:none;
  }
}

@media(max-width:600px){

  .hero-content h1{
    font-size:2.8rem;
  }

  .section-heading h2,
  .about-content h2,
  .special-content h2,
  .contact-info h2{
    font-size:2.2rem;
  }

  .about-stats{
    flex-direction:column;
    gap:20px;
  }
}
