﻿.home-hero {
    position: relative;
    min-height: 58vh;
    display: flex;
    align-items: center;
    padding: 3rem 0;
    background-image: url('/images/home-hero.jpg');
    background-size: cover;
    background-position: center;
    border-radius: 0 0 32px 32px;
    overflow: hidden;
}

.home-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient( 90deg, rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.48), rgba(0, 0, 0, 0.08) );
}

.home-hero-content {
    position: relative;
    z-index: 1;
    width: min(1120px, calc(100% - 2rem));
    margin: 0 auto;
    color: #ffffff;
}

.home-hero-kicker {
    display: inline-flex;
    margin-bottom: 1rem;
    padding: 0.45rem 0.8rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.home-hero h1 {
    max-width: 760px;
    font-size: clamp(2.7rem, 6vw, 5.5rem);
    line-height: 0.95;
    font-weight: 950;
    margin-bottom: 1.5rem;
}

.home-hero p {
    max-width: 620px;
    font-size: clamp(1.05rem, 2vw, 1.35rem);
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.88);
    margin-bottom: 2rem;
}

.home-hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}



.home-btn-primary {
    background: #ffffff;
    color: #000000;
}

    .home-btn-primary:hover {
        background: #f1f3f5;
        color: #000000;
    }

.home-btn-secondary {
    background: rgba(255, 255, 255, 0.12);
    color: #ffffff;
    border: 2px solid rgba(255,255,255,.8);
}

    .home-btn-secondary:hover {
        background: rgba(255, 255, 255, 0.2);
        color: #ffffff;
    }

@media (max-width: 767.98px) {
    .home-hero {
        min-height: 68vh;
        padding: 3rem 0;
        background-position: center;
        border-radius: 0 0 24px 24px;
    }

    .home-hero-overlay {
        background: linear-gradient( 180deg, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.52) );
    }

    .home-hero h1 {
        line-height: 1;
    }

    .home-hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .home-btn {
        width: 100%;
    }
}

.home-highlights-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.home-highlight {
    min-height: 165px;
    padding: 2rem 1.5rem;
    background: #ffffff;
    border: 1px solid #e9ecef;
    border-radius: 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

    .home-highlight:hover {
        transform: translateY(-4px);
        box-shadow: 0 16px 35px rgba(0, 0, 0, 0.08);
    }

.home-highlight-number {
    min-height: auto;
    margin-bottom: 0.75rem;
    font-size: 1.5rem;
    font-weight: 900;
    line-height: 1.1;
}

.home-highlight-text {
    min-height: auto;
    display: block;
    font-size: 1rem;
    line-height: 1.5;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
    border: 0;
}

@media (max-width: 991.98px) {

    .home-highlights-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767.98px) {

    .home-highlights-container {
        grid-template-columns: 1fr;
    }
}

.home-community-container {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.home-community-image img {
    width: 100%;
    display: block;
    border-radius: 24px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.12);
}

.home-community-content .home-btn {
    margin-top: 1rem;
}

.home-section-kicker {
    display: inline-block;
    margin-bottom: 1rem;
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #6c757d;
}

@media (max-width: 991.98px) {

    .home-community-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

.home-upcoming-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.home-upcoming-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    border: 1px solid #e9ecef;
    transition: transform 0.2s ease;
}

    .home-upcoming-card:hover {
        transform: translateY(-3px);
    }

.home-upcoming-type {
    font-size: 0.9rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #6c757d;
    margin-bottom: 1rem;
}

.home-upcoming-date {
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
}

.home-upcoming-time {
    color: #495057;
    font-weight: 600;
}

.home-upcoming-actions {
    margin-top: 2rem;
    text-align: center;
}

@media (max-width: 991.98px) {

    .home-upcoming-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767.98px) {

    .home-upcoming-grid {
        grid-template-columns: 1fr;
    }
}

.home-beginners-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

    .home-beginners-content h2 {
        margin-bottom: 1rem;
        font-size: clamp(2rem, 4vw, 3rem);
        font-weight: 900;
    }

    .home-beginners-content p {
        color: #495057;
        line-height: 1.8;
    }

    .home-beginners-content .home-btn {
        margin-top: 1rem;
    }

/*--------------------------------------------------------------
# HOME EXPERIENCE
--------------------------------------------------------------*/

.home-experience-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin: 3rem 0;
}

.home-experience-item {
    min-height: 165px;
    padding: 1.75rem 1.25rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    border: 1px solid #e9ecef;
    border-radius: 20px;
    transition: transform 0.2s ease;
}

    .home-experience-item:hover {
        transform: translateY(-3px);
    }

.home-experience-number {
    margin-bottom: 0.65rem;
    font-size: clamp(2.25rem, 4vw, 3rem);
    font-weight: 900;
    line-height: 1;
    color: #212529;
}

.home-experience-label {
    max-width: 190px;
    margin: 0;
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.45;
    color: #495057;
}

.home-experience-footer {
    max-width: 800px;
    margin: 0 auto;
    color: #495057;
    line-height: 1.8;
}

@media (max-width: 991.98px) {
    .home-experience-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767.98px) {
    
    .home-experience-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin: 2.5rem 0;
    }

    .home-experience-item {
        min-height: 145px;
    }
}

.home-final-cta-container {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.home-final-cta h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    margin-bottom: 1rem;
}

.home-final-cta p {
    color: #6c757d;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.home-final-hashtag {
    margin-top: 2rem;
    font-size: 1.3rem;
    font-weight: 900;
    color: #212529;
}

.home-training-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.home-training-card {
    padding: 2rem;
    border: 1px solid #e9ecef;
    border-radius: 20px;
    background: #ffffff;
    transition: transform 0.2s ease;
}

    .home-training-card:hover {
        transform: translateY(-3px);
    }

.home-training-icon {
    margin-bottom: 1rem;
    font-size: 2rem;
}

.home-training-card h3 {
    margin-bottom: 1rem;
    font-size: 1.35rem;
    font-weight: 900;
}

.home-training-card p {
    margin: 0;
    color: #495057;
    line-height: 1.7;
}

.home-training-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

@media (max-width: 767.98px) {
    .home-training-grid {
        grid-template-columns: 1fr;
    }
}

.section-header-left {
    text-align: left;
    margin-bottom: 2rem;
}

    .section-header-left p {
        margin-left: 0;
        margin-right: 0;
    }
