/* =========================================================
   Home Page
   ========================================================= */

/* ── Hero ── */
.home-hero {
    position: relative;
    height: 100vh;
    min-height: 620px;
    overflow: hidden;
}

.home-hero .carousel,
.home-hero .carousel-inner,
.home-hero .carousel-item {
    height: 100% !important;
    margin-bottom: 0 !important;
}

.home-hero .carousel-item {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.home-hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to right, rgba(0,0,0,0.78) 0%, rgba(0,0,0,0.25) 65%, rgba(0,0,0,0.1) 100%),
        linear-gradient(to top, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0) 60%);
    pointer-events: none;
}

.home-hero-slide {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    padding-top: 68px; /* fixed navbar clearance */
}

.home-hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--theme-accent, #E1C038);
    margin-bottom: 1.25rem;
}

.home-hero-eyebrow::before {
    content: '';
    display: block;
    width: 28px;
    height: 2px;
    background: var(--theme-accent, #E1C038);
    flex-shrink: 0;
}

.home-hero-heading {
    font-size: clamp(2.6rem, 7.5vw, 5.8rem);
    font-weight: 800;
    line-height: 1.0;
    letter-spacing: -0.02em;
    color: #fff;
    margin-bottom: 1.25rem;
    text-transform: uppercase;
}

.home-hero-club {
    color: var(--theme-accent, #E1C038);
}

.home-hero-sub {
    font-size: clamp(0.95rem, 1.8vw, 1.2rem);
    font-weight: 300;
    color: rgba(255, 255, 255, 0.72);
    max-width: 460px;
    margin-bottom: 2.5rem;
    line-height: 1.65;
}

.home-hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Custom carousel indicators */
.home-carousel-indicators {
    position: absolute;
    bottom: 2.25rem;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    z-index: 10;
}

.home-indicator {
    width: 28px;
    height: 3px;
    background: rgba(255, 255, 255, 0.28);
    border: none;
    border-radius: 2px;
    padding: 0;
    cursor: pointer;
    transition: background 0.3s ease, width 0.3s ease;
}

.home-indicator.active {
    background: var(--theme-accent, #E1C038);
    width: 48px;
}

/* Scroll hint line */
.home-scroll-hint {
    position: absolute;
    bottom: 2.25rem;
    right: 2.5rem;
    z-index: 10;
}

.home-scroll-line {
    width: 1px;
    height: 52px;
    background: linear-gradient(to bottom, rgba(255,255,255,0.55), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 1; transform: scaleY(1) translateY(0); }
    50%       { opacity: 0.35; transform: scaleY(0.65) translateY(4px); }
}

/* ── Shared Buttons ── */
.home-btn-primary {
    display: inline-block;
    background-color: var(--theme-accent, #E1C038);
    color: #111 !important;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.8rem 2.1rem;
    border-radius: 4px;
    text-decoration: none !important;
    transition: background-color 0.2s, transform 0.2s, box-shadow 0.2s;
    border: none;
    cursor: pointer;
    white-space: nowrap;
}

.home-btn-primary:hover {
    background-color: #f0d050;
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(225, 192, 56, 0.35);
}

.home-btn-ghost {
    display: inline-block;
    background: transparent;
    color: #fff !important;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.8rem 2.1rem;
    border-radius: 4px;
    text-decoration: none !important;
    border: 1px solid rgba(255, 255, 255, 0.38);
    transition: border-color 0.2s, background 0.2s;
    white-space: nowrap;
}

.home-btn-ghost:hover {
    border-color: rgba(255, 255, 255, 0.75);
    background: rgba(255, 255, 255, 0.07);
}

.home-btn-sm {
    padding: 0.6rem 1.6rem;
    font-size: 0.78rem;
}

/* ── Stats Bar ── */
.home-stats-bar {
    background-color: var(--theme-surface, #1A1E25);
    border-top: 1px solid rgba(255,255,255,0.05);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.home-stat-item {
    padding: 2.25rem 1.5rem;
    text-align: center;
    border-right: 1px solid rgba(255,255,255,0.06);
    transition: background 0.2s;
}

.home-stat-item:last-child {
    border-right: none;
}

.home-stat-item:hover {
    background: rgba(255,255,255,0.025);
}

.home-stat-num {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--theme-accent, #E1C038);
    line-height: 1;
    letter-spacing: -0.03em;
    margin-bottom: 0.4rem;
}

.home-stat-num sup {
    font-size: 0.55em;
    font-weight: 600;
    color: rgba(255,255,255,0.45);
    vertical-align: super;
}

.home-stat-lbl {
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.38);
}

.home-stat-cta {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ── Shared Section Label / Heading ── */
.home-section-label {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--theme-accent, #E1C038);
    margin-bottom: 0.65rem;
    display: flex;
    align-items: center;
    gap: 0.65rem;
}

.home-section-label::before {
    content: '';
    display: block;
    width: 20px;
    height: 2px;
    background: var(--theme-accent, #E1C038);
    flex-shrink: 0;
}

.home-section-heading {
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
}

/* ── About ── */
.home-about {
    padding: 6rem 0;
}

.home-about-body {
    max-width: 800px;
    font-size: 1.05rem;
    line-height: 1.85;
    font-weight: 300;
}

.home-about-body p {
    margin-bottom: 1rem;
}

/* ── News ── */
.home-news {
    padding: 5.5rem 0 6rem;
    background-color: var(--theme-surface, #1A1E25);
    border-top: 1px solid rgba(255,255,255,0.04);
    border-bottom: 1px solid rgba(255,255,255,0.04);
}

.home-news-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 2.25rem;
}

.home-link-more {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--theme-accent, #E1C038) !important;
    text-decoration: none !important;
    transition: opacity 0.2s;
    white-space: nowrap;
    margin-bottom: 0.2rem;
}

.home-link-more:hover {
    opacity: 0.7;
}

.home-news-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    border-radius: 10px;
    overflow: hidden;
    background: var(--theme-bg, #222831);
    border: 1px solid rgba(255,255,255,0.06);
    text-decoration: none !important;
    color: inherit !important;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.home-news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 40px rgba(0,0,0,0.45);
    border-color: rgba(225, 192, 56, 0.28);
}

.home-news-card-img {
    height: 205px;
    overflow: hidden;
    background: rgba(0,0,0,0.25);
    flex-shrink: 0;
}

.home-news-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s ease;
}

.home-news-card:hover .home-news-card-img img {
    transform: scale(1.07);
}

.home-news-card-body {
    padding: 1.4rem 1.5rem 1.6rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.home-news-card-meta {
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;

    margin-bottom: 0.55rem;
}

.home-news-card-title {
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.35;
    margin-bottom: 0.45rem;
}

.home-news-card-sub {
    font-size: 0.875rem;
    font-weight: 300;
    line-height: 1.55;
    margin-top: auto;
    padding-top: 0.5rem;
}

/* ── Feature Sections ── */
.home-features {
    padding: 6rem 0;
}

.home-feature-row {
    display: flex;

    gap: 5rem;
    margin-bottom: 7rem;
}

.home-feature-row:last-child {
    margin-bottom: 0;
}

.home-feature-row-reverse {
    flex-direction: row-reverse;
}

.home-feature-text {
    flex: 1;
    min-width: 0;
}

.home-feature-img {
    flex: 1;
    min-width: 0;
}

.home-feature-img img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 12px;
    display: block;
    border: 1px solid rgba(255,255,255,0.06);
    box-shadow: 0 24px 48px rgba(0,0,0,0.35);
}

.home-feature-heading {
    font-size: clamp(1.6rem, 3.5vw, 2.4rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 1.25rem;
}

.home-feature-heading span {
    font-weight: 300;
}

.home-feature-body {
    font-size: 1rem;
    line-height: 1.82;
    font-weight: 300;
    margin-bottom: 2rem;
}

/* ── Responsive ── */
@media (max-width: 991.98px) {
    .home-feature-row,
    .home-feature-row-reverse {
        gap: 3rem;
    }
}

@media (max-width: 767.98px) {
    .home-feature-row,
    .home-feature-row-reverse {
        flex-direction: column !important;
        gap: 2rem;
        margin-bottom: 4rem;
    }

    .home-feature-img img {
        height: 260px;
    }

    .home-stat-item {
        padding: 1.6rem 1rem;
    }

    .home-scroll-hint {
        display: none;
    }

    .home-news-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }
}

@media (max-width: 575.98px) {
    .home-hero-cta {
        flex-direction: column;
        align-items: flex-start;
    }

    .home-hero-cta .home-btn-primary,
    .home-hero-cta .home-btn-ghost {
        width: 100%;
        text-align: center;
    }
}
