/* --------------------------------------------------
   Hero Section
-------------------------------------------------- */
.hero-image{
    border-radius: 20px;
}
.hero-section {
    position: relative;
    height: 150px;
    width: 100%;
    overflow: hidden;

    border-radius: 10px;

    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;

    padding: 20px;
    color: #ffffff;
}

.hero-slider {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

.hero-slide img {
    width: 100%;
    /* height: 100%; */
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    /* background: linear-gradient(to bottom,
        rgba(0, 0, 0, 0.45),
        rgba(0, 0, 0, 0.85)
    ); */
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
}

.hero-content h1 {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.5;
    margin-bottom: 10px;
}

.hero-content p {
    font-size: 13px;
    margin-bottom: 16px;
    color: #eaeaea;
}

.text-brand {
    color: var(--brand-color);
}

.btn-large {
    padding: 10px 20px;
    font-size: 14px;
    border-radius: 10px;
    background-color: var(--brand-color);
    color: var(--text-main);
}

.btn-large:hover {
    background-color: var(--brand-color-hover);
}

/* Hero Controls */
.hero-controls {
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    gap: 8px;
}

.hero-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    padding: 0;
}

.hero-dot.active {
    background: var(--brand-color);
    width: 24px;
    border-radius: 5px;
}

.hero-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    transition: background 0.3s;
    display: none;
}

.hero-arrow:hover {
    background: rgba(0, 0, 0, 0.8);
}

.hero-prev {
    right: 10px;
}

.hero-next {
    left: 10px;
}



/* --------------------------------------------------
   Clubs Section
-------------------------------------------------- */
.clubs-container {
    padding: 40px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;

    flex-wrap: wrap;
    gap: 10px;
}

.clubs-title {
    font-size: 20px;
    color: var(--text-main);
    margin: 0;
}

.view-all {
    font-size: 14px;
    font-weight: 600;
    color: var(--brand-color);
}

/* --------------------------------------------------
   Slider
-------------------------------------------------- */
.clubs-slider {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    padding-bottom: 15px;

    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
}

.clubs-slider::-webkit-scrollbar {
    height: 5px;
}

.clubs-slider::-webkit-scrollbar-thumb {
    background: var(--brand-color);
    border-radius: 20px;
}

/* --------------------------------------------------
   Club Card
-------------------------------------------------- */
.club-card {
    background: #fff;
    width: 85vw;
    max-width: 300px;

    border-radius: 14px;
    overflow: hidden;

    box-shadow: 0 4px 12px rgba(0,0,0,0.06);

    flex-shrink: 0;
    scroll-snap-align: center;

    display: flex;
    flex-direction: column;
}

.club-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.club-info {
    padding: 16px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.club-info h3 {
    font-size: 17px;
    margin-bottom: 8px;
}

.club-info p {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 16px;
    line-height: 1.6;
    flex-grow: 1;
}

.btn-outline {
    border: 2px solid var(--brand-color);
    color: var(--brand-color);
    padding: 8px 14px;
    font-size: 14px;
    border-radius: 8px;
    text-align: center;
    transition: 0.25s;
}

.btn-outline:hover {
    background: var(--brand-color);
    color: #fff;
}

/* --------------------------------------------------
   Tablet
-------------------------------------------------- */
@media (min-width: 768px) {
    .hero-section {
        height: 500px;
        padding: 40px;
    }

    .hero-content h1 {
        font-size: 28px;
        margin-bottom: 12px;
    }

    .hero-content p {
        font-size: 16px;
        margin-bottom: 20px;
    }

    .btn-large {
        padding: 12px 26px;
        font-size: 16px;
    }

    .hero-arrow {
        display: block;
    }

    .hero-controls {
        bottom: 16px;
        gap: 10px;
    }

    .hero-dot {
        width: 12px;
        height: 12px;
    }

    .hero-dot.active {
        width: 30px;
        border-radius: 6px;
    }

    .clubs-title {
        font-size: 24px;
    }

    .view-all {
        font-size: 15px;
    }

    .clubs-slider {
        gap: 18px;
        scroll-snap-type: none;
    }

    .club-card {
        width: 300px;
        scroll-snap-align: start;
    }
}

/* --------------------------------------------------
   Desktop
-------------------------------------------------- */


/* --------------------------------------------------
   Desktop
-------------------------------------------------- */
@media (min-width: 1024px) {
    .hero-section {
        height: 462px;
        padding: 60px;
    }

    .hero-content h1 {
        font-size: 38px;
        margin-bottom: 16px;
    }

    .hero-content p {
        font-size: 18px;
        margin-bottom: 30px;
    }

    .hero-arrow {
        width: 40px;
        height: 40px;
        font-size: 24px;
    }

    .hero-prev {
        right: 20px;
    }

    .hero-next {
        left: 20px;
    }
}

