@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: 78.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: 2px 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: 110px;
  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;
  }
}




header {
  text-align: center;
  padding: 20px;

}

h1 {
  margin: 0;
  font-size: 2.5em;
  color: #015834;
}

main {
  padding: 20px;
}

section {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 40px;
  max-width: 1200px;
  width: 100%;
}

section .content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 20px;
}

section .image {
  margin-bottom: 20px;
}

section .image img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
}

section .text {
  max-width: 800px;
}

h2 {
  font-size: 1.8em;
  margin-bottom: 10px;
  color: #015834;
}

p {
  line-height: 1.6;
  font-size: 1.1em;
  margin-bottom: 20px;
}

/* Responsive Design */
@media (min-width: 768px) {
  section {
      flex-direction: row;
  }
  
  section .content {
      flex-direction: row;
      align-items: flex-start;
  }

  section .image {
      flex: 1;
      padding: 20px;
      margin: 0;
  }

  section .text {
      flex: 1;
      padding: 20px;
      text-align: left;
  }
}

/*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;
    }
  }
  