/* ==========================================================================
   HOMEPAGE STYLES
   ========================================================================== */

/* Remove header spacer on homepage - hero is full bleed */
.home .header-spacer { display: none; }

/* ===== HERO ===== */
.home-hero {
    position: relative;
    min-height: 580px;
    display: flex;
    align-items: flex-end;
    background-color: var(--dark-green);
    background-size: cover;
    background-position: center;
    padding: 0 0 48px;
}

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

.home-hero-inner {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 40px;
}

.home-hero-content {
    flex: 1;
    color: var(--white);
    max-width: 520px;
}

.home-hero-content h1 {
    color: var(--white);
    font-size: 2.75rem;
    margin-bottom: 12px;
    line-height: 1.1;
}

.hero-subtext {
    font-size: 0.9375rem;
    opacity: 0.9;
    margin-bottom: 24px;
    line-height: 1.6;
    max-width: 420px;
}

.hero-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

/* Hero Card (Notice + Events) */
.hero-card {
    flex: 0 0 320px;
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0,0,0,0.15);
}

.notice-card {
    padding: 20px 20px 20px 24px;
    border-bottom: 1px solid var(--medium-gray);
    border-left: 4px solid var(--gold);
}

.notice-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}

.notice-icon {
    color: var(--gold);
    flex-shrink: 0;
}

.notice-header .label-text {
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    color: var(--dark-green);
}

.notice-card p {
    font-size: 0.875rem;
    color: var(--text-primary);
    line-height: 1.6;
    margin: 0;
}

.events-card {
    padding: 20px;
}

.events-header {
    margin-bottom: 16px;
    font-size: 0.6875rem;
    color: var(--text-light);
}

.event-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 10px 0;
}
.event-item + .event-item {
    border-top: 1px solid var(--light-gray);
}

.event-date-badge {
    flex: 0 0 48px;
    height: 48px;
    background: var(--sage);
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    line-height: 1.1;
}

.event-day {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--white);
}

.event-month {
    font-size: 0.6875rem;
    text-transform: uppercase;
    color: var(--white);
    font-weight: 600;
}

.event-details {
    display: flex;
    flex-direction: column;
}

.event-details strong {
    font-size: 0.875rem;
    color: var(--text-primary);
}

.event-loc {
    font-size: 0.75rem;
    color: var(--text-light);
}

/* ===== CHAMPIONS INTRO ===== */
.home-intro {
    text-align: left;
}

.home-intro .container {
    max-width: var(--container-width);
}

.home-intro h2 {
    margin-bottom: 16px;
}

.intro-text {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-body);
    max-width: 720px;
    margin-bottom: 28px;
}

.intro-image-full {
    width: 80%;
    margin: 40px auto 0;
    max-height: 480px;
    overflow: hidden;
    border-radius: 12px;
}

@media (max-width: 768px) {
    .intro-image-full {
        width: 100%;
        border-radius: 0;
    }
}

.intro-image-full img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ===== SEE A BEAR ===== */
.home-bear {
    position: relative;
    padding: 80px 0;
    background-color: var(--dark-green);
    background-size: cover;
    background-position: center;
    color: var(--white);
}

.home-bear-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.3) 100%);
    z-index: 1;
}

.home-bear-inner {
    position: relative;
    z-index: 2;
    max-width: 560px;
}

.home-bear h2 {
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 12px;
}

.home-bear p {
    opacity: 0.9;
    margin-bottom: 24px;
    line-height: 1.7;
}

/* ===== IMPACT ===== */
.home-impact {
    background-color: var(--cream);
}

.home-impact h2 {
    margin-bottom: 12px;
}

.impact-video {
    max-width: 640px;
    margin: 0 auto;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 16/9;
    background: var(--light-gray);
}

.impact-video iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* ===== TESTIMONIAL ===== */
.home-testimonial {
    background-color: var(--dark-green);
    padding: 80px 0;
    color: var(--white);
}

.home-testimonial blockquote {
    max-width: 680px;
    margin: 0 auto 24px;
}

.home-testimonial blockquote p {
    font-family: var(--font-heading);
    font-style: italic;
    font-size: 1.5rem;
    line-height: 1.5;
    color: var(--white);
    margin-bottom: 24px;
}

.home-testimonial blockquote footer {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.home-testimonial blockquote footer strong {
    font-size: 1rem;
}

.home-testimonial blockquote footer span {
    font-size: 0.875rem;
    opacity: 0.7;
}

.testimonial-link:hover {
    opacity: 0.8;
}

/* ===== RECENT NEWS ===== */
.home-news {
    background-color: var(--white);
}

.home-news-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
}

.home-news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.home-news-card {
    display: block;
    text-decoration: none;
    color: inherit;
}
.home-news-card:hover h4 {
    color: var(--dark-green);
}

.home-news-card-image {
    width: 100%;
    aspect-ratio: 4/3;
    border-radius: 10px;
    overflow: hidden;
    background: var(--light-gray);
}

.home-news-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}
.home-news-card:hover .home-news-card-image img {
    transform: scale(1.03);
}

.home-news-card h4 {
    font-size: 1.125rem;
    margin-top: 6px;
    margin-bottom: 4px;
    transition: color 0.3s ease;
}

.home-news-card p {
    font-size: 0.875rem;
    color: var(--text-light);
}

/* ===== ISLAND PARK BEARS (Homepage version) ===== */
.home-bears {
    padding: 80px 0;
    background: var(--cream);
}
.home-bears-inner {
    display: flex;
    align-items: center;
    gap: 48px;
}
.home-bears-text {
    flex: 1;
}
.home-bears-text h3 {
    margin-bottom: 12px;
}
.home-bears-text p {
    color: var(--text-body);
    line-height: 1.7;
    margin-bottom: 20px;
    max-width: 440px;
}
.home-bears-image {
    flex: 0 0 45%;
    border-radius: 12px;
    overflow: hidden;
    min-height: 300px;
    background-color: var(--light-gray);
}
.home-bears-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .home-hero-inner {
        flex-direction: column;
        align-items: flex-start;
    }
    .hero-card {
        flex: none;
        width: 100%;
        max-width: 400px;
    }
}

@media (max-width: 768px) {
    .home-hero {
        min-height: auto;
        padding: 100px 0 40px;
    }
    .home-hero-content h1 {
        font-size: 2.5rem;
    }
    .hero-card {
        max-width: 100%;
    }
    .home-news-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .home-news-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    .home-testimonial blockquote p {
        font-size: 1.25rem;
    }
    .home-bears-inner {
        flex-direction: column;
    }
    .home-bears-image {
        flex: none;
        width: 100%;
    }
}