/* style.css */
body{
margin:0;
font-family:Arial, sans-serif;
line-height:1.6;
}

.header{
background:#000;
color:#fff;
text-align:center;
padding:20px;
}

.hero{
background:url("https://upload.wikimedia.org/wikipedia/commons/thumb/2/24/Pool_party_-_Crowding_into_hot_tub.jpg/960px-Pool_party_-_Crowding_into_hot_tub.jpg?utm_source=commons.wikimedia.org&utm_campaign=imageinfo&utm_content=thumbnail") center/cover no-repeat;
height:fit-content;
display:flex;
align-items:center;
justify-content:center;
text-align:center;
color:#fff;
}

.hero-content{
/*background:rgba(0,0,0,0.6);*/
padding:20px;
border-radius:10px;
}

.btn{
display:inline-block;
padding:10px 20px;
background:#ff2e7a;
color:#fff;
text-decoration:none;
border-radius:25px;
margin-top:10px;
}

.section{
padding:40px 20px;
max-width:1000px;
margin:auto;
}

.grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:20px;
}

.card{
padding:20px;
box-shadow:0 4px 10px rgba(0,0,0,0.1);
border-radius:8px;
}

.footer{
background:#000;
color:#fff;
text-align:center;
padding:15px;
}

@media(max-width:768px){
.hero{
height:fit-content;
}
}




















/* HEADER BASE */

.main-header{
  width:100%;
  background:deeppink;
  position:sticky;
  top:0;
  z-index:999;
  box-shadow:0 2px 10px rgba(0,0,0,0.2);
}

/* CONTAINER */

.header-container{
  max-width:1200px;
  margin:auto;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:12px 20px;
}

/* LOGO */

.logo a{
  color:#fff;
  font-size:20px;
  font-weight:700;
  text-decoration:none;
  letter-spacing:0.5px;
}

/* NAV MENU */

.nav-menu ul{
  list-style:none;
  display:flex;
  gap:25px;
  margin:0;
  padding:0;
}

.nav-menu a{
  color:#fff;
  text-decoration:none;
  font-size:15px;
  transition:0.3s;
  position:relative;
}

/* HOVER EFFECT */

.nav-menu a::after{
  content:"";
  position:absolute;
  left:0;
  bottom:-4px;
  width:0;
  height:2px;
  background:#ff2e7a;
  transition:0.3s;
}

.nav-menu a:hover::after{
  width:100%;
}

/* MOBILE TOGGLE */

.menu-toggle{
  display:none;
  font-size:24px;
  color:#fff;
  cursor:pointer;
}

/* RESPONSIVE */

@media(max-width:768px){

  .nav-menu{
    position:absolute;
    top:60px;
    left:0;
    width:100%;
    background:#000;
    display:none;
  }

  .nav-menu ul{
    flex-direction:column;
    gap:0;
  }

  .nav-menu li{
    border-top:1px solid rgba(255,255,255,0.1);
  }

  .nav-menu a{
    display:block;
    padding:12px 20px;
  }

  .menu-toggle{
    display:block;
  }

  .nav-menu.active{
    display:block;
  }
}




/* FOOTER BASE */

.main-footer{
  background:hotpink;
  color:black;
  margin-top:40px;
}

/* CONTAINER */

.footer-container{
  max-width:1200px;
  margin:auto;
  padding:40px 20px;
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:30px;
}

/* COLUMN */

.footer-col h3{
  margin-bottom:15px;
  font-size:18px;
  color:white;
}

.footer-col p{
  font-size:14px;
  line-height:1.6;
  color:white;
}

.footer-col ul{
  list-style:none;
  padding:0;
  margin:0;
}

.footer-col li{
  margin-bottom:10px;
}

/* LINKS */

.footer-col a{
  color:white;
  text-decoration:none;
  font-size:14px;
  transition:0.3s;
}

.footer-col a:hover{
  color:blue;
  padding-left:5px;
}

/* BOTTOM */

.footer-bottom{
  text-align:center;
  padding:15px;
  border-top:1px solid rgba(255,255,255,0.1);
  font-size:13px;
  color:#aaa;
}

/* MOBILE */

@media(max-width:768px){
  .footer-container{
    padding:30px 15px;
  }
}










.top-carousel{
position:relative;
width:100%;
height:90vh;
overflow:hidden;
}

.carousel-wrapper{
width:100%;
height:100%;
overflow:hidden;
}

.carousel-slide{
display:flex;
height:100%;
transition: transform 0.8s ease-in-out;
}

.slide{
min-width:100%;
height:100%;
position:relative;
background-size:cover;
background-position:center;
}

/* IMAGES */
.slide:nth-child(1){
background:url('https://upload.wikimedia.org/wikipedia/commons/thumb/d/d9/Weekend_Club_Berlin_Dance_Floor.jpg/960px-Weekend_Club_Berlin_Dance_Floor.jpg?_=20230802193215') center/cover no-repeat;
}
.slide:nth-child(2){
background:url('https://upload.wikimedia.org/wikipedia/commons/thumb/7/74/Smoking_%28Hot%29_%2835519747506%29.jpg/960px-Smoking_%28Hot%29_%2835519747506%29.jpg?_=20170705032003') center/cover no-repeat;
}
.slide:nth-child(3){
background:url('https://images.unsplash.com/photo-1500530855697-b586d89ba3ee') center/cover no-repeat;
}

/* OVERLAY */
.overlay{
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(0,0,0,0.6);
}

/* CONTENT */
.slide-content{
position:absolute;
top:50%;
left:50%;
transform:translate(-50%, -50%);
color:#fff;
text-align:center;
max-width:700px;
padding:20px;
}

.slide-content h1,
.slide-content h2{
font-size:38px;
margin-bottom:15px;
}

.slide-content p{
font-size:18px;
margin-bottom:25px;
}

/* BUTTONS */
.cta-buttons{
display:flex;
justify-content:center;
gap:15px;
flex-wrap:wrap;
}

.call-btn{
background:#ff2e7a;
color:#fff;
padding:14px 26px;
border-radius:30px;
text-decoration:none;
font-weight:bold;
}

.wa-btn{
background:#25D366;
color:#fff;
padding:14px 26px;
border-radius:30px;
text-decoration:none;
font-weight:bold;
}

/* MOBILE */
@media(max-width:768px){
.top-carousel{height:70vh;}

.slide-content h1,
.slide-content h2{font-size:26px;}

.slide-content p{font-size:15px;}
}



/* FAQ SECTION */

.faq-section{
max-width:1100px;
margin:auto;
padding:40px 20px;
}

.faq-section h2{
font-size:28px;
margin-bottom:25px;
text-align:center;
}

/* FAQ ITEMS */

.faq{
display:flex;
flex-direction:column;
gap:15px;
}

.faq-item{
background:#fff;
padding:18px 20px;
border-radius:8px;
box-shadow:0 4px 10px rgba(0,0,0,0.08);
transition:.3s;
}

.faq-item:hover{
transform:translateY(-3px);
}

.faq-item h3{
font-size:18px;
margin-bottom:8px;
color:#111;
}

.faq-item p{
font-size:15px;
color:#444;
line-height:1.6;
}

/* MOBILE */

@media(max-width:768px){

.faq-section h2{
font-size:22px;
}

.faq-item h3{
font-size:16px;
}

.faq-item p{
font-size:14px;
}

}