/* ==========================================================================
   Hero Component Styles
   ONLY using: golden-green (#8B9A46), dark-red (#8B2C2C), pale-yellow (#FFF8DC)
   ========================================================================== */

.hero-section {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, 
        rgba(139, 154, 70, 0.05) 0%, 
        rgba(139, 44, 44, 0.03) 100%);
    padding: 5rem 2rem 4rem;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle, rgba(139, 154, 70, 0.1) 1px, transparent 1px);
    background-size: 20px 20px;
    opacity: 0.3;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
}

/* Hero Typography */
.hero-title {
    font-size: 3rem;
    font-weight: 400;
    color: var(--dark-red);
    margin-bottom: 1.5rem;
    line-height: 1.2;
    font-family: 'Georgia', serif;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--dark-red);
    opacity: 0.85;
    max-width: 600px;
    margin: 0 auto 2rem;
    line-height: 1.8;
}

.hero-description {
    font-size: 1rem;
    color: var(--dark-red);
    opacity: 0.75;
    max-width: 500px;
    margin: 0 auto 1.5rem;
    line-height: 1.7;
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 3.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.5rem;
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 4rem;
    }
    
    .hero-subtitle {
        font-size: 1.75rem;
    }
}

/* Hero Actions */
.hero-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    margin-bottom: 3rem;
}

@media (min-width: 640px) {
    .hero-actions {
        flex-direction: row;
        justify-content: center;
    }
}

.hero-actions .btn {
    min-width: 160px;
}

/* Hero with Image/Video */
.hero-with-media {
    padding: 6rem 2rem;
}

.hero-media-container {
    display: grid;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .hero-media-container {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

.hero-media {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(139, 44, 44, 0.15);
    background: var(--pale-yellow);
    border: 2px solid var(--golden-green);
}

.hero-media img,
.hero-media video {
    width: 100%;
    height: auto;
    display: block;
}

.hero-media::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(139, 154, 70, 0.1), rgba(139, 44, 44, 0.1));
    pointer-events: none;
}

/* Hero Stats */
.hero-stats {
    margin-top: 4rem;
    padding: 2rem;
    background: rgba(255, 248, 220, 0.8);
    border-radius: 30px;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(139, 154, 70, 0.3);
}

.hero-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem;
    text-align: center;
}

.hero-stat {
    padding: 1rem;
}

.hero-stat-number {
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--golden-green);
    margin-bottom: 0.5rem;
    display: block;
}

.hero-stat-label {
    font-size: 0.875rem;
    color: var(--dark-red);
    opacity: 0.8;
    font-weight: 400;
}

/* Hero Badges */
.hero-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 248, 220, 0.9);
    border: 1px solid rgba(139, 154, 70, 0.3);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 400;
    color: var(--dark-red);
    backdrop-filter: blur(10px);
}

.hero-badge-icon {
    width: 16px;
    height: 16px;
    color: var(--golden-green);
}

/* Split Hero Layout */
.hero-split {
    background: linear-gradient(135deg, var(--golden-green) 50%, var(--pale-yellow) 50%);
}

.hero-split .hero-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: left;
}

@media (min-width: 1024px) {
    .hero-split .hero-content {
        grid-template-columns: 1fr 1fr;
        align-items: center;
    }
}

/* Hero with Background Video */
.hero-video {
    position: relative;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
}

.hero-video-background {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translateX(-50%) translateY(-50%);
    z-index: 1;
}

.hero-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(139, 44, 44, 0.4);
    z-index: 2;
}

.hero-video .hero-content {
    position: relative;
    z-index: 3;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: var(--pale-yellow);
}

.hero-video .hero-title,
.hero-video .hero-subtitle {
    color: var(--pale-yellow);
}

/* Hero Animations */
@keyframes heroFadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes heroFadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes heroFadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-animate .hero-title {
    animation: heroFadeInUp 0.8s ease-out 0.2s both;
}

.hero-animate .hero-subtitle {
    animation: heroFadeInUp 0.8s ease-out 0.4s both;
}

.hero-animate .hero-actions {
    animation: heroFadeInUp 0.8s ease-out 0.6s both;
}

.hero-animate .hero-media {
    animation: heroFadeInRight 0.8s ease-out 0.8s both;
}

/* Hero Scroll Indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--dark-red);
    opacity: 0.6;
    animation: heroScrollBounce 2s infinite;
}

.hero-scroll-text {
    font-size: 0.875rem;
    font-weight: 400;
}

.hero-scroll-arrow {
    width: 24px;
    height: 24px;
}

@keyframes heroScrollBounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* Hero Feature Highlights */
.hero-features {
    margin-top: 3rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: rgba(255, 248, 220, 0.8);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(139, 154, 70, 0.2);
}

.hero-feature-icon {
    width: 32px;
    height: 32px;
    color: var(--golden-green);
    flex-shrink: 0;
}

.hero-feature-text {
    font-size: 0.875rem;
    font-weight: 400;
    color: var(--dark-red);
}

/* Hero CTA Banner */
.hero-cta-banner {
    margin-top: 2rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, var(--golden-green), rgba(139, 154, 70, 0.8));
    border-radius: 30px;
    text-align: center;
    color: var(--pale-yellow);
}

.hero-cta-title {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 0.75rem;
    color: var(--pale-yellow);
}

.hero-cta-text {
    margin-bottom: 1rem;
    color: var(--pale-yellow);
    opacity: 0.95;
}

/* Responsive Adjustments */
@media (max-width: 640px) {
    .hero-section {
        padding: 4rem 1rem 3rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hero-features {
        grid-template-columns: 1fr;
    }
}

/* Dark Hero Variant */
.hero-dark {
    background: linear-gradient(135deg, var(--dark-red), rgba(139, 44, 44, 0.8));
    color: var(--pale-yellow);
}

.hero-dark .hero-title,
.hero-dark .hero-subtitle {
    color: var(--pale-yellow);
}

.hero-dark .hero-description {
    color: var(--pale-yellow);
    opacity: 0.9;
}

/* Hero Pattern Overlays */
.hero-pattern-dots::before {
    background-image: radial-gradient(circle, var(--golden-green) 1px, transparent 1px);
    background-size: 20px 20px;
}

.hero-pattern-lines::before {
    background-image: linear-gradient(45deg, transparent 49%, var(--golden-green) 49%, var(--golden-green) 51%, transparent 51%);
    background-size: 20px 20px;
}