*,
::before,
::after{
    box-sizing:border-box;
}

:root{
 /* === Brand Colors === */
 --bg-white:#f5f5f5f5;
 --bg-dark:#141414f5;
--brand-green:#072A15;
--brand-green2:#2ddd45;
--bgcolor:#3b6641;

 /* === Text Colors for Dark Backgrounds === */
  --text-light:       #FFFFFF;   /* primary white text */
  --text-light-muted: #E0E0E0;   /* muted white text */
  --text-light-accent:#C7FAD6;   /* light greenish accent */
  --text-light-subtle:#B0B0B0;   /* subtle gray text */

  /* === Text Colors for Light Backgrounds === */
  --text-dark:        #111111;   /* primary dark text */
  --text-dark-muted:  #444444;   /* muted dark text */
  --text-dark-accent: #0F1F17;   /* dark greenish accent */
  --text-dark-subtle: #777777;   /* subtle gray for light bg */
}

html{
    font-size:62.5%;
}

body{
  /*  background-color: var(--bgcolor); */
     background-color: var(--bg-dark); /* Set the overall background to white */
      
}

.w-90{
    width:90%;
    max-width:1200px; 
}

        /* Hero Section Styles */
        .hero-section {
            min-height: 100vh;
            display: flex;
            width:100%;
          /*  max-width:1400px; */
            align-items: center;
            justify-content: center;
            position: relative;
           background-image: url('../images/home-page/hero.jpg'); 
           /*  background-image: url('../images/slider/slider1.jpg'); */
            background-size: cover;
            background-position: center;
            text-align: center;
            padding-top: 60px; /* Add padding to prevent content from being hidden by fixed navbar */
            margin-bottom: 0; /* Consistent margin-bottom, 20px */
        }

        /* Dark overlay for the hero section */
        .hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
         background-color: rgba(0, 0, 0, 0.4); 
            z-index: 1;
        }

      /*  .top-story {
            position: absolute;
            top: 20px;
            left: 10%;
            transform: translateX(-50%);
            width:200px;
            background-color: var(--nav-color);
            color: white;
            padding: 0.5rem 1rem;
            border-radius: 0.5rem;
            font-size: 1.2rem;
            word-spacing:8px;
            z-index: 3; 
        } */

        @media (max-width: 768px) {
            .top-story {
                left: 25%;
                width: 150px;
                font-size: 1rem;
            }
        }

        /* Content container within the hero section */
        .hero-content-container {
            position: relative;
            z-index: 2;
            max-width: 1000px;
            margin: 0 auto;
            padding: 1rem;
        }

        .hero-content-box {
            padding: 2.4rem;
            border-radius: 1.6rem;
        }

        .hero-title {
            font-size: 4.5rem;
            font-weight: bold; 
            line-height: 1.2;
            margin-bottom: 1.6rem;
            color:var(--text-light);
            
          }

        @media (max-width:767px){
            .hero-title{
                font-size: 3.2rem;
            }
        }
        

        .hero-subtitle {
            font-size: 2rem;
            color: var(--text-light);
            margin-bottom: 2rem;
        }

         @media (max-width:768px){
            .hero-subtitle{
                font-size: 1.6rem;
            }
        }
        

        /* Custom button style */
        .btn-outline-custom {
            display: inline-block;
            background-color: var(--brand-green2);
       /*     border: 3px solid white; */
            border-radius: 1.2rem;
            color: black;
            font-weight: bold;
            padding: 0.8rem 1.8rem;
            text-decoration: none;
            font-size: 1.6rem;
            margin-top: 1rem;
            transition: all 0.3s ease;
        }

        @media (max-width:768px){
            .btn-outline-custom{
                font-size: 1.2rem;
                padding: 0.6rem 1.4rem;
            }
        } 

        /* Hover effect for the custom button */
        .btn-outline-custom:hover {
            background-color: var(--brand-green);
            color: var(--text-light-muted);
        }

          /* end of hero-section */

/* Welcome Box */
    

    .welcomeInnerBox {
        width:80%;
        max-width:1200px;
         


    }


    .welcomeBoxItem-img {
        width:400px;
        height:400px; 
       
    }
    
    .welcomeBoxItem-img.first {
        background-image: url('../images/home-page/welcome1.jpg'); 
        background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
        
    }
    .welcomeBoxItem-img.second {
        background-image: url('../images/home-page/welcome2.jpg'); 
        background-size: contain;
        background-position: center;
        background-repeat: no-repeat;

    }

    .h3-black{
        font-size: 2.4rem;
        color:var(--text-dark);
    }
    .h3-white{
        font-size: 2.4rem;
        color:var(--text-light);
        z-index:2;
       
    }

    .h2-white{
        font-size: 3.2rem;
        color:var(--text-light);
        text-align:center;
        margin:2rem auto;
    }

    .h2-black{
        font-size: 3.2rem;
        color:var(--text-dark);
        text-align:center;
        margin:2rem auto;
    }

    .p-black{
        font-size: 1.6rem;
        color:var(--text-dark);
    }

    .p-white{
        font-size: 1.6rem;
        color:var(--text-light);
    }

    /* services */
    .servicesBox{
        width:90%;
        height:auto;
        max-width: 1200px;
        position:relative;

    }


    .servicesboxItem{
        width:400px;
        height:450px;
        position:relative;
    }
