*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:'Poppins',sans-serif;
scroll-behavior:smooth;
}

body{
background:#050816;
color:#fff;
overflow-x:hidden;
}

.hero{
height:100vh;
background:
background:
linear-gradient(rgba(5,8,22,.55),rgba(5,8,22,.75)),
url("IMG-20260126-WA0026.jpg");
background-size:cover;
background-position:center;
display:flex;
justify-content:center;
align-items:center;
position:relative;
}

.navbar{
position:fixed;
top:20px;
left:50%;
transform:translateX(-50%);
width:90%;
max-width:1300px;
padding:18px 35px;
display:flex;
justify-content:space-between;
align-items:center;
background:rgba(255,255,255,.08);
backdrop-filter:blur(20px);
border:1px solid rgba(255,255,255,.1);
border-radius:18px;
z-index:999;
}

.logo{
font-size:28px;
font-weight:700;
display:flex;
align-items:center;
gap:12px;
color:#D4AF37;
}

.navbar ul{
display:flex;
list-style:none;
gap:35px;
}

.navbar a{
text-decoration:none;
color:white;
transition:.3s;
}

.navbar a:hover{
color:#D4AF37;
}

.join-btn,
.primary-btn{
background:#D4AF37;
color:#111;
padding:15px 32px;
border-radius:40px;
font-weight:700;
text-decoration:none;
transition:.3s;
}

.join-btn:hover,
.primary-btn:hover{
transform:translateY(-5px);
}

.secondary-btn{
border:2px solid rgba(255,255,255,.25);
padding:15px 32px;
border-radius:40px;
color:white;
text-decoration:none;
margin-left:15px;
}

.hero-content{
max-width:900px;
text-align:center;
padding:20px;
}

.hero h1{
font-size:76px;
line-height:1.1;
margin:25px 0;
}

.hero p{
font-size:22px;
color:#ddd;
line-height:1.8;
}

.tag{
letter-spacing:4px;
color:#D4AF37;
}/* =========================
ABOUT
========================= */

section{
padding:100px 8%;
}

.container{
display:grid;
grid-template-columns:1fr 1fr;
gap:60px;
align-items:center;
}

.section-tag{
color:#D4AF37;
letter-spacing:3px;
font-weight:600;
margin-bottom:15px;
}

.about h2,
.facilities h2,
.gallery h2,
.reviews h2,
.contact h2{
font-size:48px;
margin-bottom:25px;
}

.about p{
color:#cfcfcf;
line-height:1.8;
}

.about img{
width:100%;
border-radius:25px;
box-shadow:0 30px 60px rgba(0,0,0,.45);
}

.stats{
display:flex;
gap:40px;
margin-top:40px;
}

.stats h3{
font-size:40px;
color:#D4AF37;
}

/* =========================
FACILITIES
========================= */

.facility-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
gap:30px;
margin-top:60px;
}

.facility-card{
background:rgba(255,255,255,.06);
backdrop-filter:blur(20px);
padding:40px;
border-radius:20px;
border:1px solid rgba(255,255,255,.08);
transition:.35s;
text-align:center;
}

.facility-card:hover{
transform:translateY(-10px);
box-shadow:0 20px 50px rgba(0,0,0,.35);
}

.facility-card i{
font-size:48px;
color:#D4AF37;
margin-bottom:20px;
}

.facility-card h3{
margin-bottom:15px;
}

/* =========================
OFFER
========================= */

.offer{
text-align:center;
}

.offer-box{
max-width:900px;
margin:auto;
padding:70px;
border-radius:30px;
background:linear-gradient(135deg,#111827,#1e293b);
border:1px solid rgba(255,255,255,.08);
}

.offer-tag{
display:inline-block;
padding:10px 20px;
background:#D4AF37;
color:#111;
border-radius:30px;
font-weight:700;
margin-bottom:20px;
}

.offer-box h2{
font-size:60px;
margin-bottom:20px;
}

.offer-box span{
color:#FFD54F;
}

/* =========================
GALLERY
========================= */

.gallery-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
gap:25px;
margin-top:50px;
}

.gallery-item{
overflow:hidden;
border-radius:20px;
}

.gallery-item img{
width:100%;
display:block;
transition:.4s;
}

.gallery-item:hover img{
transform:scale(1.08);
}

/* =========================
REVIEWS
========================= */

.review-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
gap:30px;
margin-top:50px;
}

.review-card{
background:rgba(255,255,255,.05);
padding:35px;
border-radius:20px;
border:1px solid rgba(255,255,255,.08);
}

/* =========================
CONTACT
========================= */

.contact-box{
display:grid;
grid-template-columns:1fr 1fr;
gap:40px;
margin-top:50px;
}

.contact iframe{
width:100%;
height:400px;
border:0;
border-radius:20px;
}

/* =========================
FOOTER
========================= */

footer{
padding:70px 20px;
text-align:center;
background:#030712;
margin-top:80px;
}

footer h2{
color:#D4AF37;
margin-bottom:15px;
}

footer p{
color:#cfcfcf;
margin:10px 0;
}

/* =========================
MOBILE
========================= */

@media(max-width:900px){

.hero h1{
font-size:48px;
}

.hero p{
font-size:18px;
}

.container,
.contact-box{
grid-template-columns:1fr;
}

.navbar{
flex-direction:column;
gap:15px;
padding:20px;
}

.navbar ul{
flex-wrap:wrap;
justify-content:center;
}

.stats{
justify-content:space-between;
}

.about h2,
.facilities h2,
.gallery h2,
.reviews h2,
.contact h2{
font-size:34px;
}

.offer-box{
padding:40px 25px;
}

.offer-box h2{
font-size:40px;
}

}
