* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
  
body {
  /* font-family: 'Segoe UI', sans-serif; */
  font-family: 'ADLaM Display', cursive;
  background-color: #fdfcfc;
  color: #13272B;
  line-height: 1.6;
}
 
a {
  text-decoration: none;
  color: inherit;
}
 
ul {
  list-style: none;
}
 
.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}
 
/* NAVBAR */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #13272B;
  color: #fff;
  padding: 15px 0;
  z-index: 1000;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}
 
.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
 
.logo-img {
  height: 40px;
  width: auto;
}  
 
.nav-links {
  display: flex;
  gap: 20px;
}
 
.nav-links li a {
  color: #F8F4F0;
  font-weight: 500;
  padding: 5px 10px;
  border-radius: 4px;
  transition: background 0.2s ease;
}
 
.nav-links li a:hover,
.nav-links li a.active {
  background-color: #5B9F99;
}

.navbar,
.nav-links a, .hamburger {
  transition: background-color 0.3s ease, color 0.3s ease;
}


.navbar.footer-touch {
  background-color: #fff !important;
  color: #13272B;
}

.navbar.footer-touch .nav-links li a {
  color: #13272B;
}

.navbar.footer-touch .nav-links li a.active,
.navbar.footer-touch .nav-links li a:hover {
  background-color: #5B9F99;
  color: #fff;
}


.navbar.footer-touch .nav-links {
  background-color: #fff;
}



 
/* HAMBURGER */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}
 
.hamburger div {
  width: 25px;
  height: 3px;
  background-color: #fff;
  transition: all 0.3s ease;
}

.hamburger.active div:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.active div:nth-child(2) {
  opacity: 0;
}
.hamburger.active div:nth-child(3) {
  transform: rotate(-47deg) translate(5px, -5px);
}

@media (max-width: 768px) {
  .navbar .container {
    position: relative;
  }

  .hamburger {
    display: flex;
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
  }

  .nav-links {
    display: none;
    flex-direction: column;
    background: #13272B;
    position: absolute;
    top: 100%;
    right: 0;
    width: 200px;
    padding: 20px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  }

  .nav-links.show {
    display: flex;
  }
}

/* PAGE SPACING */
.page-content {
  padding-top: 3rem;
}

/* BANNERS */
.page-banner {
  background-color: #5B9F99;
  color: #fff;
  padding: 60px 20px;
  text-align: center;
}

.page-banner h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.page-banner p {
  font-size: 1.1rem;
  opacity: 0.95;
}



.icon-done {
    width: 20px;
    height: 20px;
    margin-right: 10px;
    vertical-align: middle;
  }


  
.why-choose {
  padding: 60px 1rem;
  background-color: #F8F4F0;
}

.why-choose-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
}

.why-choose-text {
  flex: 1 1 45%;
}

.why-choose-text h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #13272B;
}

.why-choose-text p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 20px;
  color: #13272B;
}

.why-choose-text ul {
  list-style: none;
  padding-left: 0;
  color: #13272B;
}

.why-choose-text ul li {
  margin-bottom: 10px;
  font-size: 1rem;
}

.why-choose-image {
  flex: 1 1 45%;
  text-align: center;
}
  
.why-choose-image img {
  width: 100%;
  max-width: 27rem;
}
a[href="about.html"], a[href="booking.html"]{
  margin-top: 2rem;
}

@media (max-width: 768px) {
  .why-choose-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .why-choose-text,
  .why-choose-image {
    flex: 1 1 100%;
  }
}



/* for booking and contact*/
.book-now {
  padding: 50px 20px;
  background-color: #F8F4F0;
}

.book-now .container {
  max-width: 1000px;
  margin: 0 auto;
  background-color: #fff;
  border-radius: 12px;
  padding: 1rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.book-now h1 {
  font-size: 2rem;
  margin-bottom: 20px;
  text-align: center;
  color: #13272B;
  font-weight: bold;
}

#booking-form .form-group, .contact-form .form-group {
  margin-bottom: 12px;
}

#booking-form label, .contact-form label  {
  display: block;
  margin-bottom: 5px;
  font-weight: 600;
  color: #13272B;
}

#booking-form input,
#booking-form select, .contact-form input {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 1rem;
  outline: none;
  box-sizing: border-box;
  background-color: #fff;
  transition: border 0.3s;
}

#booking-form input:focus,
#booking-form select:focus, .contact-form input:focus {
  border-color: #5B9F99;
}




.form-group input,
.form-group textarea {
  font-family: 'Segoe UI', sans-serif;
  font-size: 1rem;
  color: #13272B;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 8px;
  width: 100%;
  box-sizing: border-box;
  resize: none;
}

/* Remove spinner arrows from number input (quantity) */
.form-group input [type="number"]::-webkit-outer-spin-button,
.form-group input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #5B9F99; 
  box-shadow: 0 0 5px rgba(91, 159, 153, 0.3);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Style the flatpickr input to inherit your custom font and colors */
.flatpickr-input {
 
  font-size: 1rem;
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #ddd;
  border-radius: 6px;
  box-sizing: border-box;
}
.flatpickr-input:focus {
  border-color: #5B9F99;
}

@media (max-width: 768px) {
  .book-now .container {
    width: 100%;
  }
}


