/* =========================
RESET
========================= */

*{
margin:0;
padding:0;
box-sizing:border-box;
}

html{
scroll-behavior:smooth;
}

body{
font-family:'Inter',sans-serif;
background:#0F0F10;
color:white;
line-height:1.6;
-webkit-font-smoothing:antialiased;
}


/* =========================
CONTAINER
========================= */

.container{
width:90%;
max-width:1200px;
margin:auto;
}


/* =========================
SECTION DIVIDERS
========================= */

section{
border-top:1px solid rgba(255,255,255,.04);
}


/* =========================
HEADER
========================= */

.header{
position:absolute;
width:100%;
top:0;
left:0;
z-index:100;
transition:all .4s ease;
}

.header.scrolled{
background:rgba(15,15,16,.85);
backdrop-filter:blur(8px);
border-bottom:1px solid rgba(255,255,255,.05);
}

.header-inner{
display:flex;
align-items:center;
justify-content:space-between;
padding:24px 0;
}

.logo{
font-family:'Space Grotesk',sans-serif;
font-weight:700;
letter-spacing:2px;
font-size:18px;
}

.nav{
display:flex;
gap:32px;
}

.nav a{
text-decoration:none;
color:white;
font-size:14px;
opacity:.8;
transition:opacity .3s ease;
}

.nav a:hover{
opacity:1;
}


/* =========================
BUTTONS
========================= */

.btn-primary{
background:#E63946;
color:white;
padding:12px 24px;
border-radius:4px;
text-decoration:none;
font-size:14px;
transition:all .35s ease;
}

.btn-primary:hover{
transform:translateY(-3px);
box-shadow:0 10px 25px rgba(230,57,70,.35);
}

.btn-secondary{
border:1px solid rgba(255,255,255,.4);
padding:12px 24px;
border-radius:4px;
text-decoration:none;
color:white;
font-size:14px;
transition:all .35s ease;
}

.btn-secondary:hover{
background:rgba(255,255,255,.08);
transform:translateY(-2px);
}


/* =========================
HERO
========================= */

.hero{
position:relative;
height:100vh;
background-image:url('../assets/gym-hero.png');
background-size:cover;
background-position:center;
display:flex;
align-items:center;
overflow:hidden;
}

.hero-overlay{
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
background:linear-gradient(
180deg,
rgba(0,0,0,.5),
rgba(0,0,0,.85)
);
}

.hero::after{
content:"";
position:absolute;
bottom:0;
left:0;
width:100%;
height:120px;
background:linear-gradient(
to bottom,
transparent,
#0F0F10
);
}

.hero-content{
position:relative;
max-width:620px;
z-index:2;
}

.hero-title{
font-family:'Space Grotesk',sans-serif;
font-size:56px;
line-height:1.1;
margin-bottom:24px;
}

.hero-subtitle{
font-size:18px;
opacity:.85;
margin-bottom:36px;
}

.hero-buttons{
display:flex;
gap:16px;
}


/* =========================
SECTION HEADER
========================= */

.section-header{
max-width:700px;
margin-bottom:60px;
}

.section-title{
font-family:'Space Grotesk',sans-serif;
font-size:40px;
margin-bottom:16px;
}

.section-subtitle{
opacity:.75;
font-size:16px;
line-height:1.7;
}


/* =========================
CONCEPT
========================= */

.concept{
padding:120px 0;
background:#0F0F10;
}

.concept-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:40px;
}

.concept-card{
padding:32px;
border:1px solid rgba(255,255,255,.08);
border-radius:6px;
background:rgba(255,255,255,.02);
transition:all .35s ease;
}

.concept-card:hover{
transform:translateY(-6px);
border-color:rgba(255,255,255,.25);
background:rgba(255,255,255,.04);
}

.concept-card h3{
font-family:'Space Grotesk',sans-serif;
font-size:20px;
margin-bottom:12px;
}

.concept-card p{
opacity:.7;
font-size:15px;
}


/* =========================
PROGRAMS
========================= */

.programs{
padding:120px 0;
background:#0c0c0d;
}

.programs-grid{
display:grid;
grid-template-columns:repeat(2,1fr);
gap:30px;
margin-top:60px;
}

.program-card{
position:relative;
overflow:hidden;
border-radius:6px;
cursor:pointer;
}

.program-card img{
width:100%;
height:320px;
object-fit:cover;
transition:transform .7s ease;
will-change:transform;
}

.program-overlay{
position:absolute;
bottom:0;
left:0;
width:100%;
padding:30px;
background:linear-gradient(
180deg,
rgba(0,0,0,0),
rgba(0,0,0,.9)
);
}

.program-card:hover img{
transform:scale(1.08);
}

.program-overlay h3{
font-family:'Space Grotesk',sans-serif;
font-size:22px;
margin-bottom:8px;
}

.program-overlay p{
font-size:14px;
opacity:.8;
}


/* =========================
PROCESS
========================= */

.process{
padding:120px 0;
background:#0F0F10;
}

.process-grid{
margin-top:70px;
display:grid;
grid-template-columns:repeat(4,1fr);
gap:40px;
position:relative;
}

.process-grid::before{
content:"";
position:absolute;
top:30px;
left:0;
width:100%;
height:1px;
background:rgba(255,255,255,.08);
}

.step-number{
font-family:'Space Grotesk',sans-serif;
font-size:42px;
color:#E63946;
margin-bottom:16px;
}

.process-step h3{
font-family:'Space Grotesk',sans-serif;
font-size:20px;
margin-bottom:10px;
}

.process-step p{
opacity:.75;
font-size:15px;
}


/* =========================
COACHES
========================= */

.coaches{
padding:120px 0;
background:#0c0c0d;
}

