@import url('https://fonts.googleapis.com/css?family=Poppins:200,300,400,500,600,700,800,900&display=swap');


*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  list-style-type: none;
  text-decoration: none;
}


html {
  font-size: 62.5%;
  font-family: 'Poppins', sans-serif;;
  scroll-behavior: smooth;
}



@media (min-width: 1440px) {
  html {
    zoom: 1.3;
  }
}

@media (min-width: 2560px) {
  html {
    zoom: 1.5;
  }
}

@media (min-width: 3860px) {
  html {
    zoom: 2.3;
  }
}

::-webkit-scrollbar {
  width: 1.3rem;
}

::-webkit-scrollbar-thumb {
  border-radius: 1rem;
  background: #ffffff;
  transition: all 0.5s ease-in-out;
}

::-webkit-scrollbar-thumb:hover {
  background:#015834 ;
}

::-webkit-scrollbar-track {
  background: #ffffff;
}
body {
    margin: 0;

  }
  
  
  .occ-globalNav {
    position: relative;
  }
  
  .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid lightgray; 
  }
  
  .navbar a {
    margin-left: 30px; 
    color: black;
    font-weight: 500;
    font-size: 16px;
    padding: 10px;
    text-decoration: none;
    transition: all 0.3s ease;

  }

  .navbar a.active {
    border-bottom: 2px solid #015834;
}


  .flex {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: 0 25px;

  }

  .flex a#bestsellers:hover {
    color: #015834;
  }

  .flex a#updates:hover {
    color: #015834;
  }

  .flex a#services:hover {
    color: #015834;
  }
  
  
  
  .occ-auxillary {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 16px;

  }
/*
another design //
  .occ-auxillary a# {
    padding: 7px 16px;
    border:2px solid #015834;
    border-radius: 40px;
    color: black;
    font: weight 500px; ;
}
*/
.occ-auxillary a#booking {
  padding: 7px 16px;
  border:2px solid #015834;
  border-radius: 40px;
  background-color: #015834;
  color: white;
  font: weight 500px; 
  margin: 0 25px;
}

.occ-auxillary a#store:hover {
  color: #015834;
}


.occ-auxillary a#booking:hover {
    background-color: white; 
    color: #015834;
}




/* START OF HAMBURGER CSS */
/* Hide the hamburger icon initially */
.hamburger {
  display: none;
  font-size: 2rem;
  cursor: pointer;
}

/* Hide the hamburger icon initially */
.hamburgerClose {
  display: none;
  font-size: 2rem;
  padding-right: 20px;
  cursor: pointer;
}



/* Style the mobile navigation menu */
.mobile-nav {
  font-size: 16px;
  display: none;
  flex-direction: column;
  width: 100%;
  position: absolute;
  top: 90px;
  right: auto;
  left: auto;
  background: white;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.mobile-nav a {
  padding: 10px;
  text-align: center;
  color: black;
  text-decoration: none;

 
}
.mobile-nav a#booking {
  background-color: #015834;
  color: white;
  font-weight: bold;
}
/* Show the mobile navigation menu when screen width is <= 768px */
@media (max-width: 768px) {
  .hamburger {
    display: block;
    margin-right: 20px;
  }

  .mobile-nav {
    display: flex;
  }

  /* Hide other navigation elements in the header */
  .navbar .flex a,
  .occ-auxillary {
    display: none;
  }

  /* Show the logo in the mobile view */
  .navbar .flex .logo {
    display: block;
  }

  /* Adjust the width and alignment of the navigation container */
  .navbar .flex {
    width: 100%;
    justify-content: space-between;
  }
}




  /* content 9*/
/* Container Styles */
.container {
  padding-top: 90px;
  display: flex;
  justify-content: center;
}

/* Booking Form Styles */
.booking-form {
  max-width: 600px;
  margin: 50px auto 60px; 
  background-color: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.booking-form img.logo {
  margin-bottom: 20px;
}

h1 {
  color: #333;
  margin-bottom: 20px;
  font-size: 24px; /* Adjust font size for larger screens */
}

.description {
  margin-bottom: 20px;
  font-size: 14px; /* Adjust font size for better readability */
  font-weight: 400; /* Adjust font weight for normal text */
}

.btn {
  display: inline-block;
  width: auto; /* Adjust width for responsiveness */
  padding: 10px 20px; /* Add horizontal padding for better appearance */
  background-color: #015834;
  color: #fff;
  text-align: center;
  text-decoration: none;
  border-radius: 5px;
  font-size: 18px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.btn:hover {
  background-color: #013f1e;
}

/* Responsive Media Queries */
@media (max-width: 1200px) {
  .booking-form {
    padding: 20px;
  }

  h1 {
    font-size: 22px;
  }

  .description {
    font-size: 12px;
  }
}

@media (max-width: 992px) {
  .booking-form {
    max-width: 90%;
    padding: 15px;
  }

  h1 {
    font-size: 20px;
  }

  .description {
    font-size: 18px;
  }

  .btn {
    width: 90%;
    padding: 12px;
  }
}

@media (max-width: 768px) {
  .booking-form {
    padding: 15px;
  }

  h1 {
    font-size: 18px;
  }

  .description {
    font-size: 15px;
  }

  .btn {
    padding: 9px;
    font-size: 16px;
  }
}

@media (max-width: 576px) {
  .booking-form {
    padding: 10px;
  }

  h1 {
    font-size: 16px;
  }

  .description {
    font-size: 10px;
    line-height: 1.4em;
  }

  .btn {
    padding: 8px;
    font-size: 14px;
  }
}



/*footer*/

.footer{

  margin: 0;
  padding: 70px 0;
  box-sizing: border-box;
  background-color: white;
  

}
 .row{
  display: flex;
  flex-wrap: wrap;
  
 }

.footer-col{
 width: 25%;
 padding: 0 15px;
}

.footer-col li{
  font-size: 18px;
}


.footer-col h4{
  font-size: 20px;
  color: #015834;
  text-transform: capitalize;
  margin-bottom: 30px;
  font-weight: 500;
  position: relative;
 
 }

 .footer-col h4::before{
  content: '';
  position: absolute;
  left: 0;
  bottom: -10px;
  background-color: #015834;
  height: 2px;
  box-sizing: border-box;
  width: 50px;
  
 }

 .footer-col ul li:not(:last-child) {
  margin-bottom: 10px;
 }

 .footer-col ul li a {
  margin-bottom: 16px;
  text-transform: capitalize;
  color: black;
  text-decoration: none;
  font-weight: 300;
  color: black;
  display: block;
  transition: all 0.3s ease;
 }

 
 .footer-col ul li a:hover{
  color: #015834;
  padding-left: 8px;
 }

 .footer-col .social-links a{
  display: inline-block;
  height: 32px;
  width: 34px;
  background-color: rgba(44, 43, 43, 0.2);
  margin: 0 11px 10px 0;
  text-align: center;
  line-height: 30px;
  border-radius: 50%;
  color: #015834;
  transition: all 0.5s ease;
 }

 .footer-col .social-links a:hover{
  color: white;
  background-color: #015834;

 }

.container3{
  border-top: 2px solid lightgray; 
  max-width: 1170px;
  margin: auto;
  padding-top: 40px;
}




@media (max-width: 768px) {
  .footer .container3 .row .footer-col {
      width: 100%;
      margin-bottom: 30px;
  }
}

