:root {
    --bg-dark: #0a0a0a;
    --bg-darker: #050505;
    --bg-lighter: #151515;
    --accent-orange: #ff6b00;
    --accent-gold: #cfaa6e;
    --text-white: #ffffff;
    --text-gray: #a0a0a0;
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
    --font-main: 'Montserrat', sans-serif;
    --font-secondary: 'Raleway', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-white);
    font-family: var(--font-secondary);
    overflow-x: hidden;
    line-height: 1.6;
}

/* --- Typography --- */
h1, h2, h3, h4, h5, .font-main {
    font-family: var(--font-main);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.text-accent { color: var(--accent-orange); }
.text-gold { color: var(--accent-gold); }
.text-gray { color: var(--text-gray); }

/* --- Navbar --- */
.navbar-gym {
    padding: 20px 0;
    transition: all 0.4s ease;
    background: transparent;
    z-index: 1000;
}

.navbar-gym.scrolled {
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(15px);
    padding: 12px 0;
    border-bottom: 1px solid var(--glass-border);
}

.nav-link {
    color: var(--text-white) !important;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin: 0 15px;
    text-transform: uppercase;
    transition: color 0.3s;
    font-family: var(--font-main);
}

.nav-link:hover, .nav-link.active {
    color: var(--accent-orange) !important;
}

/* --- Hero Section --- */
.hero-gym {
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('https://images.unsplash.com/photo-1534438327276-14e5300c3a48?q=80&w=1970&auto=format&fit=crop') no-repeat center center/cover;
}

.hero-content {
    max-width: 900px;
    z-index: 2;
}

.hero-title {
    font-size: 5rem;
    line-height: 1;
    font-weight: 900;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 1.2rem;
    letter-spacing: 5px;
    color: var(--accent-orange);
    font-weight: 700;
    margin-bottom: 15px;
    display: block;
}

/* --- Sections --- */
section {
    padding: 100px 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 50px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--accent-orange);
}

.bg-darker { background-color: var(--bg-darker); }
.bg-lighter { background-color: var(--bg-lighter); }

/* --- Service Cards --- */
.service-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 50px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    height: 100%;
    border-radius: 20px;
}

.service-card:hover {
    border-color: var(--accent-orange);
    transform: translateY(-15px);
    background: rgba(255, 107, 0, 0.05);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 25px;
    color: var(--accent-orange);
}

/* --- Widget Container --- */
.widget-wrapper {
    background: var(--bg-lighter);
    border: 1px solid var(--glass-border);
    padding: 30px;
    border-radius: 30px;
    margin-top: 40px;
}

/* --- Buttons --- */
.btn-gym {
    background: var(--accent-orange);
    color: white;
    padding: 18px 40px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: 50px;
    border: none;
    transition: all 0.3s;
    font-family: var(--font-main);
    display: inline-block;
    text-decoration: none;
}

.btn-gym:hover {
    background: white;
    color: black;
    transform: scale(1.05);
}

.btn-gym-outline {
    background: transparent;
    border: 2px solid white;
    color: white;
    padding: 16px 38px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: 50px;
    transition: all 0.3s;
    font-family: var(--font-main);
    display: inline-block;
    text-decoration: none;
}

.btn-gym-outline:hover {
    background: white;
    color: black;
}

/* --- Language Toggle --- */
.lang-switch {
    background: transparent;
    border: 1px solid var(--glass-border);
    color: var(--text-white);
    padding: 6px 14px;
    font-size: 0.7rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    border-radius: 4px;
    font-family: var(--font-main);
}

.lang-switch:hover, .lang-switch.active {
    background: var(--accent-orange);
    color: white;
    border-color: var(--accent-orange);
}

/* --- Footer --- */
footer {
    padding: 80px 0 30px;
    background: var(--bg-darker);
    border-top: 1px solid var(--glass-border);
}

.footer-link {
    color: var(--text-gray);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-link:hover {
    color: var(--accent-orange);
}

/* --- Animations --- */
[data-reveal] {
    opacity: 0;
    transform: translateY(40px);
    transition: all 1s ease-out;
}

[data-reveal].revealed {
    opacity: 1;
    transform: translateY(0);
}

/* --- Responsive --- */
@media (max-width: 992px) {
    .hero-title { font-size: 3.5rem; }
}

@media (max-width: 768px) {
    .hero-title { font-size: 2.8rem; }
    .hero-gym { text-align: center; }
    .navbar-gym { background: var(--bg-dark); }
    section { padding: 60px 0; }
}
