.home-hero {
    min-height: 100vh;
    position: relative;
    background: url('../images/APTJSO LOGO.png') center center / cover no-repeat;
    padding-top: 40px;
    overflow: hidden;
}

.home-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(40, 60, 85, 0.85);
    z-index: 1;
}

.home-hero .container {
    z-index: 2;
}

.home-eyebrow {
    display: inline-flex;
    align-items: center;
    background: rgba(200, 169, 81, 0.15);
    border: 1px solid rgba(200, 169, 81, 0.3);
    color: var(--accent);
    font-size: clamp(0.55rem, 1.2vw, 0.68rem);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: clamp(0.6px, 0.15vw, 1.8px);
    padding: clamp(3px, 0.5vw, 6px) clamp(6px, 1vw, 14px);
    border-radius: var(--radius-sm);
    margin-bottom: clamp(0.4rem, 1.5vw, 1.25rem);
}

.home-hero-title {
    font-size: clamp(1.5rem, 4vw, 3.2rem);
    font-weight: 800;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: clamp(0.4rem, 1.5vw, 1.25rem);
}

.home-hero-title span {
    color: var(--accent);
}

.home-hero-subtitle {
    font-size: clamp(0.72rem, 1.4vw, 1rem);
    color: rgba(255, 255, 255, 0.7);
    max-width: 500px;
    line-height: 1.7;
    margin-bottom: clamp(0.6rem, 2vw, 1.75rem);
}

.btn-hero-cta {
    background: var(--accent);
    color: var(--white);
    font-size: clamp(0.55rem, 1.2vw, 0.82rem);
    font-weight: 700;
    padding: clamp(5px, 0.8vw, 10px) clamp(10px, 1.8vw, 24px);
    border-radius: clamp(4px, 0.5vw, 6px);
    border: none;
    transition: all var(--transition);
    text-decoration: none;
}

.btn-hero-cta:hover {
    background: var(--accent-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(200, 169, 81, 0.3);
}

.home-theme-text {
    position: absolute;
    bottom: clamp(10px, 2vw, 30px);
    left: 0;
    right: 0;
    text-align: center;
    color: var(--accent);
    font-size: clamp(0.55rem, 1.5vw, 1.2rem);
    font-weight: 700;
    letter-spacing: 0.5px;
    margin: 0;
}

.animate-on-scroll {
    opacity: 0;
}

.animate-on-scroll.show {
    opacity: 1;
}

.event-countdown-label {
    font-size: clamp(0.55rem, 1.2vw, 0.72rem);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--accent);
    margin-bottom: 4px;
}

.event-countdown-name {
    font-size: clamp(0.75rem, 1.6vw, 1rem);
    font-weight: 700;
    color: var(--white);
    margin-bottom: clamp(8px, 1.5vw, 14px);
}

.event-countdown-timer {
    display: flex;
    align-items: center;
    gap: clamp(4px, 1vw, 10px);
}

.countdown-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-sm);
    padding: clamp(6px, 1vw, 12px) 0;
    width: clamp(48px, 6vw, 68px);
}

.countdown-num {
    font-size: clamp(1rem, 2.5vw, 1.6rem);
    font-weight: 800;
    color: var(--white);
    line-height: 1;
}

.countdown-lbl {
    font-size: clamp(0.45rem, 0.9vw, 0.6rem);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 4px;
}

.countdown-sep {
    font-size: clamp(0.9rem, 2vw, 1.4rem);
    font-weight: 700;
    color: rgba(255, 255, 255, 0.3);
}

.event-countdown-venue {
    font-size: clamp(0.5rem, 1.1vw, 0.78rem);
    color: rgba(255, 255, 255, 0.5);
    margin-top: clamp(6px, 1vw, 10px);
    margin-bottom: 0;
}

.event-countdown-venue i {
    margin-right: 4px;
}

.hero-logo-wrap {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-logo-img {
    width: clamp(150px, 15vw, 250px);
    height: auto;
    filter: drop-shadow(0 8px 30px rgba(0, 0, 0, 0.3));
    animation: floatLogo 4s ease-in-out infinite;
}

@keyframes floatLogo {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-10px); }
}

@media (max-width: 991px) {
    .home-hero {
        min-height: unset;
        aspect-ratio: 2000 / 1398;
    }

    .home-hero .container,
    .home-hero .col-lg-7 {
        text-align: center;
    }

    .home-hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .home-hero-overlay {
        background: rgba(40, 60, 85, 0.7);
    }

    #event-countdown-section {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .event-countdown-timer {
        justify-content: center;
    }
}
