/* Home Page Specific Styles */

/* Hero Section */
.hero {
    min-height: 100vh;
    background: linear-gradient(rgba(45, 95, 63, 0.6), rgba(255, 153, 51, 0.3)),
                url('https://images.unsplash.com/photo-1488646953014-85cb44e25828?w=1920&h=1080&fit=crop') center/cover;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    color: white;
    padding: 120px 20px 60px;
    will-change: transform;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(45, 95, 63, 0.5), rgba(255, 153, 51, 0.2));
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    animation: fadeInUp 1s ease;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.4);
    animation: fadeInUp 1s ease 0.2s both;
}

.hero-subtitle {
    font-size: 1.4rem;
    margin-bottom: 40px;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.4);
    animation: fadeInUp 1s ease 0.4s both;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-bottom: 40px;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.5s both;
}

.hero-stat {
    text-align: center;
}

.hero-stat h3 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-orange);
    margin-bottom: 5px;
}

.hero-stat p {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
    cursor: pointer;
}

.scroll-indicator i {
    font-size: 2rem;
    color: white;
}

/* About Preview Section */
.about-preview {
    background: var(--light-cream);
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.about-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 20px;
}

/* Services Preview Section */
.services-preview {
    background: white;
}

/* Tours Preview Section */
.tours-preview {
    background: var(--light-cream);
}

.tours-category {
    margin-bottom: 60px;
}

.category-title {
    font-size: 2rem;
    color: var(--primary-green);
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 3px solid var(--primary-orange);
}

/* Testimonials Preview Section */
.testimonials-preview {
    background: white;
}

/* Contact CTA Section */
.contact-cta {
    background: linear-gradient(135deg, var(--primary-green), var(--accent-green));
    color: white;
    text-align: center;
}

.contact-cta .section-title {
    color: white;
}

.contact-cta .section-title::after {
    background: var(--primary-orange);
}

.contact-cta .section-subtitle {
    color: rgba(255, 255, 255, 0.9);
}

/* Responsive Design */
@media (max-width: 968px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .hero-stat h3 {
        font-size: 2.5rem;
    }
}

@media (max-width: 600px) {
    .hero {
        padding: 100px 20px 40px;
        background-attachment: scroll;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-stats {
        gap: 30px;
    }

    .hero-stat h3 {
        font-size: 2rem;
    }

    .category-title {
        font-size: 1.6rem;
    }
}