/* Reset basic styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
}

body {
  font-family: 'Arial', sans-serif;
}


p{
  font-size: 18px!important;
}
/* Navbar */
.navbar {
  display: flex;
  justify-content: space-around !important;
  align-items: center;
  background: #333;
  padding: 10px 20px;
  flex-wrap: wrap;
}

.logo img {
  height: 100px;
  padding-left: 10px;
}

.nav-links {
  list-style: none;
  display: flex;
  flex-direction: row;
  gap: 15px;
}

.nav-links li a {
  text-decoration: none;
  color: white;
  font-weight: 500;
  position: relative;
  padding-bottom: 5px;
}

.nav-links li a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 2px;
  background-color: white;
  transition: width 0.3s ease-in-out;
}

.nav-links li a:hover::after,
.nav-links li a.active::after {
  width: 100%;
}


.reservation-btn {
  background-color: #111;
  color: white;
  padding: 10px 20px;
  border: none;
  cursor: pointer;
}

.reservation-btn:hover {
  background-color: #555;
}

/* Toggle button hidden by default */
.toggle-btn {
  display: none;
  font-size: 28px;
  background: none;
  color: white;
  border: none;
  cursor: pointer;
}

/* Responsive */
@media (max-width: 768px) {
  .toggle-btn {
    display: block;
    /* order: -1; Move to the beginning in flexbox */
    margin-right: auto;
    /* Push it to the left */
    padding: 0 20px;
  }

  .navbar {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .nav-links {
    flex-direction: column;
    width: 100%;
    display: none;
    /* Hidden initially */
    background-color: #333;
    padding: 10px 0;
  }

  .nav-links li {
    text-align: center;
    padding: 10px 0;
  }

  .nav-links.show {
    display: flex;
  }

  .reservation-btn {
    width: 100%;
    margin-top: 10px;
  }
}


/* Hero Section */
.hero-section {
  position: relative;
  background-image: url('/img/images/Banner.jpeg');
  background-size: cover;
  background-position: center;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.hero-content {
  color: white;
  text-align: center;
  background: rgba(0, 0, 0, 0.5);
  padding: 20px;
  border-radius: 10px;
  position: relative;
  top: -160px;
}

.hero-content h1 {
  font-size: 2.5rem;
}

/* Booking Form */
.booking-form {
  position: absolute;
  bottom: 160px;
  background: rgb(60 52 52 / 90%);
  padding: 20px;
  border-radius: 10px;
  width: 90%;
  color: white;
  max-width: 900px;
}

form {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}

.form-group {
  flex: 1 1 150px;
  margin: 10px;
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-weight: 600;
  margin-bottom: 5px;
}

.form-group input {
  padding: 8px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.book-btn {
  background: #ffcc00;
  color: black;
  border: none;
  padding: 12px 30px;
  font-weight: bold;
  border-radius: 5px;
  cursor: pointer;
  margin-top: 10px;
}

.book-btn:hover {
  background: red;
}


/* Tablets and small laptops (768px to 1024px) */
@media (max-width: 1024px) {
  .logo img {
    height: 80px;
    padding-left: 10px;
  }

  .nav-links li {
    margin: 0 5px;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .booking-form {
    width: 95%;
  }
}

/* Mobile devices (up to 767px) */
@media (max-width: 767px) {
  .navbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .logo {
    align-self: center;
  }

  .reservation-btn {
    align-self: flex-end;
    margin-top: 10px;
  }

  .nav-links {
    display: none;
    /* You can replace this with a hamburger menu later */
    flex-direction: column;
    width: 100%;
  }

  .hero-section {
    height: auto;
    padding: 50px 0;
  }

  .hero-content h1 {
    font-size: 1.8rem;
  }

  .booking-form {
    position: static;
    width: 90%;
  }

  .hero-content {
    top: -22px;
  }

  .form-group {
    width: 100%;
    margin: 10px 10px;
  }
}

/* Very small devices (up to 480px) */
@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 1.5rem;
  }

  .reservation-btn {
    width: 100%;
    padding: 10px;
    font-size: 16px;
  }

  .book-btn {
    width: 100%;
    padding: 12px;
  }
}




/* section-2 */

.about-section {
  /* padding: 50px 20px; */
  /* max-width: 1200px; */
  margin: auto;
  background: #fff;
}

.about-header {
  text-align: center;
  margin-bottom: 20px;
  margin-top: 40px;

}

.about-header h2 {
  font-size: 1.8rem;
  margin-bottom: 10px;
  font-weight: 300;
}

.about-header p {
  font-size: 1rem;
  margin-bottom: 5px;
  color: #555;
}

.about-header a{
  color: black;
}
.about-header a:hover{
  color: red;
}

.contact-info {
  font-size: 0.9rem;
  color: #333;

}

.about-description {
  margin-top: 20px !important;
  margin-bottom: 20px !important;
  max-width: 1300px;
  margin: auto;
  padding: 30px;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  border-radius: 10px;

}

.about-description h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  text-align: center;
  font-weight: 500;

}

.about-description p {
  font-size: 1rem;
  line-height: 1.6;
  color: #555;
}

.about-image {
  background-image: url('/img/images/Dining.jpeg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  /* important for scroll effect */
  height: 400px;
  /* or any height you want */
  width: 100%;
}


.location-info {
  font-size: 1rem;
  margin: 40px 0;
  max-width: 1300px;
  margin: auto;
  padding: 30px;
  color: #555;
}

@media (max-width: 768px) {
  .about-header h2 {
    font-size: 1.5rem;
  }

  .about-description h3 {
    font-size: 1.3rem;
  }
}


/* ends here */

.slider-wrapper {
  width: 90%;
  margin: 50px auto;
  position: relative;
}

.slider-container {
  overflow: hidden;
  position: relative;
}

.slider {
  display: flex;
  gap: 20px;
  transition: transform 0.5s ease-in-out;
}

.slide {
  flex: 0 0 calc((100% - 40px) / 3);
  /* 3 slides visible, 20px gap between */
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  /* height: 50vh; */
  margin: 10px 0px;
}

.slide:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  border: 1px solid #ddd;
}

.slide img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.slide h3 {
  padding: 10px;
  font-size: 18px;
  text-align: center;
}

/* Arrows */
.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.6);
  color: white;
  border: none;
  font-size: 30px;
  padding: 10px 14px;
  cursor: pointer;
  border-radius: 50%;
  z-index: 10;
}

