:root {
  --dark-bg: #2B1B12;       
  --primary-color: #8c5c3f;   
  --secondary-color: #f49bcc; 
  --text-color: #ffffff;       
  --accent-colour: #6B4226;     
}

body {
  font-family: 'Nunito', sans-serif;
  margin: 0;
  background: var(--dark-bg);
  color: var(--text-color);
}

h1{
  font-size: 2rem;
  font-family: 'Parisienne', cursive;
  font-weight:400;

}

.nav__links{
  display:none;
}
.nav {
  position: fixed;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.1rem 2rem;
  background: var(--accent-colour);
  color: var(--text-color);
   z-index: 4;
}

.nav__toggle {
  background: none;
  border: none;
  color: var(--text-color);
  font-size: 2rem;
  cursor: pointer;
  margin-right: 10%;
  
}

.sidepanel .closebtn {
  position: absolute;
  right: 25px;
  font-size: 2em;
  margin-right: -7%;
  margin-top: -15%;
}
.sidepanel {
  height: 100%;
  width: 0;
  position: fixed;
  z-index: 1;
  top: 0;
  left: 0; 
  background-color: var(--primary-color);
  overflow-x: hidden;
  transition: 0.3s;
  padding-top: 60px;
  left: auto;
  right: 0;
  z-index: 5;
}
.sidepanel a {
  padding: 10px 30px;
  text-decoration: none;
  font-size: 1.2rem;
  color: var(--text-color);
  display: block;
  transition: 0.3s;
}
.sidepanel a:hover {
  color: var(--secondary-color);
}


#hero {
  position: relative;
  width: 100%;
  height: 100vh; 
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0; 

}

.mySlides {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; 
  opacity: 0;        
  transition: opacity 1s ease-in-out;
}
.mySlides.active {
  opacity: 1;
}

.hero::before {
  content: "";
  position: absolute;
  top: 100px;
  left: 0;
  width: 100%;
  height: calc(100% - 100px);
  box-shadow: inset 0 0 200px rgba(0,0,0,0.7);
  background: rgba(0,0,0,0.4);
  z-index: 1;
}
.hero__content {
  position: relative;  
  text-align: center;
  color: white;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 90%;
   z-index: 3;
}
.hero__content h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  font-family: 'Poppins', sans-serif;
  text-shadow: 2px 2px 10px rgba(0,0,0,0.7);
}
.hero__content p {
  font-size: 1.7rem;
  margin-bottom: 2rem;
  font-family: 'Parisienne', cursive;
  text-shadow: 1px 1px 6px rgba(0,0,0,0.6);
}

#hero .btn {
  background: var(--secondary-color);
  color: var(--dark-bg);
  padding: 0.8rem 1.5rem;
  border: none;
  border-radius: 8px;
  font-weight: bolder;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 0 15px rgba(0,0,0,0.4);
  transition: all 0.3s ease;
   z-index: 2;
}
#hero .btn:hover {
  background: var(--text-color);
  box-shadow: 0 0 25px rgba(0,0,0,0.6);
}


#carousel-section {
  text-align: center;
  padding: 3rem 1rem;
  background-color: var(--text-color);
}
#carousel-section h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  font-weight: 900;
  font-family: 'Poppins', sans-serif;
  color: var(--dark-bg);
}
.carousel-subtitle {
  font-size: 1.2rem;
  color: var(--secondary-color);
  margin-bottom: 2rem;
  font-style: italic;
    margin-top: 5%;
}
.carousel-wrapper {
  position: relative;
  max-width: 90%;
  margin: auto;
  overflow: hidden;
}
.carousel {
  display: flex;
  transition: transform 0.5s ease-in-out;
  margin-top: 5%;
}
.carousel__item {
  min-width: 100%;
  text-align: center;
}
.carousel__item img {
  width: 250px;
  height: 250px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
   background-color: var(--primary-color)
}
.carousel__item img:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 25px rgba(0,0,0,0.5);
}
.carousel__item h3 {
  margin-top: 10px;
  font-size: 1.1rem;
  color: var(--dark-bg);
  font-family: 'Poppins', sans-serif;
}

.carousel__btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.6);
  color: white;
  border: none;
  font-size: 1.5rem;
  padding: 0.3rem 0.6rem;
  cursor: pointer;
  border-radius: 50%;
}