/* Base styles for all service items */
.servicesboxItem {
  position: relative;
  height: 450px; /* Keep fixed height */
  background-size: cover;
  background-position: center;
  overflow: hidden;
}


/* Hidden text by default */
.servicesboxItem .overlay-text {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.5); /* Optional dark overlay */
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}

/* Show on focus or hover */
.servicesboxItem:hover .overlay-text,
.servicesboxItem:focus .overlay-text {
  opacity: 1;
}


.servicesboxItem:before{
    content: ''; /* required to make ::before render */
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;   /* cover the entire parent */
  height: 100%;
  background-color: rgba(0, 0, 0, 0.33); /* semi-transparent overlay */
  z-index: 1;    /* sits above background */
}

/* Individual backgrounds */
.servicesboxItem:nth-child(1) {
  background-image: url('../images/services/bar.jpg');
}
.servicesboxItem:nth-child(2) {
  background-image: url('../images/services/live-band.jpg');
}
.servicesboxItem:nth-child(3) {
  background-image: url('../images/services/club1.jpg');
}
.servicesboxItem:nth-child(4) {
  background-image: url('../images/services/event-hosting.jpg');
}
.servicesboxItem:nth-child(5) {
  background-image: url('../images/services/parking-lot.jpg');
}
.servicesboxItem:nth-child(6) {
  background-image: url('../images/services/restaurant.jpg');
}

/* Kounda lounge */
    .KoundaLounge{
        width:90%;
        max-width:1200px; 
    
    }

    .KoundaLounge-img {
        width:100%;
        height: auto; /* ✅ allows image to shrink */
    max-height: 400px; /* optional: limits how tall it can get */

    }

    .KoundaLounge-txt{
        width:80%;
        margin:auto;
        

    }

    .smallButton{
        width:150px;
        height:auto;
        background-color: var(--brand-green2);
        color:var(--text-dark);
        font-size:1.6rem;
        font-weight:700;
        text-align:center;
        border-radius:15px;

    }
    .smallButton-a{
        color:black;
        text-decoration:none;
    }

    .smallButton-a:hover{
        background-color:var(--brand-green);
        color:var(--text-light);
    }

     .smallButton:hover{
        background-color:var(--brand-green);
        color:var(--text-light);
    }

    .button{
        width:100%;
        height:auto;
        background-color: var(--brand-green2);
        color:var(--text-dark);
        font-size:1.6rem;
        font-weight:700;
        text-align:center;
        border-radius:15px;

    }

    .button:hover{
        background-color:var(--brand-green);
        color:var(--text-light);
    }

    .button-txt{
        padding:5px 10px; 
    }

    .pointer{
        cursor:pointer;
    }

    /* contact us */
    form{
        width:100%;
        height:auto;
        max-height: 400px;
        font-size:1.6rem;
        color:var(--text-light);
      /*  background-color: #072A15; */
    }



    .custom-container {
    width: 90%;
    max-width: 1200px;
}

.contact-us-img {
    width: 100%;
    height: auto;
    max-height: 400px;
    background-image: url("../images/home-page/bookings.jpg");
    background-size: cover;
    background-position: center;
    aspect-ratio: 3 / 2; /* Keeps shape responsive */
}

/* video */
.video-section {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  margin:0 20px;
}

.video-row {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  gap: 20px;
  scroll-behavior: smooth;
  -ms-overflow-style: none; /* IE/Edge */
  scrollbar-width: none; /* Firefox */
}
.video-row::-webkit-scrollbar {
  display: none;
}

.video-background {
  flex: 0 0 auto;
  width: 500px;
  height: 350px;
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
}
.video-background video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.scroll-btn {
  position: absolute;
  top: 10px;
  background: rgba(0,0,0,0.5);
  color: white;
  border: none;
  padding: 8px 12px;
  font-size: 20px;
  cursor: pointer;
  z-index: 2;
}
.scroll-btn.prev { left: 10px; }
.scroll-btn.next { right: 10px; }



/* slider */


/* news & Events*/
.news-events
{
  height:500px;
  padding:0 ;
  position:relative;
  margin:20px auto;
  overflow: hidden;
  border-radius:15px;
  

}

.slider-wrapper{
  display:flex;
  height:100%;
  transition: transform 0.5s ease-in-out;
  
  
}



.news-box{
  width: 100%;
  
  height:100%;
  flex-shrink:0;
  border-radius:15px;
  position: relative;

  display:flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  
}

.news-box img{
  width:100%;
  height: 100%;
  border:0cm;
  transition: 0.3s;
  gap: 10px;
}


.news-box::before {
  content: '';
  position: absolute;
  width:100%;
  height:100%;

  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 1; /* Ensure it appears behind the content */
}

.news-title {
  color:var(--text-primary);
  font-size: 3rem;
  z-index: 2;
  
}


.news-box p {
  color: var(--text-secondary);
  font-size: 2rem;
  text-align: center;
  z-index: 2;
  
}





.news-box:nth-child(1){
  background:url("../images/slider/slider1.jpg") no-repeat center center;
  background-size: cover;
}

.news-box:nth-child(2){
  background:url("../images/slider/slider2.jpg") no-repeat center center;
  background-size: cover;
}

.news-box:nth-child(3){
  background:url("../images/slider/slider3.jpg") no-repeat center center;
  background-size: cover;
}

.news-box:nth-child(4){
  background:url("../images/slider/slider4.jpg") no-repeat center center;
  background-size: cover;
}


/* end of slider */