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

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

.container{
width:90%;
max-width:1200px;
margin:auto;
}

:root{
--gold:#D4AF37;
--dark:#0A0A0A;
--card:#171717;
}

/* NAVBAR */

nav{
position:fixed;
width:100%;
top:0;
background:rgba(0,0,0,.9);
padding:20px 0;
z-index:999;
}

.nav-container{
display:flex;
justify-content:space-between;
align-items:center;
}

.logo{
font-size:32px;
font-weight:800;
color:var(--gold);
}

.logo img{
height:70px;
width:auto;
display:block;
object-fit:contain;
filter:drop-shadow(0 0 10px rgba(212,175,55,.3));
}

nav ul{
display:flex;
list-style:none;
gap:25px;
}

nav ul li a{
text-decoration:none;
color:white;
font-weight:500;
}

.btn{
background:var(--gold);
color:#000;
padding:12px 28px;
border-radius:50px;
font-weight:700;
text-decoration:none;
display:inline-block;
}

/* HERO */

.hero{
height:100vh;
background:
linear-gradient(rgba(0,0,0,.75),rgba(0,0,0,.75)),
url('MAR.webp');
background-size:cover;
background-position:center;
display:flex;
align-items:center;
}

.hero-content h1{
font-size:70px;
line-height:1.1;
margin-bottom:20px;
}

.hero-content span{
color:var(--gold);
}

.hero-content p{
font-size:20px;
margin-bottom:30px;
}

/* SECTION */

section{
padding:90px 0;
}

.section-title{
text-align:center;
font-size:45px;
margin-bottom:50px;
color:var(--gold);
}

/* CARDS */

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

.card{
background:var(--card);
padding:30px;
border-radius:15px;
transition:.4s;
border:1px solid rgba(212,175,55,.15);
}

.card:hover{
transform:translateY(-10px);
box-shadow:0 0 25px rgba(212,175,55,.3);
}

.card h3{
color:var(--gold);
margin-bottom:15px;
}

/* MEMBERSHIP */

  .plans{
      display:grid;
      grid-template-columns:repeat(auto-fit,minmax(270px,1fr));
      gap:30px;
    }

    .plan{
      background:#111;
      padding:45px 30px;
      border-radius:25px;
      text-align:center;
      transition:0.4s;
      border:1px solid rgba(212,175,55,0.15);
    }

    .plan:hover{
      transform:scale(1.04);
      border-color:#d4af37;
    }

    .plan h3{
      font-size:30px;
      color:#d4af37;
      margin-bottom:20px;
    }

    .price{
      font-size:55px;
      font-weight:800;
      margin-bottom:20px;
    }

    .plan ul{
      list-style:none;
      margin-bottom:30px;
    }

    .plan ul li{
      margin:12px 0;
      color:#ccc;
    }
 .powerlifting-section{
    display:flex;
    gap:50px;
    align-items:center;
    padding:80px 10%;
    flex-wrap:wrap;
}

.powerlifting-images{
    flex:1;
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:15px;
}

.powerlifting-images img{
    width:100%;
    height:220px;
    object-fit:cover;
    border-radius:15px;
}

.powerlifting-content{
    flex:1;
}

.powerlifting-content h2{
    margin-bottom:20px;
}

.powerlifting-content ul{
    margin-top:20px;
}

.powerlifting-content li{
    margin-bottom:10px;
}



    /* ABOUT */

    .about{
      display:grid;
      grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
      gap:50px;
      align-items:center;
    }

    .about-text h3{
      font-size:38px;
      margin-bottom:20px;
    }

    .about-text p{
      color:#bbb;
      line-height:1.9;
    }

    
/* GALLERY */

.gallery{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:15px;
}

.gallery img{
width:100%;
height:250px;
object-fit:cover;
border-radius:10px;
}

/* CONTACT */

.contact-wrapper{
display:grid;
grid-template-columns:1fr 1fr;
gap:40px;
}