.carousel__btn:hover {
  background: var(--dark-bg);
}

.carousel__btn.prev { left: 10%; }
.carousel__btn.next { right: 10%; }


#services-section {
  text-align: center;
  padding: 4rem 1rem;
  background-color: var(--dark-bg);
  color: var(--text-color);
}

#services-section h2 {
  font-size: 2rem;
  margin-bottom: 4rem;
  font-weight: 900;
  font-family: 'Poppins', sans-serif;
}

.services-subtitle {
  font-size: 1.2rem;
  color: var(--secondary-color);
  margin-bottom: 4rem;
  font-style: italic;
}

.services-carousel {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 1rem;
   -ms-overflow-style: none;  
  scrollbar-width: none; 
}

.service-card {
  flex: 0 0 auto;
  width: 220px;
  background: var(--primary-color);
  border-radius: 12px;
  padding: 1rem;
  text-align: center;
  scroll-snap-align: start;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.service-card img {
  width: 180px;
  height: 180px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 0.8rem;
  background: var(--text-color);
}

.service-card h3 {
  margin: 0.5rem 0;
  font-size: 1.1rem;
  font-family: 'Poppins', sans-serif;
}

.price {
  font-size: 1rem;
  color: var(--dark-bg);
  margin-bottom: 0.8rem;
}

.service-card .btn-book-now {
  background: var(--secondary-color);
  color: var(--dark-bg);
  padding: 0.6rem 1rem;
  border-radius: 8px;
  font-weight: bold;
  text-decoration: none;
  transition: 0.3s;
  display: inline-block;
  cursor: pointer;
}

.service-card .btn-book-now:hover {
  background: var(--text-color);
  color: var(--dark-bg);
}


#faq {
  margin: 0 auto;
  padding: 3rem 1rem;
  text-align: center;
  background-color: var(--text-color);
}

#faq h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
   margin-top: 0.5rem;
  font-family: 'Poppins', sans-serif;
  color: var(--dark-bg);
}

.faq__item {
  margin-bottom: 1rem;
  text-align: left;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.faq__item button {
  width: 100%;
  padding: 1rem;
  background: var(--secondary-color);
  color: var(--text-color);
  border: none;
  text-align: left;
  font-size: 1rem;
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.arrow {
  transition: transform 0.3s ease;
}

.faq__item.open .arrow {
  transform: rotate(90deg); 
}

.faq__item button:focus {
  outline: none;
}

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background: var(--text-color);
  color: var(--dark-bg);
  padding:0 1rem;
}

.faq__item.open .faq__answer {
  padding: 1rem 1rem;
}


#about {
  padding: 3rem 1rem;
  background-color: var(--primary-color);
  color: var(--text-color);
}

.about-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 2rem;
  margin: 0 auto;
}

.about-image img {
  max-width: 200px;
  border-radius: 12px;
  object-fit: cover;
}

.about-text {
  flex: 1;
}

#about h1 {
  font-size: 3rem;
  margin-top: 1rem;
  text-align: center;
}

.about-text h2 {
  font-size: 2rem;
  font-family: 'Poppins', sans-serif;
  font-weight: lighter;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.about-text p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}


#booking-policy {
  padding: 2rem 1rem;
  
  color: var(--text-color);
  text-align: left;
}

#booking-policy h2 {
  font-size: 2rem;
  font-family: 'Poppins', sans-serif;
  margin-bottom: 5rem;
  text-align: center;
}


#booking-policy ul {
  list-style: none;
  padding-left: 0;
}

#booking-policy li {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 1rem;
  font-size: 1rem;
}


#booking-policy li::before {
  content: '★';
  position: absolute;
  left: 0;
  color: var(--secondary-color);
  font-size: 1.2rem;
  line-height: 1;
}

.booking-txt {
  font-size: 2rem;
  font-family: 'Parisienne', cursive;
  margin-top: 3rem;
  margin-bottom: 2rem;
  text-align: center;
}


.booking-btn-container {
  text-align: center;
  margin-top: 5rem;
}

.btn-book {
  display: inline-block;
  background: var(--secondary-color);
  color: var(--dark-bg);
  padding: 0.8rem 1.5rem;
  border-radius: 8px;
  font-weight: bold;
  text-decoration: none;
  transition: 0.3s;
}

.btn-book:hover {
  background: var(--text-color);
  color: var(--dark-bg);
}