.prev {
  left: -40px;
}

.next {
  right: -40px;
}

/* Dots */
.dots {
  text-align: center;
  margin-top: 20px;
}

.dot {
  display: inline-block;
  width: 12px;
  height: 12px;
  margin: 5px;
  background-color: #bbb;
  border-radius: 50%;
  cursor: pointer;
}

.dot.active {
  background-color: #333;
}


/* ends here */

.slider-wrapper {
  width: 90%;
  margin: 50px auto;
  position: relative;
}

.slider-container {
  overflow: hidden;
  position: relative;
}

.slider {
  display: flex;
  gap: 20px;
  transition: transform 0.5s ease-in-out;
}

.slide {
  flex: 0 0 calc((100% - 40px) / 3);
  /* 3 slides visible */
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  padding: 10px;
  text-align: center;
}


.slide img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px 10px 0 0;
}

.slide h3 {
  margin: 10px 0;
  font-size: 20px;
}

.slide p {
  font-size: 14px;
  color: #666;
  padding: 0 10px;
}

/* Arrows */
.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  /* background-color: rgba(0, 0, 0, 0.7); */
  color: white;
  border: none;
  font-size: 15px;
  /* padding: 12px; */
  cursor: pointer;
  border-radius: 50%;
  z-index: 10;
}

.prev {
  left: 15px;
}

.next {
  right: 15px;
}


/* Dots */
.dots {
  text-align: center;
  margin-top: 20px;
}

.dot {
  display: inline-block;
  width: 12px;
  height: 12px;
  margin: 5px;
  background-color: #bbb;
  border-radius: 50%;
  cursor: pointer;
}

.dot.active {
  background-color: #333;
}


:root {
  --slides-per-view: 3;
  --gap: 20px;
}

@media (max-width: 1024px) {
  :root {
    --slides-per-view: 2;
  }
}

@media (max-width: 600px) {
  :root {
    --slides-per-view: 1;
  }
}

.slider {
  display: flex;
  gap: var(--gap);
  transition: transform 0.5s ease-in-out;
}

.slide {
  flex: 0 0 calc((100% - (var(--gap) * (var(--slides-per-view) - 1))) / var(--slides-per-view));
}

/* ends here */

/* CSS */
.experience-section {
  width: 100%;
  padding: 0;
  margin: 0;
  background: #fff;
  overflow: hidden;
}

.experience-image img {
  /* width: 80%; */
    height: 70vh;
      display: block;
  /* object-fit: cover; */
  margin: auto;
}