form{
background:#171717;
padding:35px;
border-radius:15px;
}

input,select,textarea{
width:100%;
padding:15px;
margin-bottom:15px;
background:#222;
border:none;
color:#fff;
border-radius:8px;
}

button{
background:var(--gold);
padding:15px;
width:100%;
border:none;
font-weight:700;
cursor:pointer;
}

/* FOOTER */

footer{
background:#050505;
padding:30px;
text-align:center;
}

/* Motion effects */

nav{
transition:padding .25s ease, background .25s ease, box-shadow .25s ease;
}

nav.is-scrolled{
padding:12px 0;
background:rgba(0,0,0,.96);
box-shadow:0 5px 20px rgba(0,0,0,.35);
}

.reveal{
opacity:0;
transform:translateY(28px);
transition:opacity .6s ease, transform .6s ease;
}

.reveal.is-visible{
opacity:1;
transform:translateY(0);
}

@media (prefers-reduced-motion: reduce){
*, *::before, *::after{
scroll-behavior:auto !important;
transition-duration:.01ms !important;
animation-duration:.01ms !important;
}
}

/* WHATSAPP */

.whatsapp{
position:fixed;
bottom:20px;
right:20px;
background:#25D366;
width:60px;
height:60px;
display:flex;
justify-content:center;
align-items:center;
border-radius:50%;
font-size:30px;
text-decoration:none;
color:#fff;
}
/* SOCIAL */


.social-section{
    text-align:center;
    padding:60px 50px;
}

.social-links{
    display:flex;
    justify-content:center;
    gap:20px;
    flex-wrap:wrap;
}

.social-links a{
    padding:12px 25px;
    border-radius:10px;
    text-decoration:none;
    background:#111;
    color:white;
}



/* MOBILE */

@media(max-width:768px){

.container{
width:min(100% - 32px, 1200px);
}

.logo img{
height:46px;
}

nav{
padding:12px 0;
}

.logo{
font-size:22px;
line-height:1;
}

nav .btn{
padding:10px 16px;
font-size:13px;
}

.hero-content h1{
font-size:clamp(36px, 10vw, 48px);
}

.hero{
min-height:620px;
height:100svh;
background-position:58% center;
}

.hero-content p{
font-size:17px;
line-height:1.6;
max-width:32ch;
}

nav ul{
display:none;
}

.btn{
padding:12px 22px;
}

section{
padding:60px 0;
}

.section-title{
font-size:32px;
line-height:1.2;
margin-bottom:32px;
}

.grid{
grid-template-columns:1fr;
gap:16px;
}

.card{
padding:24px;
}

.price{
font-size:42px;
}

.powerlifting-section{
padding:60px 16px;
gap:30px;
}

.powerlifting-images,
.powerlifting-content{
flex-basis:100%;
}

.powerlifting-images img{
height:150px;
border-radius:10px;
}

.powerlifting-content h2{
font-size:28px;
line-height:1.25;
}

.gallery{
grid-template-columns:repeat(2, 1fr);
gap:10px;
}

.gallery img{
height:160px;
border-radius:8px;
}

.contact-wrapper{
grid-template-columns:1fr;
gap:30px;
}

form{
padding:24px 18px;
}

input,select,textarea,button{
font-size:16px;
}

input,select,textarea{
padding:14px;
}

.social-section{
padding:50px 16px;
}

.social-links{
display:grid;
grid-template-columns:1fr;
gap:12px;
}

.social-links a{
width:100%;
}

.whatsapp{
width:52px;
height:52px;
right:16px;
bottom:16px;
font-size:26px;
}

footer{
padding:24px 16px 88px;
font-size:13px;
}

}

@media(max-width:380px){

.logo{
font-size:19px;
}

.logo img{
height:40px;
}

nav .btn{
padding:9px 12px;
font-size:12px;
}

.hero-content h1{
font-size:34px;
}

.gallery img{
height:135px;
}

}