.coaches-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:30px;
margin-top:70px;
}

.coach-card{
background:rgba(255,255,255,.02);
border:1px solid rgba(255,255,255,.08);
border-radius:6px;
overflow:hidden;
transition:all .35s ease;
}

.coach-card:hover{
transform:translateY(-8px);
border-color:rgba(255,255,255,.2);
}

.coach-image{
height:320px;
overflow:hidden;
}

.coach-image img{
width:100%;
height:100%;
object-fit:cover;
object-position:top center;
transition:transform .6s ease;
}

.coach-card:hover img{
transform:scale(1.08);
}

.coach-info{
padding:24px;
}

.coach-role{
color:#E63946;
font-size:13px;
display:block;
margin-bottom:10px;
}


/* =========================
STATS
========================= */

.stats{
padding:120px 0;
background:#0F0F10;
border-top:1px solid rgba(255,255,255,.05);
border-bottom:1px solid rgba(255,255,255,.05);
}

.stats-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:40px;
text-align:center;
}

.stat-item h3{
font-family:'Space Grotesk',sans-serif;
font-size:56px;
letter-spacing:1px;
color:#E63946;
margin-bottom:8px;
}

.stat-item p{
font-size:14px;
opacity:.75;
}


/* =========================
FACILITIES
========================= */

.facilities{
padding:120px 0;
background:#0c0c0d;
}

.facilities-grid{
display:grid;
grid-template-columns:2fr 1fr;
grid-template-rows:260px 260px;
gap:20px;
margin-top:70px;
}

.facility-item{
overflow:hidden;
border-radius:6px;
}

.facility-item.large{
grid-row:span 2;
}

.facility-item img{
width:100%;
height:100%;
object-fit:cover;
transition:transform .7s ease;
}

.facility-item:hover img{
transform:scale(1.08);
}


/* =========================
TESTIMONIALS
========================= */

.testimonials{
padding:120px 0;
background:#0F0F10;
}

.testimonials-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:30px;
margin-top:70px;
}

.testimonial-card{
background:rgba(255,255,255,.02);
border:1px solid rgba(255,255,255,.08);
padding:32px;
border-radius:6px;
transition:all .35s ease;
}

.testimonial-card:hover{
transform:translateY(-6px);
border-color:rgba(255,255,255,.2);
background:rgba(255,255,255,.04);
}

.testimonial-text{
font-size:16px;
line-height:1.7;
margin-bottom:24px;
}


/* =========================
PRICING
========================= */

.pricing{
padding:120px 0;
background:#0c0c0d;
}

.pricing-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:30px;
margin-top:70px;
}

.pricing-card{

background:rgba(255,255,255,.02);
border:1px solid rgba(255,255,255,.08);
padding:40px;
border-radius:6px;

display:flex;
flex-direction:column;
justify-content:space-between;

text-align:center;
transition:all .35s ease;

min-height:340px;

}

.pricing-features{
list-style:none;
margin:20px 0 30px;
padding:0;
}

.pricing-features li{
margin-bottom:10px;
opacity:.8;
}

.pricing-card:hover{
transform:translateY(-8px);
border-color:rgba(255,255,255,.2);
}

.pricing-card.featured{
border-color:#E63946;
background:rgba(255,255,255,.04);
transform:scale(1.05);
box-shadow:0 20px 60px rgba(0,0,0,.5);
}

.price{
font-family:'Space Grotesk',sans-serif;
font-size:42px;
color:#E63946;
margin-bottom:20px;
}

.price span{
font-size:14px;
opacity:.6;
}


/* =========================
CTA
========================= */

.final-cta{
padding:120px 0;
background:#0F0F10;
}

.cta-box{
max-width:760px;
margin:auto;
text-align:center;
padding:60px;
border:1px solid rgba(255,255,255,.08);
border-radius:6px;
background:rgba(255,255,255,.02);
}

.cta-box h2{
font-family:'Space Grotesk',sans-serif;
font-size:36px;
margin-bottom:16px;
}

.cta-box p{
opacity:.75;
margin-bottom:32px;
}

.cta-buttons{
display:flex;
justify-content:center;
gap:16px;
flex-wrap:wrap;
}


/* =========================
CONTACT
========================= */

.contact{
padding:120px 0;
background:#0c0c0d;
}

.contact-grid{
display:grid;
grid-template-columns:1fr 1fr;
gap:60px;
margin-top:60px;
}

.contact-details{
margin-top:40px;
display:flex;
flex-direction:column;
gap:30px;
}

.contact-item h4{
font-family:'Space Grotesk',sans-serif;
margin-bottom:6px;
}

.contact-map iframe{
width:100%;
height:340px;
border:none;
border-radius:6px;
}


/* =========================
FOOTER
========================= */

.footer{
padding:80px 0 40px;
background:#0F0F10;
border-top:1px solid rgba(255,255,255,.05);
}

.footer-inner{
display:flex;
justify-content:space-between;
align-items:center;
flex-wrap:wrap;
gap:30px;
margin-bottom:40px;
}

.footer-logo{
font-family:'Space Grotesk',sans-serif;
font-weight:700;
letter-spacing:2px;
font-size:18px;
margin-bottom:8px;
}

.footer-brand p{
font-size:14px;
opacity:.6;
max-width:320px;
}

.footer-nav{
display:flex;
gap:28px;
}

.footer-nav a{
text-decoration:none;
color:white;
font-size:14px;
opacity:.7;
transition:opacity .3s;
}

.footer-nav a:hover{
opacity:1;
}

.footer-bottom{
border-top:1px solid rgba(255,255,255,.05);
padding-top:20px;
text-align:center;
}

.footer-bottom p{
font-size:13px;
opacity:.5;
}

section{
scroll-margin-top:100px;
}