@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;
    font-size: 1.6rem;

  }
  
  .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;
}


/* Styles for screens 998px and below */
@media (max-width: 998px) {
 
  .navbar a {
    font-size: 15px; /* Slightly smaller font size */
  }

  .flex {
    margin: 0; /* Reset margin */
  }

  .flex a {
    margin: 5px 0; 
  }

  .occ-auxillary {
    font-size: 14px; 
    padding-right:4%;
  }

  .occ-auxillary a#booking {
    margin: 10px 0; 
  }
}



/* 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 {
  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;
  }
}




/* END OF HAMBURGER CSS */


/*Content 2*/

/* landingPage */


.content2 {
  position: relative;
  width: 100%; 
  height: 550px; 
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(to right, rgb(8, 31, 23), rgba(0, 0, 0, 0)), url('/images/UP1.png');
  background-size: cover;
  background-position: bottom center;
}

.content2 .textbox {
  position: relative;
  max-width: 560px;
  margin-top: 80px;
  margin-left: 65px;
}

.content2 .textbox h2  {
 color: white;
 font-size: 60px;
 line-height: 1.4em;
 font-weight: 500;
}

.content2 .textbox p  {
  color:white;
  margin-top: 10px;
  font-weight: 400;
 
 }

.content2 .textbox a  {
  display: inline-block;
  margin-top: 20px;
  padding: 8px 16px;
  background:white;
  color: #015834;
  border-radius: 40px;
  font-weight: 500;
  letter-spacing: 1px;
  text-decoration: none;
}

.content2 .content-image {
  width: 10px;
  margin-top: 40px;
  display: flex;
  justify-content: flex-end;
  padding-right: 50px;
  flex: 1 1 17rem;
  margin-right: 10px;
  margin-left: auto;

}


.content2 .content-image  img {
  max-width: 500px;

}

/* Media queries  */
@media (max-width: 1200px) {
  .content2 {
    height: 500px;
  }
  
  .content2 .textbox {
   
    margin-top: 40px;
  }
  
  .content2 .textbox h2 {
    font-size: 48px;
  }
  
  .content2 .textbox p {
    font-size: 16px;
  }
  
  .content2 .textbox a {
    font-size: 15px;
  }
  
  .content2 .content-image {
    padding-right: 20px;
  }
}

@media (max-width: 992px) {
  .content2 {
    height: 500px;
    
  }
  
  .content2 .textbox {
    padding-top: 20%;
    
  }
  
  .content2 .textbox h2 {
    font-size: 36px;
  }
  
  .content2 .textbox p {
    font-size: 14px;
  }
  
  .content2 .textbox a {
    font-size: 12px;
    padding: 6px 12px;
  }
  
  .content2 .content-image {
    object-position: center
  }
}

@media (max-width: 768px) {
  .content2 {
    background: linear-gradient(to right, rgb(8, 31, 23), rgba(0, 0, 0, 0)), url('../images/UP.png');
    background-size: cover; 
    background-position: center; 
    height: 500px;
  }
  
  .content2 .textbox {
    margin-top: 70px;
  }
  
  .content2 .textbox h2 {
    font-size: 28px;
  }
  
  .content2 .textbox p {
    font-size: 12px;
  
  }
  
  .content2 .textbox a {
    font-size: 14px;
    padding: 4px 8px;
  }

  .content2 .content-image {
    width: 100%;
    height: auto;
    object-fit: cover; /* Ensure image covers the area */
    object-position: center; /* Adjust as needed */
  }
}

@media (max-width: 480px) {
  .content2 {
    height: 500px;
  }
  
  .content2 .textbox {
    padding-top: 43%;
    padding-right: 13%;
    margin-left: 20px;
   
  }
  
  .content2 .textbox h2 {
    font-size: 24px;
  }
  
  .content2 .textbox p {
    font-size: 10px;
  }
  
  .content2 .textbox a {
    font-size: 12px;
    padding: 2px 6px;
  }
  
  .content2 .content-image {
    width: 100%;
    height: auto;
    object-fit: cover; /* Ensure image covers the area */
    object-position: right;
  }
}


/*Content 3*/


.content3{
  display: grid;
  grid-template-columns: repeat(2,1fr);
  align-items: center;
  padding-top: 150px;
  gap: 1rem;
  

}

.content3-img {
  overflow: hidden;
}

.content3-img img{
  padding-left: 50px;
  width:90%;
  height:auto;
  box-sizing: border-box;
}

.content3-txt h5{
  font-size: 22px;
  font-weight: 600;
  color:#015834;
  text-transform: uppercase;
  letter-spacing: 5px;
  margin-bottom: 20px;
}

.content3-txt h2{
  font-size: 30px;
  font-weight: 800px;
  line-height: 1.2;
  margin-bottom: 25px;
}

.content3-txt p{
  font-size: 16px;
  font-weight: 500px;
  line-height: 30px;
  margin-bottom: 25px;
  padding-right: 40px;
  
}


.content3-txt a  {
  display: inline-block;
  margin-top: 9px;
  padding: 8px 16px;
  background: #015834;
  color: white;
  border-radius: 40px;
  font-weight: 500;
  letter-spacing: 1px;
  text-decoration: none;
  border: 2px solid transparent;
  border-radius: 40px;
  transition: border-color 0.3s ease;
}

.content3-txt a:hover {
  background-color: white; 
  color: #015834;
  border-color: #015834;
}


