/* CLUBUZ UI Styles */
/* CLUBUZ Home Layout */

.clubuz-home {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 24px 20px 100px;
}

/* Hero Banner */

.clubuz-hero-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    min-height: 300px;
    padding: 48px;
    overflow: hidden;
    color: #ffffff;
    background:
        linear-gradient(
            135deg,
            #2874f0 0%,
            #1554c0 100%
        );
    border-radius: 22px;
    box-shadow: 0 16px 40px rgba(40, 116, 240, 0.22);
}

.clubuz-hero-content {
    flex: 1;
    max-width: 650px;
}

.clubuz-hero-label {
    display: inline-block;
    margin-bottom: 14px;
    padding: 7px 13px;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 999px;
    font-size: 13px;
    font-weight: 700;
}

.clubuz-hero-content h1 {
    margin: 0 0 15px;
    color: #ffffff;
    font-size: 46px;
    line-height: 1.15;
    font-weight: 800;
}

.clubuz-hero-content p {
    max-width: 560px;
    margin: 0 0 25px;
    color: rgba(255, 255, 255, 0.92);
    font-size: 17px;
    line-height: 1.7;
}

.clubuz-hero-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 21px;
    color: #1554c0 !important;
    background: #ffffff;
    border-radius: 10px;
    text-decoration: none !important;
    font-size: 15px;
    font-weight: 700;
    transition: transform 0.2s ease;
}

.clubuz-hero-button:hover {
    transform: translateY(-2px);
}

.clubuz-hero-visual {
    display: grid;
    grid-template-columns: repeat(3, 78px);
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    gap: 14px;
}

.clubuz-hero-visual span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 78px;
    height: 78px;
    background: rgba(255, 255, 255, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 20px;
    font-size: 36px;
    backdrop-filter: blur(8px);
}

/* Mobile */

@media (max-width: 768px) {

    .clubuz-home {
        padding: 16px 14px 95px;
    }

    .clubuz-hero-banner {
        display: block;
        min-height: auto;
        padding: 28px 22px;
        border-radius: 17px;
    }

    .clubuz-hero-content h1 {
        font-size: 32px;
    }

    .clubuz-hero-content p {
        font-size: 15px;
    }

    .clubuz-hero-visual {
        grid-template-columns: repeat(5, 1fr);
        margin-top: 27px;
        gap: 8px;
    }

    .clubuz-hero-visual span {
        width: 100%;
        height: 55px;
        border-radius: 13px;
        font-size: 25px;
    }
}