/**
 * Hero Banner & Anniversary Styles
 * Canvas-animated sections with forest green palette
 */

/* ============================================
   HERO BANNER
   ============================================ */

.hero-banner {
    position: relative;
    min-height: 55vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #ffffff;
    width: 100%;
}

/* Split Hero Layout */
.hero-banner-split {
    min-height: 70vh;
    padding: 100px 0 60px;
}

.hero-container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 48px;
    width: 100%;
}

.hero-content-left {
    text-align: center;
    padding: 40px 0;
    max-width: none;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hero-content-left .hero-text {
    align-items: center;
}

.hero-content-left .hero-buttons {
    justify-content: center;
}

.hero-image {
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    height: 100%;
}

.hero-image-inner {
    position: relative;
    display: inline-block;
    border-radius: 10px;
    overflow: hidden;
}

.hero-image-img {
    max-width: 100%;
    max-height: 500px;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
}

.hero-image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 10px 16px;
    background: linear-gradient(to left, #111827 0%, #111827 50%, rgba(17, 24, 39, 0.3) 100%);
    text-align: center;
}

.hero-image-title {
    font-size: 0.8125rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 2px;
}

.hero-image-tagline {
    font-size: 0.6875rem;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 0.5px;
    margin: 0;
}

.hero-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 40px 24px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hero-text {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-title {
    font-family: 'Patrick Hand', cursive;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 400;
    color: #1e3a1e;
    margin-bottom: 20px;
    line-height: 1.3;
}

.hero-title-light {
    text-transform: lowercase;
    font-size: 0.7em;
    color: #4b5563;
}

.hero-subtitle {
    font-size: clamp(0.75rem, 1.2vw, 0.875rem);
    color: #6b7280;
    margin-bottom: 36px;
    font-weight: 500;
    line-height: 1.5;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    border: 2px solid transparent;
}

.hero-btn-primary {
    background: #2d5016;
    color: #fff;
    border-color: #2d5016;
}

.hero-btn-secondary {
    background: transparent;
    color: #DC2626;
    border: 2px solid #DC2626;
    transition: all 0.3s ease;
}

.hero-btn-secondary:hover {
    background: #DC2626;
    color: #ffffff;
}

/* ============================================
   ANNIVERSARY BANNER
   ============================================ */

.anniversary-banner {
    position: relative;
    padding: 48px 0;
    overflow: hidden;
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 50%, #d1fae5 100%);
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.anniversary-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.anniversary-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 24px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.anniversary-since {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    color: #2d5016;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.anniversary-title {
    font-family: 'Patrick Hand', cursive;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 400;
    color: #1e3a1e;
    margin-bottom: 16px;
    line-height: 1.2;
}

.anniversary-tagline {
    font-family: 'Inter', sans-serif;
    font-size: clamp(0.875rem, 1.5vw, 1rem);
    color: #3d6b1f;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
}


/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 992px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 0 24px;
        gap: 32px;
    }

    .hero-content-left {
        text-align: center;
        order: 1;
    }

    .hero-content-left .hero-text {
        align-items: center;
    }

    .hero-content-left .hero-buttons {
        justify-content: center;
    }

    .hero-image {
        order: 2;
        justify-content: center;
    }

    .hero-image-img {
        max-height: 350px;
    }

    .hero-banner-split {
        min-height: auto;
        padding: 60px 0 0;
    }
}

@media (max-width: 768px) {
    .hero-banner {
        min-height: 50vh;
        padding-top: 30px;
    }

    .hero-banner-split {
        padding: 40px 0 0;
    }

    .hero-content {
        padding: 30px 20px;
    }

    .hero-title {
        margin-bottom: 16px;
    }

    .hero-subtitle {
        margin-bottom: 28px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-btn {
        width: 100%;
        max-width: 280px;
    }

    .hero-image-img {
        max-height: 280px;
    }

    .anniversary-banner {
        padding: 60px 0;
    }

    .anniversary-content {
        padding: 0 20px;
    }
}

@media (max-width: 480px) {
    .hero-banner {
        padding-top: 50px;
    }

    .hero-btn {
        padding: 12px 24px;
        font-size: 0.9375rem;
    }

    .anniversary-banner {
        padding: 50px 0;
    }

    .anniversary-since {
        font-size: 0.75rem;
        padding: 6px 16px;
    }
}