/* Media Queries */
@media (max-width: 1200px) {
  .content3 {
    gap: 0.5rem;
  }

  .content3-img img {
    padding-left: 30px;
    width: 80%;
  }

  .content3-txt p {
    padding-right: 20px;
  }
}

@media (max-width: 992px) {
  .content3 {
    grid-template-columns: 1fr;
    padding-top: 100px;
    gap: 20px;
  }

  .content3-img img {
    padding-left: 26%;
    width: 70%;
    margin: 0 auto;
  }

  .content3-txt {
    text-align: center;
    padding: 0 20px;
  }

  .content3-txt p {
    padding-right: 0;
  }
}

@media (max-width: 768px) {
  .content3 {
    padding-top: 80px;
  }

  .content3-img img {

  
    margin: 0 auto;
    
  }

  .content3-txt h2 {
    font-size: 25px;
  }

  .content3-txt p {
    font-size: 14px;
  }

  .content3-txt a {
    padding: 6px 12px;
  }
}

@media (max-width: 576px) {
  .content3 {
    padding-top: 60px;
  }

  .content3-img img {
    
    padding-right: 20%;
    margin: 0 auto;
   width: 100%;

  }

  .content3-txt h2 {
    font-size: 20px;
  }

  .content3-txt p {
    font-size: 12px;
    line-height: 24px;
  }

  .content3-txt a {
    padding: 5px 10px;
    font-size: 14px;
  }
}



/*Content 4*/

.content4{
  padding-top: 170px;
  padding-left: 50px;
  padding-right: 40px;
}

.content4-txt{
   text-align: center;
}

.content4-txt h2{
  font-size: 60px;
  font-weight: 800;
  color: #015834;
}

.selections-contents {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(250px,auto));
  align-items: center;
  gap: 3rem;
  margin-top: 5rem;
}

.box{
  position: relative;


}

.box img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
  filter: brightness(70%);
  transition: all .3s cubic-bezier(.499,.05,.55,.95);
  will-change: filter;
  display: block;
  margin: auto;
}

.box h6{
  position: relative;
  left: 25px;
  bottom: 95px;
  font-size: 18px;
  font-weight: 500;
  color: white;
}

.box h4{
  position: absolute;
  left: 25px;
  bottom: 65px;
  font-size: 20px;
  font-weight: 700;
  margin: auto;
  color:white;
 
}

.box img:hover{
  filter: brightness(90%) ;
  transform: scale(1.04);
  cursor: pointer;
}

/* Media queries for responsiveness */

@media (max-width: 768px) {
  .content4-txt h2 {
    font-size: 40px; 
  }
}

@media (max-width: 480px) {
  .content4-txt h2 {
    font-size: 40px; 
  }
}




/*Content 5*/
.C5{
  display: grid;
  grid-template-columns: repeat(2,1fr);
  align-items: center;
  padding-top: 290px;
  padding-left: 190px;
  gap: 4rem;
  
  
}

.C5-img {
  overflow: hidden;
}

.C5-img img{
  width:70%;
  height:80%;

}

.C5-text h5{
  font-size: 22px;
  font-weight: 600;
  color:#015834;
  text-transform: uppercase;
  letter-spacing: 5px;
  margin-bottom: 20px;
}

.C5-text h2{
  font-size: 30px;
  font-weight: 800px;
  line-height: 1.2;
  margin-bottom: 25px;
}

.C5-text p{
  font-size: 16px;
  font-weight: 500px;
  line-height: 30px;
  margin-bottom: 25px;
  padding-right: 40px;
  
}


.C5-text a  {
  display: inline-block;
  margin-top: 9px;
  padding: 8px 16px;
  background: #015834;
  color: white;
  border-radius: 40px;
  font-weight: 500;
  letter-spacing: 1px;
  text-decoration: none;
  border: 2px solid transparent;
  border-radius: 40px;
  transition: border-color 0.3s ease;
}

.C5-text a:hover {
  background-color: white; 
  color: #015834;
  border-color: #015834;
}

/* Media Queries */
@media (max-width: 1200px) {
  .C5 {
    padding-left: 100px;
    gap: 2rem;
  }

  .C5-img img {
    width: 80%;
  }

  .C5-text p {
    padding-right: 20px;
  }
}

@media (max-width: 992px) {
  .C5 {
    grid-template-columns: 1fr;
    padding-left: 10px;
    padding-top: 100px;
    gap: 20px;
  }

  .C5-img img {
   
    margin: 0 auto;
    padding-left: 20%;
  }

  .C5-text {
    text-align: center;
    padding: 0 20px;
  }

  .C5-text p {
    padding-right: 0;
  }
}

@media (max-width: 768px) {
  .C5 {
    padding-left: 10px;
    padding-top: 80px;
    gap: 10px;
  }

  .C5-img img {
    margin: 0 auto;
    padding-right: 2%;
  }

  .C5-text h2 {
    font-size: 25px;
  }

  .C5-text p {
    font-size: 14px;
  }

  .C5-text a {
    padding: 6px 12px;
    margin-bottom: 10px;
  }
}

@media (max-width: 576px) {
  .C5 {
    padding-left: 8px;
    padding-top: 60px;
    gap: 5px;
  }

  .C5-img img {
    width: 100%;
    margin: 0 auto;
    padding-right: 20%;
  }

  .C5-text h2 {
    font-size: 20px;
  }

  .C5-text p {
    font-size: 12px;
    line-height: 24px;
  }

  .C5-text a {
    padding: 5px 10px;
    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 10px 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;
  }
}