.experience-content-wrapper {
  max-width: 1200px;
  margin: 50px auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 40px;
  padding: 37px 20px;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.experience-content {
  flex: 1 1 500px;
  text-align: center;
}

.experience-content h2 {
  font-size: 32px;
  margin-bottom: 20px;
  font-weight: 300;
}

.experience-content p {
  font-size: 16px;
  color: #555;
  margin-bottom: 15px;
  line-height: 1.6;
}

.experience-side-image {
  flex: 0 0 300px;
  text-align: center;
}

.experience-side-image img {
  width: 250px;
  height: 250px;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* --- Responsive Design --- */
@media (max-width: 768px) {
  .experience-content-wrapper {
    flex-direction: column;
    margin: 30px 0;
  }

  .experience-content h2 {
    font-size: 28px;
  }

  .experience-content p {
    font-size: 15px;
  }

  .experience-side-image img {
    width: 200px;
    height: 200px;
  }
}

@media (max-width: 480px) {
  .experience-content h2 {
    font-size: 24px;
  }

  .experience-content p {
    font-size: 14px;
  }

  .experience-side-image img {
    width: 180px;
    height: 180px;
  }
}



/* ends here */

.amenities {
  padding: 60px 20px;
  max-width: 1100px;
  margin: 0 auto;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.amenities h1 {
  text-align: center;
  font-size: 40px;
  margin-bottom: 50px;
  color: #2c3e50;
  position: relative;
}

.amenities h1::after {
  content: '';
  width: 80px;
  height: 4px;
  background: #3498db;
  display: block;
  margin: 10px auto 0;
  border-radius: 2px;
}

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.column {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.column p {
  font-size: 18px;
  background: #ecf0f1;
  padding: 12px 20px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  transition: 0.3s ease;
}

.column p:hover {
  background: #3498db;
  color: #fff;
  cursor: default;
}

.column p::before {
  margin-right: 10px;
  font-size: 22px;
}

/* Responsive */
@media (max-width: 768px) {
  .amenities-grid {
    grid-template-columns: 1fr;
  }
}


/* Footer styles */
.footer {
  background-color: #333;
  color: #eee;
  text-align: center;
  padding: 40px 20px 20px;
  margin-top: 60px;
}

.footer-top {
  margin-bottom: 20px;
}

.hotel-name {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 8px;
}

.hotel-address {
  font-size: 16px;
  margin-bottom: 20px;
}

.contact-info p {
  margin: 5px 0;
  font-size: 16px;
}

.social-icons {
  margin-top: 15px;
}

.social-icons a {
  display: inline-block;
  margin: 0 10px;
  background: #555;
  padding: 10px;
  border-radius: 50%;
  transition: background 0.3s ease;
}

.social-icons a:hover {
  background: #3498db;
}

.footer-bottom {
  border-top: 1px solid #555;
  padding-top: 15px;
  font-size: 14px;
  margin-top: 20px;
}

/* Responsive Footer */
@media (max-width: 600px) {

  .contact-info,
  .social-icons {
    flex-direction: column;
  }
}



/* Animation Classes */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  animation: fadeIn 1s ease-out forwards;
}

.delay-1 {
  animation-delay: 0.3s;
}

.delay-2 {
  animation-delay: 0.6s;
}

.delay-3 {
  animation-delay: 0.9s;
}

/* Add these to elements that should fade in when scrolled into view */
.scroll-fade {
  opacity: 0;
}

.scroll-fade.visible {
  opacity: 1;
  animation: fadeIn 0.8s ease-out forwards;
}
/* 
html {
  scroll-behavior: smooth;
}

* {
  will-change: transform, opacity;
} */


/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) {
  .booking-form {
    width: 90%;
  }
  
  .hero-content h1 {
    font-size: 2rem;
  }
  
  .about-description, .location-info {
    padding: 30px;
  }
  
  .amenities-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {
  .navbar {
    flex-wrap: nowrap;
    padding: 10px 40px;
  }
  
  .logo img {
    height: 100px;
  }
  
  .nav-links {
    display: flex;
    flex-direction: row;
    width: auto;
        margin-bottom: 0rem !important;
  }
  
  /* .nav-links li a {
    padding: 0 15px;
  } */
  
  .toggle-btn {
    display: none;
  }
  
  .reservation-btn {
    display: block;
    padding: 10px 20px;
  }
  
  .hero-section {
    padding: 40px;
  }
  
  .booking-form {
    position: absolute;
    bottom: 160px;
    max-width: 800px;
  }
  
  form {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  
  .form-group {
    flex: 1 1 150px;
    margin: 10px;
  }
  
  .about-section {
    padding: 40px;
  }
  
  .slider-wrapper {
    width: 90%;
  }
  
  .experience-content-wrapper {
    flex-direction: row;
    padding: 40px;
  }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {
  .navbar {
    padding: 10px 60px;
  }
  
  .hero-content h1 {
    font-size: 2.5rem;
  }
  
  .about-description, .location-info {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .experience-image img {
    width: 80%;
    height: 70vh;
  }
  
  .amenities {
    max-width: 1100px;
    padding: 60px 40px;
  }
}

/* X-Large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
  .navbar {
    padding: 10px 80px;
  }
  
  .hero-section {
    padding: 60px;
  }
  
  .booking-form {
    max-width: 900px;
  }
  
  .about-section {
    padding: 60px;
  }
  
  .experience-content-wrapper {
    max-width: 1200px;
  }
}

/* XX-Large devices (larger desktops, 1400px and up) */
@media (min-width: 1400px) {
  .navbar {
    padding: 10px 100px;
  }
  
  .hero-section {
    padding: 80px;
  }
  
  .about-section {
    padding: 80px;
  }
}