@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;
    line-height: 1.6;
    padding: 0;
    margin: 0;

  }
  
  .occ-globalNav {
    position: relative;
  }
  
  .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 15px;
    
  }
  
  .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: 14px; /* 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);
  z-index: 9999;
}

.hamburger.active + .mobile-nav {
  display: flex;
}


.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;
  }
}


.slider, .content {   /* So that the navbar in mobile overlaps*/
  z-index: 1; 
}

/* END OF HAMBURGER CSS */


/* landingPage */

/* Content 6 */

.content6 {
  padding-top: 48px; 
}
.slider{
  height: 100vh;
  margin-top: -50px;
  position: relative;
}
.slider .list .item{
  position: absolute;
  inset: 0 0 0 0;
  overflow: hidden;
  opacity: 0;
  transition: .5s;
  
}
.slider .list .item img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.slider .list .item::after{
  content: '';
  width: 100%;
  height: 60%;
  position: absolute;
  left: 0;
  bottom: 0;
  background-image: linear-gradient(
      to top, #000000 10%, transparent
  );
}
.slider .list .item .content{
  position: absolute;
  left: 10%;
  top: 5%;
  width: 500px;
  max-width: 80%;
  z-index: 1;
  color: white;
}
.slider .list .item .content p:nth-child(1){
  text-transform: uppercase;
  letter-spacing: 10px;
  color: white;
}
.slider .list .item .content h2{
  font-size: 60px;
  margin: 0;
}
.slider .list .item.active{
  opacity: 1;
  z-index: 10;
}
@keyframes showContent {
  to{
      transform: translateY(0);
      filter: blur(0);
      opacity: 1;
  }
}
.slider .list .item.active p:nth-child(1),
.slider .list .item.active h2,
.slider .list .item.active p:nth-child(3){
  transform: translateY(30px);
  filter: blur(20px);
  opacity: 0;
  animation: showContent .5s .7s ease-in-out 1 forwards;
}
.slider .list .item.active h2{
  animation-delay: 1s;
}
.slider .list .item.active p:nth-child(3){
  animation-duration: 1.3s;
}

.thumbnail {
  position: absolute;
  bottom: 50px;
  z-index: 11;
  display: flex;
  gap: 10px;
  width: 100%;
  height: 250px;
  padding: 0 50px;
  box-sizing: border-box;
  justify-content: center;
  top: 55%;
  left: 35%;
  white-space: nowrap;
  overflow-x: auto;
  scrollbar-width: none;
  scroll-behavior: smooth;
}

.thumbnail::-webkit-scrollbar {
  display: none; 
}

.thumbnail::-webkit-scrollbar{
  width: 0;
}
.thumbnail .item{
  width: 150px;
  height: 220px;
  filter: brightness(.5);
  transition: .5s;
  flex-shrink: 0;
}
.thumbnail .item img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}
.thumbnail .item.active{
  filter: brightness(1.2);
}
.thumbnail .item .content{
  position: absolute;
  inset: auto 10px 10px 10px;
  color: white;
}



@media screen and (max-width: 678px) {
  .thumbnail{
      justify-content: start;
  }
  .slider .list .item .content h2{
      font-size: 60px;
  }
  /* First image */
  .slider .list .item:nth-child(1) img {
    object-position: 60% 20%; /* 50% from left, 20% from top */
  }
  /* Second image */
  .slider .list .item:nth-child(2) img {
    object-position: 55% 0%; /* 30% from left, 50% from top */
  }
  /* Third image */
  .slider .list .item:nth-child(3) img {
    object-position: 10% 40%; /* 70% from left, 40% from top */
  }
  /* Fourth image */
  .slider .list .item:nth-child(4) img {
    object-position: 87% 30%; /* 10% from left, 30% from top */
  }
  /* Fifth image */
  .slider .list .item:nth-child(5) img {
    object-position: 90% 60%; /* 90% from left, 60% from top */
  }
}





/*Content 7*/
.content7 {
  padding: 50px 20px;
  background-size: cover;
  background-position: center;
}
h1 {
    color: #065A2D;
    font-size: 3em;
    margin-bottom: 30px;
    text-align: center;
}
.services {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
}
.service {
    width: 300px;
    background: white;
    
    padding: 20px;
}
.service img {
    width: 100px;
    height: auto;
    display: block;
}

.center {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 50%;
}

.service h3 {
    color: #065A2D;
    margin: 1px 0 11px;
    text-align: center;
}
.service p {
    color: #555;
    font-size: 0.9em;
    text-align: center;
}
@media (max-width: 600px) {
    .services {
        flex-direction: row;
        align-items: center;
    }

    h1 {
      color: #065A2D;
      font-size: 2em;
      margin-bottom: 30px;
      text-align: center;
  }
}
   

/* Content 8 */
.content8 {
  background-color: #065A2D;
  padding: 50px 20px;
}

.popular-menu {
  text-align: center;
  color: white;
}

.popular-menu h2 {
  font-size: 28px;
  color: white;
  font-weight: bold;
  margin-bottom: 10px;
}

.popular-menu p {
  font-size: 16px;
  color: #e0e0e0;
  margin-bottom: 30px;
}

.menu-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  max-width: 800px;
  margin: auto;
  padding: 20px;
}

.menu-item {
  display: flex;
  align-items: center;
  background: white;
  padding: 15px;
  border-radius: 15px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
  overflow: hidden;
}

.menu-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.menu-item img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-right: 15px;
  flex-shrink: 0;
}

.menu-item span {
  font-size: 18px;
  color: #065A2D;
  font-weight: bold;
  text-align: left;
  flex: 1;
}

/* Responsive Design */
@media (max-width: 800px) {
  .menu-container {
    grid-template-columns: 1fr;
  }
}


/* Content 9 */

.exclusive-offer {
  padding: 50px 20px;
  background-color: #ffffff;
}

.exclusive-container {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 1100px;
  margin: auto;
  gap: 40px;
}

.exclusive-image img {
  width: 100%;
  max-width: 400px;
  border-radius: 15px;
}

.exclusive-text {
  max-width: 500px;
}

.exclusive-text h2 {
  font-size: 28px;
  color: #015834;
  font-weight: bold;
  margin-bottom: 10px;
}

.exclusive-text p {
  font-size: 16px;
  color: #666;
  margin-bottom: 10px;
}

.exclusive-text p a {
  color: #015834;  /* Dark green for better contrast */
  font-weight: bold;
 
}

.exclusive-text a {
  text-decoration: none;
  color: white;
  
}

.buttons {
  margin-top: 20px;
}

.btn {
  display: inline-block;
  background-color: #015834;
  color: white;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  margin-right: 10px;
  transition: background-color 0.3s, transform 0.3s;
}

.btn:hover {
  background-color: #017d4a;  
  transform: translateY(-3px);  
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2); 
}

@media (max-width: 768px) { 
  .exclusive-text h2 {
    font-size: 24px;
  }
}

@media (max-width: 800px) {
  .exclusive-container {
      flex-direction: column;
      text-align: center;
  }

  .exclusive-image img {
      max-width: 300px;
  }
}


/*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;
  }
}

