/* * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
  scroll-behavior: smooth;
}

body {
  background: #fffaf3;
} */

*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
  scroll-behavior: smooth;
}

html, body{
  width: 100%;
  height: 100%;
  background: #fffaf2; /* same as your page bg */
}

.navbar {
  display: flex;
  justify-content: space-between;
  padding: 20px 60px;
  position: fixed;
  width: 100%;
  background-color: #a8fbac;
  border-radius: 10px;
  z-index: 1;
}

.logo a{
  font-size: 26px;
  font-weight: 600;
  color: #2e7d32;
  text-decoration: none;
}

nav a {
  margin-left: 20px;
  text-decoration: none;
  color: #2e7d32;
  size: 7px;
}

nav a:hover{
  color: #000000;
}

.hero {
  display: inline-block;
  margin-top: 5%;
  padding: 60px;
  width: 100%;
  /* background: linear-gradient(to right, #fff7e6, #ffd180); */
  background-image: url("images/Home.png");
  background-repeat: no-repeat;
  background-size: 100%;

}
.filter button:hover{
  background-color: #2e7d32;
  color: #fffaf3;

}

.hero-text h1{
  color: #fffaf3;
}

.hero-text h1 span {
  color: #2e7d32;
  padding-top: 100px;
}
.hero-text p{
  color: #fffaf3;
}

.hero button {
  margin-top: 20px;
  padding: 12px 25px;
  background: #2e7d32;
  color: white;
  border: none;
  cursor: pointer;
  border-radius: 5px;
}

.hero button:hover{
  background-color: #1c501f;
}

.hero-img  {
  width: 350px;
  height: 170px;
}

.features {
  display: flex;
  justify-content: space-around;
  padding: 40px;
}

.feature {
  background: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 3px 8px 20px gray;
}

.special {
  padding: 60px;
  text-align: center;
  
}

.filter button {
  margin: 10px;
  padding: 8px 18px;
  border-radius: 20px;
  border: 1px solid #2e7d32;
  background: white;
}

.filter .active {
  background: #2e7d32;
  color: white;
}

.grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  margin-top: 40px;
}

.card {
  background: white;
  border-radius: 12px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
  padding: 15px;
  z-index: 0;
}

.card img {
  width: 100%;
  border-radius: 10px;
}

.card:hover{
  transform: scale(1.1);
}

.card button{
  margin-top: 20px;
  padding: 12px 25px;
  background: green;
  color: white;
  border: none;
  cursor: pointer;
  border-radius: 8px;
}
.card button:hover{
  background-color: #1e5421;
  
}

.reserve {
  background: #1b1b1b;
  color: white;
  padding: 60px;
  text-align: center;
}

.reserve input {
  padding: 10px;
  margin: 10px;
}

.reserve button {
  background: #2e7d32;
  color: white;
  border: none;
  padding: 12px 25px;
}

.reserve button:hover{
  background-color: #1c501f;
}

/* footer {
  text-align: center;
  padding: 20px;
  background: #222;
  color: white;
} */

/*footer*/
.crave-footer{
  background:#1f1f1f;
  color:#ddd;
  margin-top:40px;
  font-family:'Poppins', sans-serif;
}

.footer-container{
  display:flex;
  justify-content:space-between;
  padding:40px 80px;
  flex-wrap:wrap;
}

.footer-box{
  width:30%;
  min-width:250px;
}

.footer-box h3{
  color:#fff;
  margin-bottom:15px;
}

.footer-box p, 
.footer-box a{
  color:#bbb;
  font-size:14px;
  text-decoration:none;
  display:block;
  margin-bottom:8px;
}

.footer-box a:hover{
  color:#4CAF50;
}

.footer-bottom{
  text-align:center;
  padding:15px;
  background:#181818;
  color:#aaa;
  font-size:14px;
}

/* Mobile Responsive */
/* ===== Responsive Layout ===== */

/* Tablets */
@media (max-width: 1024px) {
  .navbar {
    padding: 15px 30px;
  }

  .features {
    flex-wrap: wrap;
    gap: 20px;
  }

  .grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero {
    padding: 40px 30px;
    background-size: cover;
  }
}

/* Mobile */
@media (max-width: 600px) {
  .navbar {
    flex-direction: column;
    align-items: flex-start;
  }

  nav {
    margin-top: 10px;
  }

  nav a {
    margin: 10px 10px 0 0;
    display: inline-block;
  }

  .hero {
    margin-top: 80px;
    padding: 30px 20px;
    text-align: center;
  }

  .features {
    flex-direction: column;
    padding: 20px;
  }

  .grid {
    grid-template-columns: 1fr;
  }

  .card:hover {
    transform: none;
  }

  .reserve {
    padding: 30px 20px;
  }

  .reserve input {
    width: 100%;
  }
}

@media(max-width:768px){
  .footer-container{
    padding:30px;
  }
  .footer-box{
    width:100%;
    margin-bottom:25px;
  }
}


/* Loader Section */
/* Loader Section */
.loader-container {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100%;
  background: #fff6e8;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  transition: opacity 0.5s ease;
}

.loader-container img {
  height: 40rem;
}
