/* BASE STYLES */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

:root {
    --primary: #ff6b35;
    --primary-dark: #e55a2b;
    --dark: #1a1a2e;
    --light: #ffffff;
    --gray: #6c757d;
    --light-gray: #f8f9fa;
}

body {
    background-color: #f5f7fa;
    color: #333;
    line-height: 1.6;
    max-width: 500px;
    margin: 0 auto;
    min-height: 100vh;
}

/* HERO SECTION */
.hero-section {
    background: linear-gradient(135deg, var(--dark), #2a2a4a);
    color: white;
    padding: 2rem;
    text-align: center;
    border-radius: 0 0 20px 20px;
}

.logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 2rem;
}

.logo i {
    color: var(--primary);
    font-size: 2rem;
}

.logo h1 {
    font-size: 1.8rem;
    font-weight: 700;
}

.hero-text {
    margin-bottom: 2rem;
}

.transform {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.elevate {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
    text-transform: uppercase;
}

.tagline {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
}

/* QUICK STATS */
.quick-stats {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 2rem 0;
}

.stat {
    text-align: center;
}

.stat h3 {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 0.3rem;
}

.stat p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

/* CTA BUTTON */
.cta-button {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    border: none;
    padding: 1rem 3rem;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 0 auto;
    transition: all 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
}

/* FEATURES SECTION */
.features-section {
    padding: 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem;
}

.feature {
    background: white;
    padding: 1.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.feature:hover {
    transform: translateY(-5px);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: white;
    font-size: 1.5rem;
}

.feature h3 {
    color: var(--dark);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.feature p {
    color: var(--gray);
    font-size: 0.9rem;
}

/* SCHEDULE SECTION */
.schedule-section {
    background: white;
    margin: 1rem;
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.schedule-section h2 {
    color: var(--dark);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.3rem;
}

.schedule-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.schedule-item {
    display: grid;
    grid-template-columns: 70px 1fr 60px 70px;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--light-gray);
    border-radius: 10px;
}

.time {
    font-weight: 600;
    color: var(--dark);
}

.class {
    font-weight: 500;
    color: var(--dark);
}

.trainer {
    color: var(--gray);
    font-size: 0.9rem;
}

.status {
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-align: center;
}

.status.available {
    background: rgba(46, 204, 113, 0.1);
    color: #2ecc71;
}

.status.full {
    background: rgba(231, 76, 60, 0.1);
    color: #e74c3c;
}

/* FOOTER */
.footer {
    background: var(--dark);
    color: white;
    text-align: center;
    padding: 2rem 1rem;
    margin-top: 2rem;
    border-radius: 20px 20px 0 0;
}

.footer p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.social-icons a {
    color: white;
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: var(--primary);
}

/* RESPONSIVE */
@media (max-width: 480px) {
    .transform {
        font-size: 1.8rem;
    }
    
    .elevate {
        font-size: 1.6rem;
    }
    
    .quick-stats {
        gap: 1rem;
    }
    
    .features-section {
        grid-template-columns: 1fr;
    }
    
    .schedule-item {
        grid-template-columns: 60px 1fr 50px 60px;
        gap: 0.8rem;
    }
}