:root {
    --primary-color: #e10600;
    --dark-color: #0b0b0b;
    --card-bg: #111111;
    --text-color: #ffffff;
    --text-muted: #aaaaaa;
    --font-heading: 'Oswald', sans-serif;
    --font-body: 'Roboto', sans-serif;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--dark-color);
    color: var(--text-color);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    text-transform: uppercase;
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.text-red {
    color: var(--primary-color);
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition);
}

.btn-red {
    background-color: var(--primary-color);
    color: #fff;
    box-shadow: 0 0 10px rgba(225, 6, 0, 0.3);
}

.btn-red:hover {
    background-color: #b30500;
    box-shadow: 0 0 20px rgba(225, 6, 0, 0.6);
}

.btn-outline {
    border-color: #fff;
    color: #fff;
}

.btn-outline:hover {
    background-color: #fff;
    color: #000;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
}

.navbar.scrolled {
    background-color: rgba(11, 11, 11, 0.95);
    padding: 10px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-links li a {
    font-size: 0.95rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-links li a:hover {
    color: var(--primary-color);
}

.nav-btn {
    padding: 8px 20px;
    font-size: 0.9rem;
}

/* Hamburger */
.hamburger {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: #fff;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: -2;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(11,11,11,0.9));
    z-index: -1;
}

.hero-title {
    font-size: 5rem;
    line-height: 1.1;
    margin-bottom: 10px;
    text-shadow: 0 5px 15px rgba(0,0,0,0.5);
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    font-weight: 300;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

/* Sections */
.section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header .title {
    font-size: 3rem;
    margin-bottom: 15px;
}

.separator {
    width: 80px;
    height: 4px;
    background-color: var(--primary-color);
    margin: 0 auto;
}

/* About & Coaches */
.about-content {
    max-width: 800px;
    margin: 0 auto 60px;
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-muted);
}

.coaches-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    justify-content: center;
}

.coach-card {
    background-color: var(--card-bg);
    overflow: hidden;
    position: relative;
    transition: var(--transition);
}

.coach-card:hover {
    transform: translateY(-10px);
}

.coach-img {
    height: 400px;
    overflow: hidden;
}

.coach-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.coach-card:hover .coach-img img {
    transform: scale(1.1);
}

.coach-info {
    padding: 20px;
    text-align: center;
    background: linear-gradient(to top, #111 20%, transparent);
    position: absolute;
    bottom: 0;
    width: 100%;
}

.coach-info h3 {
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.coach-info .role {
    color: var(--primary-color);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Services */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.service-card {
    background-color: var(--card-bg);
    padding: 40px 30px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid #222;
}

.service-card:hover {
    background-color: #1a1a1a;
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(225, 6, 0, 0.1);
    transform: translateY(-5px);
}

.service-card .icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.service-card h3 {
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.service-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 15px;
}

.gallery-item {
    height: 300px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.15);
}

/* Why Choose Us */
.why-us {
    background-color: #0c0c0c; 
    /* Slightly lighter/different shade or image avg */
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-item {
    padding: 20px;
    border-left: 2px solid var(--primary-color);
}

.feature-item h3 {
    font-size: 2.5rem;
    color: rgba(255,255,255,0.1);
    margin-bottom: 10px;
    line-height: 1;
}

.feature-item h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #fff;
}

.feature-item p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Pricing */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    align-items: center;
}

.pricing-card {
    background-color: var(--card-bg);
    text-align: center;
    padding: 40px;
    border: 1px solid #222;
    transition: var(--transition);
    position: relative;
}

.pricing-card.recommended {
    border-color: var(--primary-color);
    background-color: #151515;
}

.pricing-card .tag {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--primary-color);
    color: #fff;
    padding: 5px 15px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pricing-card h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.pricing-card .price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 25px;
    font-family: var(--font-heading);
}

.pricing-card .price span {
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: 400;
}

.pricing-card .features {
    margin-bottom: 30px;
    text-align: left;
    padding-left: 20px;
}

.pricing-card .features li {
    margin-bottom: 12px;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 10px;
}

.pricing-card .features li i {
    color: var(--primary-color);
}

.pricing-card .features li i.fa-times {
    color: #444;
}

/* Contact */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-info .info-item {
    display: flex;
    align-items: Center;
    gap: 15px;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.contact-info .info-item i {
    color: var(--primary-color);
    font-size: 1.2rem;
    width: 20px;
}

.map-container {
    margin-top: 30px;
    filter: grayscale(100%) invert(90%);
    border-radius: 5px;
    overflow: hidden;
}

.contact-form {
    background-color: var(--card-bg);
    padding: 40px;
    border: 1px solid #222;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 15px;
    background-color: #000;
    border: 1px solid #333;
    color: #fff;
    margin-bottom: 20px;
    font-family: var(--font-body);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

/* Footer */
.footer {
    background-color: #080808;
    padding: 60px 0 20px;
    text-align: center;
    border-top: 1px solid #222;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.footer-links a:hover {
    color: var(--primary-color);
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background-color: #222;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition);
}

.footer-social a:hover {
    background-color: var(--primary-color);
    color: #fff;
}

.copyright {
    color: #555;
    font-size: 0.9rem;
}

/* Animations */
.fade-in, .fade-in-up, .fade-in-left, .fade-in-right, .fade-in-scale {
    opacity: 0;
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in { opacity: 0; }
.fade-in-up { transform: translateY(30px); }
.fade-in-left { transform: translateX(-30px); }
.fade-in-right { transform: translateX(30px); }
.fade-in-scale { transform: scale(0.9); }

.appear {
    opacity: 1;
    transform: none;
}

/* Responsive */
@media (max-width: 900px) {
    .hero-title { font-size: 3.5rem; }
    .contact-wrapper { grid-template-columns: 1fr; }
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background-color: #111;
        flex-direction: column;
        justify-content: center;
        transition: 0.3s ease;
        padding-top: 60px;
    }
    .nav-links.active { right: 0; }
    .hamburger { display: flex; z-index: 1001; }
}

@media (max-width: 600px) {
    .hero-title { font-size: 2.5rem; }
    .hero-buttons { flex-direction: column; width: 100%; padding: 0 40px; }
    .section-header .title { font-size: 2.2rem; }
}
