/* Full-screen hero specific styles */
.hero-fullscreen {
    position: relative;
    height: 100vh;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.55)), 
                url('https://images.unsplash.com/photo-1547970811-4a4f95dadb48?q=80&w=1470&auto=format&fit=crop');
    background-size: cover;
    background-position: center 30%;
    background-attachment: scroll;
    color: white;
    overflow: hidden;
}

.nav-fullscreen {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: background 0.3s ease;
    padding: 10px 0;
}

.nav-fullscreen.scrolled {
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.hero-content {
    max-width: 700px;
    padding: 20px 0;
    animation: heroFadeIn 1.2s ease-out;
}

.hero-content .subtitle {
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #FFFF;
    margin-bottom: 15px;
    display: block;
}

.hero-content h1 {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 25px;
    text-shadow: 2px 4px 15px rgba(0,0,0,0.5);
}

.hero-content h1 span {
    color: var(--savanna-gold);
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 35px;
    opacity: 0.95;
    line-height: 1.8;
}

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

.hero-buttons .btn {
    padding: 15px 35px;
    font-size: 1rem;
}

.hero-buttons .btn-outline {
    border-color: white;
    color: white;
}

.hero-buttons .btn-outline:hover {
    background: white;
    color: var(--earth-green);
}

/* Scroll indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
    cursor: pointer;
    z-index: 10;
}

.scroll-indicator span {
    display: block;
    width: 30px;
    height: 50px;
    border: 2px solid white;
    border-radius: 15px;
    position: relative;
}

.scroll-indicator span::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    background: white;
    border-radius: 50%;
    animation: scrollWheel 2s infinite;
}

@keyframes heroFadeIn {
    from {
    opacity: 0;
    transform: translateY(40px);
    }
    to {
    opacity: 1;
    transform: translateY(0);
    }
}

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

@keyframes scrollWheel {
    0% {
    opacity: 1;
    top: 8px;
    }
    100% {
    opacity: 0;
    top: 30px;
    }
}

/* Stats section */
.stats-section {
    background: white;
    padding: 60px 0;
    margin-top: -30px;
    position: relative;
    z-index: 10;
    border-radius: 40px 40px 0 0;
}

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

.stat-item h3 {
    font-size: 2.5rem;
    color: var(--savanna-gold);
    font-weight: 700;
}

.stat-item p {
    color: #666;
    margin-top: 5px;
}

/* Featured section */
.featured-section {
    padding: 80px 0;
    background: var(--light-cream);
}

.featured-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.featured-card {
    position: relative;
    height: 400px;
    border-radius: 30px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
}

.featured-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.featured-card:hover img {
    transform: scale(1.1);
}

.featured-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: white;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.featured-card:hover .featured-card-content {
    transform: translateY(0);
}

.featured-card-content h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-content h1 {
    font-size: 2.5rem;
    }
    
    .hero-content p {
    font-size: 1rem;
    }
    
    .featured-card {
    height: 300px;
    }
    
    .hero-fullscreen {
    background-attachment: scroll;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
    font-size: 2rem;
    }
    
    .hero-buttons {
    flex-direction: column;
    }
    
    .hero-buttons .btn {
    width: 100%;
    text-align: center;
    }
}
