
*{
    margin: 0;
    padding: 0;
}

body {
    font-family: "Sora", sans-serif;
    background-color: black;
    color: #fff;
    
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 30px;
    }
    


/* Logo Container */
.logo {
    display: flex;
    align-items: center;
    }
  
    
.imga {
    width: 150px;  
    height: auto; 
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 10px;
}


.nav-links li {
    position: relative;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    padding: 10px 15px;
    transition: background-color 0.3s;
}
.li-down i{
    color: white;
  
  }

  .li-down svg:hover{
    color: rgb(245, 14, 14);
    margin-left: 3rem;
    
  }
  .nav-links a:hover {
  color: #ff4533;
  }
  
/* Submenu Styles */
.nav-links li ul {
    display: none; 
    position: absolute;
    top: 100%; 
    background-color:#fff;
    z-index: 999;
    list-style: none;
    width: auto; 
}

#list-sub li>ul{
    display:none;
  }
#list-sub li:hover>ul{
    display:block;
}

/* Show all submenu background color to white on hover */
.nav-links li:hover ul {
    display: block;
    margin-top: 10%;
}


.nav-links li ul li {
    padding: 5px 10px;
    white-space: nowrap;
}
    
    .nav-links li ul li a {
    color:black;
    /* background-color: #fff;  */
    
    }

   .nav-links li ul li a:hover {
        background-color: #fff;  
        color: #000;  
   }

   
/* Show all submenu background color to white on hover */

.nav-links li:hover ul li a {
    color: #000; 
    font-size: 13px;
    font-weight: 900;
    padding-left: 0;
    
    }
   
    
/* Individual submenu item hover effect */
.nav-links li ul li a:hover {
    color: #ff4533;
    }
    

    
/* Sub-Submenu (Dancers) Styling */
.nav-links li ul li ul {
    display: none;
    position: absolute;
    top: 0;
    left: 100%;
    padding: 20px 1px;
    padding-left: -5px;
    z-index: 999;
    list-style: none;
    width: auto;
    margin-left: 2%;
}

.nav-links li ul li:hover > ul {
    display: block;
    }
    
    .nav-links li ul li ul li a {
    color: #000;
    }
    
    .nav-links li ul li ul li a:hover {
    color: #ff4533;
    }


    .book-now1 {
        padding: 10px 20px;
        background-color: #ff4533;
        color: white !important; 
        border: 1px solid  #ff4533 !important;
        font-size: 16px;
        cursor: pointer;
        transition: background-color 0.3s, color 0.3s;
        white-space: nowrap;
        text-decoration: none;
        }
        
        .book-now1 :hover {
        background-color: transparent;
        color: #fff!important;
        /* border: 2px solid #ff4533; */
        }

        
/* Responsive Styles */

/* Tablet and Laptop View */
@media (max-width: 1024px) {
    header {
    padding: 15px 20px;
    }
    
    .nav-links {
    gap: 15px;
    }
    
    .nav-links a {
    font-size: 16px;
    color: white;
    }
    
    .book-now {
    font-size: 16px;
    padding: 8px 15px;
    }
}


/* Mobile View */
@media (max-width: 768px) {
    header {
    display: flex;
    flex-direction: row;
    justify-content: space-between; 
    align-items: center;
    padding: 10px 15px;
    width: 90%;
    }
    .imga {
    width: 190px;
    height: auto;
    }
    .nav-links {
    display: none; 
    flex-direction: column;
    align-items: center;
    gap: 10px;
    position: absolute;
    top: 70px; /* Set below the header */
    left: 0;
    width: 100%; /* Full width for mobile */
    background-color: #000;
    padding: 20px 0;
    transition: height 0.3s ease; /* Smooth transition */
    z-index: 999;
    }
    .nav-links.active {
        display: flex; /* Show menu when active */
        }
        
        .nav-links a {
        font-size: 14px;
        padding: 8px 10px;
        }
        
        .book-now1 {
        display: none;
        }
        
        /* Hamburger menu icon */
        .menu-icon {
        display: flex;
        flex-direction: column;
        cursor: pointer;
        }
        .menu-icon .bar {
        width: 25px;
        height: 3px;
        background-color: #fff;
        margin: 4px 2px;
        transition: 0.3s;
        }
        
        .nav-links li ul{
          left:-100px;
        }  
}




@media (max-width: 480px) {
   .imga {
    width: 120px; 
    height: auto;
    }
    .nav-links {
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
    }
    
    .nav-links a {
    font-size: 14px;
    padding: 8px 10px;
    }
    .menu-icon .bar {
    width: 20px;
    height: 1.5px;
    padding: 1px;
    }
}






 /* header container styling*/

 .container1 {
  display: flex;
 
  justify-content: space-between;
  width: 100%;
  margin: 65px 60px  65px 80px;
  gap: 60px;
}


.left-section {
  flex: 50%;
  opacity: 0;
  transform: translateX(-100%);
  transition: all 1s ease-out;
}

.right-section {
  
  flex: 50%;
  opacity: 0;
  transform: translateY(100%);
  transition: all 1s ease-out;
  
}

.right-section img {
  max-width: 90%;
  height: 80%;
}

#mainHeading {
  opacity: 0;
  transition: opacity 1s ease-out;
  font-size: 36px;
  margin-bottom: 20px;
}  




/* General Footer Styling */
.footer_container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  background-color: #111;
  padding: 40px 5%;
  color: #fff;
}

.footer-col {
  width: 20%;
  margin-bottom: 50px;
}

.footer-col h4 {
  font-size: 18px;
  color: #ffffff;
  text-transform: capitalize;
  margin-bottom: 20px;
  font-weight: 600;
  position: relative;
}

.footer-col h4::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  background-color: #ffffff;
  height: 2px;
  width: 50px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li:not(:last-child) {
  margin-bottom: 10px;
}

.footer-col ul li a,
.footer-col ul li {
  font-size: 16px;
  color: #bbbbbb;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-col ul li a:hover {
  color: red; /* Changes text color on hover */
}

.contact-info li {
  display: flex;
  align-items: center;
  color: #bbbbbb;
  font-size: 16px;
  margin-bottom: 10px;
}

.contact-info li i {
  margin-right: 10px;
  color: #bbbbbb;
}

.btn {
  display: inline-block;
  padding: 10px 20px;
  background-color: #ec410d;
  color: #ffffff;
  text-decoration: none;
  text-align: center;
  border-radius: 1px;
  transition: background-color 0.3s ease;
}

.btn:hover {
  background-color: #ffffff;
  color: #ec410d;
}
/* Two columns on medium screens (768px or smaller) */
@media (max-width: 768px) {
  .footer-col {
    width: 45%;
    margin-bottom: 20px;
  }
}

/* One column on very small screens (576px or smaller) */
@media (max-width: 576px) {
  .footer_container {
    display: grid;
    grid-template-columns: repeat(2, 1fr); 
    gap: 50px;
    margin: 1% 0 40% 5%;
  }
  .footer-col {
    width: 100%;
    margin-bottom: 20px;
    text-align: left;
  }
  .footer-col h4 {
    text-align: left;
  }
  .contact-info li {
    justify-content: flex-start;
  }
}

@media(max-width:480px){
  .container1 {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 87%;
    margin: 28px 20px 65px 20px;
    gap: 60px;
    text-align: center;
}
}