#contact-section {
  padding: 3rem 1rem;
  background-color: var(--dark-bg);
  color: var(--text-color);
}

#contact-section h2 {
  font-size: 2rem;
  font-family: 'Poppins', sans-serif;
  text-align: center;
  margin-bottom: 4rem;
}

.contact-container {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin: 0 auto;
}

.contact-item {
  flex: 1 1 250px;
  background: var(--primary-color);
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  text-align: left;
}

.contact-item h3 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  font-family: 'Poppins', sans-serif;
  text-align: center;
}

.contact-item p {
  margin-bottom: 1rem;
  font-size: 1rem;
  color: var(--text-color);
}

.contact-item a {
  color: var(--secondary-color);
  text-decoration: none;
  font-weight: bold;
}

.btn-map {
  display: inline-block;
  margin-top: 1rem;
  background: var(--secondary-color);
  color: var(--dark-bg) !important;
  padding: 0.6rem 1rem;
  border-radius: 8px;
  transition: 0.3s;
}

.btn-map:hover {
  background: var(--text-color);
  color: var(--dark-bg);
}

.footer {
  background-color: var(--accent-colour);
  color: var(--text-color);
  padding: 1.5rem 1rem;
  text-align: center;
}

.footer-container {
  max-width: 1000px;
  margin: 0 auto;
}

.footer p {
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

.footer-socials {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
}

.footer-socials a img {
  width: 30px;   
  height: 30px;
  transition: transform 0.3s ease;
}

.footer-socials a img:hover {
  transform: scale(1.2);
}



@media (min-width: 700px)  {

  .gallery__grid {
    grid-template-columns: repeat(2, 1fr);
  } 
 
  .hero__img {
    object-position: 50% 20%; 
  }
    .mySlides {

  object-fit:scale-down;   
}
.carousel__btn {
  font-size: 2rem;
}
.about-image img {
  max-width: 400px;
}

#about h1 {
  margin-bottom: -10rem;
  font-size: 3rem;
  text-align: center;
}

 .contact-container {
    flex-direction: column;
    gap: 1.5rem;
  }

  .contact-item {
    text-align: center;
  }

}
@media (min-width: 895px) {
  .nav {
   width:94%;
  }
   .nav__toggle {
    display: none;
  }
  .nav__links {
    display: flex; 
    gap: 1.5rem;  
  }

  .nav__links a {
    color: white;
    text-decoration: none;
    font-weight: 600;
     position: relative;
    transition: 0.3s ease;
  }
   .nav__links li {
   list-style-type: none;
   }
  .nav__links a:hover {
    color: var(--secondary-color);
  }
nav ul li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0;
  height: 2px;
  background-color: var(--secondary-color);
  transition: width 0.3s ease;
}


nav ul li a:hover {
  color: var(--secondary-color);
}

nav ul li a:hover::after {
  width: 100%;
}


}

@media (min-width: 1024px) {
 
h1{
  font-size: 2.4rem;
}
   .nav__links li {
   list-style-type: none;
   }
  .gallery__grid {
    grid-template-columns: repeat(3, 1fr);
  }
   .nav__toggle {
    display: none;
  }
 
   .nav {
   width:96%;
  }

  .mySlides {

  object-fit:scale-down;   

}

.about-image img {
  max-width: 600px;
}
.about-text h2 {
  font-size: 3rem;
  margin-top:0.5rem;
  margin-bottom: 4rem;
  font-style: italic;
}

.about-text p {
  font-size: 1rem;
  line-height: 1.5;
  margin-bottom: 2rem;
}

  #booking-policy {
    padding: 5rem 2rem;
  }

  #booking-policy h2 {
    font-size: 2.2rem;
  }

  #booking-policy ul {
    display: flex;
    flex-direction: column;
    align-items: center; 
  }

  #booking-policy li {
    width: 50%; 
    font-size: 1.1rem;
    padding-left: 2rem; 
    text-align: left; 
    margin-bottom: 1.2rem;
  }

  .booking-btn-container {
    margin-top: 3rem;
  }

  .btn-book {
    padding: 1rem 2rem;
    font-size: 1.1rem;
  }

#about h1 {
  margin-bottom: -18rem;
  font-size: 4rem;
}

.contact-item {
  max-width: 40%;
  padding: 2rem 10rem;
  align-self: center;
  
}
}