/* BUTTONS */
.primary-btn,
.secondary-btn {
  padding: 12px 25px;
  border: none;
  border-radius: 5px;
  text-align: center;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s;
  font-size: 1rem;
  display: inline-block;
  font-family: inherit;
}

.primary-btn {
  background-color: #5B9F99;
  color: #fff;
}
.primary-btn:hover {
  background-color: #4f8883;
  color: #fff;
}
.secondary-btn {
  background-color: #916445;
  color: #fff;
}
.primary-btn {
  background-color: #5B9F99;
  color: #fff;
  padding: 12px 20px;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px; /* spacing between text and icon */
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.primary-btn:hover {
  background-color: #4f8883;
  color: #fff;
}

.arrow-icon {
  width: 20px; 
  height: 20px;
  transition: transform 0.3s ease;
  transform: rotate(-30deg); 
}

.primary-btn:hover .arrow-icon {
  transform: rotate(0deg); 
}

/* FOOTER */
footer {
  background-color: #13272B;
  color: #F8F4F0;
  padding: 40px 20px;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: space-between;
}

.footer-grid div {
  flex: 1 1 200px;
}

.footer-logo {
  height: 50px;
  margin-bottom: 10px;
}

footer h4 {
  font-size: 1.2rem;
  margin-bottom: 15px;
  color: rgb(255, 0, 0)
}

footer p, footer a {
  font-size: 0.95rem;
  color: #F8F4F0;
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}

footer ul {
  list-style: none;
  padding: 0;
}

footer ul li {
  margin-bottom: 8px;
}

footer .social-icons {
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
}

footer .social-icons img {
  width: 28px;
  height: 28px;
  transition: transform 0.3s ease;
}

footer .social-icons img:hover {
  transform: scale(1.3);
}


.copyright {
  text-align: center;
  padding-top: 20px;
  font-size: 0.85rem;
  color: #F8F4F0;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  margin-top: 20px;
}

@media (max-width: 768px) {
  .footer-grid {
    flex-direction: column;
    gap: 20px;
  }

  footer div {
    text-align: left;
  }
}

.footer-book-now{
  margin-top: 2rem;
}







/* TABLE */
table {
  width: 100%;
  border-collapse: collapse;
  background-color: #fff;
}

thead {
  background-color: #5B9F99;
  color: #fff;
}

th, td {
  padding: 15px;
  text-align: left;
  border-bottom: 1px solid #eee;
}

/* FORM
form input,
form textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 1rem;
}

form textarea {
  resize: vertical;
} */

/* FOOTER */
/* footer {
    background-color: #13272B;
    color: #fff;
    padding: 40px 20px;
    margin-top: 60px;
  }
  
  .footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
  }
  
  footer h4 {
    margin-bottom: 12px;
    color: red; 
  }
  
  footer ul li {
    margin-bottom: 6px;
  }
  
  footer ul li a {
    color: #F8F4F0;
    font-size: 0.95rem;
  }
  
  footer p {
    font-size: 0.95rem;
  }
  
  footer .copyright {
    text-align: center;
    padding-top: 20px;
    font-size: 0.85rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-top: 30px;
} */
/* 
.modal-overlay {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100vh;
background-color: rgba(19, 39, 43, 0.85);
display: flex;
align-items: center;
justify-content: center;
z-index: 9999;
visibility: hidden;
opacity: 0;
transition: opacity 0.3s ease;
}

.modal-overlay.show {
  visibility: visible;
  opacity: 1;
}

.modal {
  background: #fff;
  padding: 30px;
  max-width: 400px;
  width: 90%;
  text-align: center;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  animation: popFadeIn 0.3s ease;
}

.modal h2 {
  color: #13272B;
  margin-bottom: 10px;
}

.modal p {
  margin-bottom: 20px;
  font-size: 1rem;
}

.modal button {
  padding: 10px 20px;
  background-color: #13272B;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
}

.modal button:hover {
  background-color: #5B9F99;
}

body.no-scroll {
  overflow: hidden;
}

@keyframes popFadeIn {
  from {
    transform: scale(0.95);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}


 */


.modal-overlay {
 position: fixed;
 top: 0;
 left: 0;
 width: 100%;
 height: 100vh;
 background-color: rgba(19, 39, 43, 0.85);
 display: flex;
 align-items: center;
 justify-content: center;
 z-index: 9999;
 visibility: hidden;
 opacity: 0;
 transition: opacity 0.3s ease;
}

.modal-overlay.show {
  visibility: visible;
  opacity: 1;
}

.modal {
  background: #fff;
  padding: 30px;
  max-width: 400px;
  width: 90%;
  text-align: center;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  animation: popFadeIn 0.3s ease;
}

.modal h2 {
  color: #13272B;
  margin-bottom: 10px;
}

.modal p {
  margin-bottom: 20px;
  font-size: 1rem;
}

.modal button {
  padding: 10px 20px;
  background-color: #13272B;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
}

.modal button:hover {
  background-color: #5B9F99;
}

body.no-scroll {
  overflow: hidden;
}

.button-group {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.button-group a {
  text-decoration: none;
}

.button-group button {
  padding: 12px 25px;
  background-color: #13272B;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
}

.button-group button:hover {
  background-color: #5B9F99;
}
.home-button{
  background-color: #5B9F99;
}


@keyframes popFadeIn {
  from {
    transform: scale(0.95);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}


