
*{
  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;
  }
}


/* Slider container */


.slider-container {
  position: relative;
  max-width: 105%;
  height: 30%;
  margin:  20px 5px 20px 18px;
  overflow: hidden;   
}
.slider-container img{
          height: 400px;
          width: 1600px;
    }
.slides {
  display: none;
  width: 70%;
}

.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  padding: 16px;
  margin-top: -22px;
  color: white;
  font-weight: bold;
  font-size: 28px;
  transition: 0.6s ease;
  /* border-radius: 0 3px 3px 0; */
  user-select: none;
}
.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

.prev:hover, .next:hover {
  /* background-color: rgba(0, 0, 0, 0.8); */
}

.dots-container {
  text-align: center;
  padding: 12px 17px 20px;
  /* background: #ddd; */
  height: 2px;
  align-items: center;
  justify-content: center;
  
}
.dot {
  cursor: pointer;
  height: 10px;
  width: 10px;
  margin: -2px 2px 0;
  background-color: white;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.active1, .dot:hover {
  background-color: red;
}

/* Fade animation */
.fade {
  animation-name: fade;
  animation-duration: 1.5s;
}

@keyframes fade {
  from {opacity: .4} 
  to {opacity: 1}
}


/* Position the text overlay */
.overlay-text {
position: absolute;
top: 20%;
width: 100%;
color: white;
font-size: 32px;
font-weight: bold;
text-align: center;
text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
z-index: 1; /* Ensures it displays over the image */
}

@media (max-width:480px){

  .slider-container img{
    height: 400px;
    width: 500px;
    
  }
.slider-container{
  max-width: 90%;
}
.overlay-text{
  font-size: 20px;
  width: 63%;
  padding: 15px 60px;
}
}


/*---- imagesliderwithconten ---*/


  .slider-container1 {
  display: flex;
  gap: 5px;
  scroll-behavior: smooth;
  overflow-x: hidden;
  width: 84%;
  cursor: grab; 
  margin-top: 3%;
  margin-left: 8%;
  margin-right: 8%;
  overflow: hidden;
  position: relative;
}


.slider-container1:active {
  cursor: grabbing; /* Cursor when dragging */
}

.slider-item {
  position: relative;
  width: 25%; 
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  gap: 15px;
  transition: transform 0.5s ease; /* Added transition to make the scaling smooth */
}
.img-con{
  flex: 90%;
  object-fit: cover;
}
.slider-item span{
  flex: 5%;
  background: #424242;
  text-align: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 300;
  padding: 15px;
  color: #fff;
}



.img-con img {
  width: 100%;
  height: 150%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.img-con h3{
  font-size: 20px;
  font-weight: 600;
}


.slider-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  opacity: 0;
  transition: opacity 0.5s ease, transform 0.5s ease;
  transform: translateY(100%);
  text-align: center;
  font-size: 16px;
}



.btn1 {
    background-color: #ff4533;  
    color: white;  
    padding: 10px 15px;  
    text-decoration: none;  
    border: 2px solid #ff4533;  
    border-radius: 1px;  
    font-size: 16px;  
    transition: background-color 0.3s ease, color 0.3s ease;  
    position: relative;
    z-index: 10;     

}

.btn1:hover {
    background-color: transparent;  
    color: white;  
    border: 2px solid #ff4533;  
}


.slider-item:hover img {
  transform: scale(1.1);
  opacity: 0; /* Fade out image when hovered */
}

.slider-item:hover .slider-content {
  opacity: 1;
  transform: translateY(0);
}

/* Hide scrollbar */
.slider-container1::-webkit-scrollbar {
  display: none;
}

.slider-container1 {
  -ms-overflow-style: none;  /* IE and Edge */
  scrollbar-width: none;  /* Firefox */
}

.slider-arrow {
        font-size: 25px;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        cursor: pointer;
        z-index: 100;
        display: none;
        color:white;
    }
    
    .slider-arrow-left {
        left: 1px;
    }
    
    .slider-arrow-right {
        right: 1px;
    }
    
    @media (max-width: 480px) {
        .slider-arrow {
            display: block;
            top: 35%;
        }
        
        .slider-item {
            flex: 0 0 100%; /* Take up 100% width of the viewport */
            scroll-snap-align: center; /* Snap to the center of the viewport */
        }
    }

@media (max-width: 480px) {
 .slider-container1 {
  display: flex;
  overflow-x: scroll;
  scroll-snap-type: x mandatory; /* Enable scroll snapping */
}

.slider-item {
  flex: 0 0 100%; /* Take up 100% width of the viewport */
 
  scroll-snap-align: center; /* Snap to the center of the viewport */
  text-align: center;
}
.slider-item h3{
  display: flex;
  flex-direction: column;
  position:absolute;
  padding-bottom: 45%;
  

}
.slider-item img {

  width: 100%;
  height: 90%;
  object-fit: cover;
}
}



 /*---- about us styling -------*/
.about_us_header h1{
  margin-top: 5%;
  text-align: center;
  font-size: 32px;
  font-weight: 600;
  font-family: "Sora", sans-serif;
  color: white;
}

.about_us{
  width :82%;
  height: 36vh;   
  align-items: center;
  margin: 2% 20%;
margin-left: 8%;
margin-right: 8%;
background: #424242;
padding: 1%;
}


.about_us p{
  margin-top: 46px;
  text-align: center;
  font-size: 24px;
  font-family: "Sora", sans-serif;
  color: white;
  width: 70%;
  margin-left: 200px;
}

@media (max-width: 780px)  {
  .about_us_header h1{
    font-size: 20px;
    text-align: center;
  }
}

@media (max-width:480px) {
  
.about_us{
  width :82%;
  height: 55vh;  
 }
.about_us p{
width :82%; 
font-size: 18px;   
align-items: center;
margin: 5% 8%;
}

}


/* ---gallery section styling---- */

/* Container for the rows */
.row {
display: flex;
flex-wrap: wrap;
padding: 10px;
max-width: 1200px;
margin: 0 auto;
/* Center the row on the screen */
}

/* Each column (Always 3-column layout) */
.column {
flex: 1 1 calc(30% - 20px);
/* Adjust to 30% for three columns and account for margins */
box-sizing: border-box;
margin: 1px;
overflow-y: auto;
/* Enable vertical scrolling */
border-radius: 10px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
/* Subtle shadow */
padding: 10px;
/* Padding for content inside the column */
max-height: 1000px;
background: #000;
/* Black background for each column */
scroll-behavior: smooth;
}

/* Hide scrollbar */
.column::-webkit-scrollbar {
display: none;
/* Hide scrollbar for webkit browsers */
}

/* Styling for each gallery item */
.gallery-item {
position: relative;
overflow: hidden;
border-radius: 1px;
background-color: black;
/* Background color for the loading effect */
transform: translateY(50px);
opacity: 0;
transition: opacity 0.4s ease, transform 0.4s ease;
margin: 10px 0;
}

/* Initial loading effect */
.gallery-item.show {
opacity: 1;
transform: translateY(0);
/* Slide-up effect when visible */
}

/* Images with fixed height */
.gallery-item img {
width: 100%;
height: auto;
border-radius: 1px;
object-fit: cover;
/* Ensure the image covers the area while maintaining aspect ratio */
transition: transform 0.4s ease, filter 0.4s ease;
margin-bottom: 10px;
/* Space below each image */
}

/* Hover effect with stronger zoom and less blur */
.gallery-item:hover img {
filter: blur(0.9px);
/* Reduced blur effect */
transform: scale(1.4);
/* Stronger zoom effect */
}

/* Content overlay */
.gallery-content {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
color: white;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
opacity: 0;
transition: opacity 0.4s ease, transform 0.4s ease;
transform: translateY(20px);
}

/* Hover effect to reveal content */
.gallery-item:hover .gallery-content {
opacity: 1;
transform: translateY(0);
}

/* Ensure a minimum column width on small screens (3 columns even if screen size is small) */
@media screen and (max-width: 800px) {
.column {
    flex: 1 1 calc(30% - 20px);
    /* Maintain larger images */
}
}

@media screen and (max-width: 600px) {
.column {
    flex: 1 1 calc(45% - 20px);
    /* Slightly increase size for very small screens */
}
}


/*--- MENU - SECTION  STYLING ---- */

.ourmenu_header h1{
  margin-top: 4%;
  text-align: center;
  font-size: 32px;
  font-weight: 600;
  font-family: "Sora", sans-serif;
  color: white;

}

.pdfleft {
/* flex: 100%; */
display: flex;
flex-direction: column;
gap: 10px;
font-size: 20px;
background: #424242;
padding:  1% 1%;
margin: 2% 8%;
}

.pdfleft p{
  font-size: 24px;
  padding: 0 110px;
}
.pdfleft h2{
  text-align: center;
}

.click-but {
  margin:0 530px;
  list-style: none;
  background-color: red;
  padding: 10px; /* Adjust padding for consistent spacing */
  width: 10%;
  text-align: center;
  cursor: pointer;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white; /* Add contrasting color for text */
  border-radius: 1px; /* Optional: rounded corners */
  box-sizing: border-box; /* Ensures padding doesn't affect width */
}

.click-but ul {
display: none;
position: absolute;
top: 100%;
left: 0;
margin: 0;
padding: 0;
list-style: none;
width: 100%;
}

.click-but:hover ul {
display: block;
}

.click-but ul li {
background: white;
padding: 5%;
width: 90%;
font-weight: bold;
font-size: 15px;
color: black;
cursor: pointer;
}

.click-but ul li:hover {
color: red;
}

@media(max-width:480px){
  .ourmenu_header h1{
    
    font-size:20px;
  }
  .pdfleft h2{
    font-size:20px;
    width: 78%;
    padding: 15px 42px;
  }
  
  
.pdfleft p{
  font-size: 18px;
  padding: 0 36px;
  padding: 12px 22px;
  text-align: center;
}

  }

/* Popup Styling */
.popup {
display: none;
position: fixed;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
background:#424242;
padding: 30px;
border-radius: 10px;
width: 90%;
max-width: 400px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
z-index: 1000;
text-align: left;
}

.popup h2 {
margin-top: 0;
font-size: 24px;
color: white;
text-align: center;
}

.popup p {
margin: 15px 0 20px;
color: white;
text-align: center;
}

/* Form Styling */
.popup form {
display: flex;
flex-direction: column;
gap: 15px;
}

.popup form label {
font-weight: bold;
font-size: 14px;
color: #aaa5a5;
}

.popup form input[type="text"],
.popup form input[type="tel"] {
padding: 10px;
font-size: 14px;
border: 1px solid #ccc;
border-radius: 5px;
width: 100%;
box-sizing: border-box;
}

/* Submit and Close Buttons */
.popup form button[type="submit"] {
padding: 10px 0;
background: red;
color: white;
border: none;
cursor: pointer;
border-radius: 5px;
font-weight: bold;
}

.popup form button[type="submit"]:hover {
background: #218838;
}

.popup form button[type="button"] {
margin-top: 10px;
padding: 10px 0;
background: #dc3545;
color: white;
border: none;
cursor: pointer;
border-radius: 5px;
font-weight: bold;
}

.popup form button[type="button"]:hover {
background: #c82333;
}

/* Overlay */
.overlay {
display: none;
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(0, 0, 0, 0.5);
z-index: 999;
}

@media (max-width:480px){
 .ourmenu_header h1{
  font-size: 20px;
 }
 

.click-but  {
  margin: 0 71px 0 105px;
  padding: 12px 54px;
}
}

/* General Footer Styling */
.footer_container {
display: flex;
flex-wrap: wrap;
justify-content: space-between;
background-color: #111;
padding: 40px 6%;
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-left: 5%; */
  margin: 1% 0 42% 5%;
}
.footer-col {
  width: 100%;
  margin-bottom: 20px;
  text-align: left;
}
.footer-col h4 {
  text-align: left;
}
.contact-info li {
  justify-content: flex-start;
}
}