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

:root {
    --primary: #FF4757;
    --dark: #1E272E;
    --light: #F1F2F6;
    --text: #2F3542;
}

body {
    font-family: 'Roboto', sans-serif;
    color: var(--text);
    line-height: 1.6;
}

h1, h2, h3 {
    font-family: 'Oswald', sans-serif;
    letter-spacing: 1px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.navbar {
    background: var(--dark);
    padding: 1.5rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo {
    font-family: 'Oswald', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: 2px;
}

.nav-menu {
    display: flex;
    gap: 2rem;
    list-style: none;
    align-items: center;
}

.nav-menu a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: var(--primary);
}

.btn-join {
    background: var(--primary);
    padding: 0.5rem 1.5rem;
    border-radius: 5px;
    color: white !important;
}

.hero {
    background: linear-gradient(rgba(30, 39, 46, 0.8), rgba(30, 39, 46, 0.8)),
                url('https://images.unsplash.com/photo-1534438327276-14e5300c3a48?w=1600') center/cover;
    color: white;
    padding: 10rem 0;
    text-align: center;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.hero h1 span {
    color: var(--primary);
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
}

.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    font-family: 'Oswald', sans-serif;
    letter-spacing: 1px;
    transition: all 0.3s;
    text-transform: uppercase;
}

.btn-primary {
    background: var(--primary);
    color: white;
}

.btn-primary:hover {
    background: #EE5A6F;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(255, 71, 87, 0.4);
}

.classes {
    padding: 5rem 0;
    background: var(--light);
}

.classes h2 {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--dark);
}

.class-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.class-card {
    background: white;
    padding: 2.5rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: all 0.3s;
}

.class-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.class-icon {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.class-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--dark);
}

.trainers {
    padding: 5rem 0;
    background: var(--dark);
    color: white;
}

.trainers h2 {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 3rem;
}

.trainer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.trainer-card {
    background: rgba(255,255,255,0.05);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    border: 2px solid rgba(255,71,87,0.3);
}

.trainer-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.specialty {
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.pricing {
    padding: 5rem 0;
    background: white;
}

.pricing h2 {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--dark);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--light);
    padding: 2.5rem;
    border-radius: 10px;
    text-align: center;
    position: relative;
    border: 3px solid transparent;
}

.pricing-card.featured {
    background: var(--dark);
    color: white;
    transform: scale(1.05);
    border-color: var(--primary);
}

.badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    font-family: 'Oswald', sans-serif;
}

.pricing-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.price {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 2rem;
}

.price span {
    font-size: 1rem;
    font-weight: 400;
    color: var(--text);
}

.pricing-card.featured .price span {
    color: #999;
}

.pricing-card ul {
    list-style: none;
    margin-bottom: 2rem;
    text-align: left;
}

.pricing-card li {
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

.pricing-card.featured li {
    border-bottom-color: rgba(255,255,255,0.1);
}

.btn-outline {
    background: transparent;
    color: var(--dark);
    border: 2px solid var(--dark);
}

.btn-outline:hover {
    background: var(--dark);
    color: white;
}

.contact {
    padding: 5rem 0;
    background: var(--primary);
    color: white;
    text-align: center;
}

.contact h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.contact p {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

footer {
    background: #0F1419;
    color: white;
    padding: 2rem 0;
    text-align: center;
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    .nav-menu {
        gap: 1rem;
        font-size: 0.9rem;
    }
    .pricing-card.featured {
        transform: scale(1);
    }
}
