:root {
    --raw-black: #0a0a0a;
    --industrial-silver: #c0c0c2;
    --concrete-grey: #2a2a2a;
    --rawfit-yellow: #FCD116; 
    --white: #ffffff;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body { background-color: var(--raw-black); color: var(--industrial-silver); font-family: 'Montserrat', sans-serif; line-height: 1.6; }
h1, h2, h3 { font-family: 'Bebas Neue', sans-serif; letter-spacing: 2px; }
.container { max-width: 1100px; margin: 0 auto; padding: 0 20px; }

header {
    background: #000;
    padding: 15px 0;
    border-bottom: 3px solid var(--rawfit-yellow);
    display: flex;
    justify-content: space-around;
    align-items: center;
    position: relative;
    z-index: 10;
}

.logo img { height: 80px; width: auto; display: block; }

.nav-links a {
    color: var(--white);
    text-decoration: none;
    margin-left: 20px;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.cta-fill-nav {
    background: var(--rawfit-yellow) !important;
    color: #000 !important;
    padding: 8px 15px;
    border-radius: 2px;
}

.hero {
    min-height: 80vh;
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('../gymInside.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px 20px;
}

.hero h1 { font-size: clamp(3.5rem, 12vw, 7rem); line-height: 0.9; color: var(--white); margin-bottom: 15px; }

.features { padding: 80px 0; background: #000; }
.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 30px; }
.feature-card { background: #111; padding: 40px; border: 1px solid var(--concrete-grey); text-align: center; }
.feature-card h3 { color: var(--rawfit-yellow); font-size: 2.2rem; margin-bottom: 15px; }

.faq-section { padding: 100px 0; background: var(--raw-black); }
.section-title { text-align: center; color: white; margin-bottom: 50px; font-size: 3.5rem; }
.faq-item { border-bottom: 1px solid var(--concrete-grey); padding: 30px 0; max-width: 800px; margin: 0 auto; }
.faq-question { font-weight: bold; color: var(--rawfit-yellow); font-size: 1.4rem; margin-bottom: 10px; font-family: 'Bebas Neue'; }
.faq-link { color: var(--rawfit-yellow); text-decoration: none; font-weight: bold; }

.main-footer { padding: 60px 0; text-align: center; border-top: 1px solid var(--concrete-grey); }
.social-icon { width: 45px; height: 45px; fill: var(--industrial-silver); transition: 0.3s; }
.social-icon:hover { fill: var(--rawfit-yellow); transform: scale(1.1); }

.cta-fill {
    background: var(--rawfit-yellow);
    color: #000;
    padding: 18px 35px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    display: inline-block;
    transition: 0.3s;
}
.cta-fill:hover { background: white; color: #000; }