﻿/* Hero Section Styles - Pure Image Slideshow, No Overlays */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --hero-text-light: #ffffff;
    --hero-text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.5);
    --primary-green: #2e7d32;
    --accent-gold: #ffc107;
    --accent-orange: #ff9800;
}

/* Hero Section */
.hero-section {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
}

/* Pure Image Slideshow - No backgrounds, no overlays */
.hero-slideshow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.slide-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

    .slide-image.active {
        opacity: 1;
    }

/* Hero Content - Text only, transparent background */
.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    text-align: center;
}

.hero-container {
    max-width: 1200px;
    width: 90%;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-text-wrapper {
    animation: fadeInUp 1s ease-out;
}

/* Hero Badge */
.hero-badge {
    margin-bottom: 25px;
    display: inline-block;
}

.badge-text {
    display: inline-block;
    background: transparent;
    padding: 8px 24px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.8);
    text-shadow: var(--hero-text-shadow);
}

/* Hero Title */
.hero-title {
    font-size: 4.2rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: var(--hero-text-shadow);
    color: #ffffff;
}

.title-part {
    display: inline-block;
    color: #ffffff;
    margin-right: 10px;
}

.title-highlight {
    display: inline-block;
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-orange));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: none;
}

/* Hero Subtitle */
.hero-subtitle-wrapper {
    margin-bottom: 35px;
    overflow: hidden;
}

.hero-subtitle {
    font-size: 1.3rem;
    font-weight: 500;
    color: #ffffff;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
    text-shadow: var(--hero-text-shadow);
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 0.3s forwards;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-bottom: 45px;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    animation: fadeInUp 0.8s ease-out 0.5s forwards;
    opacity: 0;
    transform: translateY(20px);
    background: transparent;
    padding: 10px 20px;
    min-width: 120px;
}

    .stat-item:nth-child(1) {
        animation-delay: 0.5s;
    }

    .stat-item:nth-child(3) {
        animation-delay: 0.6s;
    }

    .stat-item:nth-child(5) {
        animation-delay: 0.7s;
    }

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent-gold);
    margin-bottom: 5px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.stat-label {
    font-size: 0.8rem;
    font-weight: 600;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.stat-divider {
    width: 1px;
    height: 50px;
    background: rgba(255, 255, 255, 0.5);
}

/* Buttons */
.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease-out 0.8s forwards;
    opacity: 0;
    transform: translateY(20px);
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 35px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-green), #1b5e20);
    color: white;
    border: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

    .btn-primary:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 25px rgba(46, 125, 50, 0.5);
    }

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

    .btn-secondary:hover {
        background: rgba(255, 255, 255, 0.15);
        transform: translateY(-3px);
        border-color: var(--accent-gold);
    }

.btn-icon {
    transition: transform 0.3s ease;
}

.btn:hover .btn-icon {
    transform: translateX(5px);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    animation: bounce 2s infinite;
    background: transparent;
    padding: 10px 15px;
    border-radius: 40px;
}

.scroll-mouse {
    width: 26px;
    height: 42px;
    border: 2px solid white;
    border-radius: 20px;
    position: relative;
}

.scroll-wheel {
    width: 3px;
    height: 8px;
    background: white;
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollWheel 1.5s infinite;
}

.scroll-text {
    font-size: 0.7rem;
    color: white;
    opacity: 0.9;
    letter-spacing: 1px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scrollWheel {
    0% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }

    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(15px);
    }
}

@keyframes bounce {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(-10px);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 3.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .stat-number {
        font-size: 1.8rem;
    }
}

@media (max-width: 768px) {
    .hero-section {
        min-height: 500px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .badge-text {
        font-size: 0.8rem;
        padding: 6px 16px;
    }

    .hero-stats {
        gap: 15px;
        margin-bottom: 35px;
    }

    .stat-number {
        font-size: 1.5rem;
    }

    .stat-label {
        font-size: 0.7rem;
    }

    .stat-divider {
        height: 40px;
    }

    .btn {
        padding: 12px 28px;
        font-size: 0.9rem;
    }

    .hero-buttons {
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
    }

    .title-part {
        display: block;
        margin-bottom: 5px;
    }

    .hero-subtitle {
        font-size: 0.9rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 12px;
    }

    .stat-divider {
        display: none;
    }

    .stat-item {
        width: 100%;
        max-width: 180px;
        margin: 0 auto;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
        max-width: 220px;
        margin: 0 auto;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

    .scroll-indicator {
        display: none;
    }
}

@media (max-height: 600px) and (orientation: landscape) {
    .hero-title {
        font-size: 2rem;
        margin-bottom: 10px;
    }

    .hero-subtitle {
        font-size: 0.9rem;
        margin-bottom: 15px;
    }

    .hero-stats {
        margin-bottom: 20px;
    }

    .scroll-indicator {
        display: none;
    }
}
