﻿/* ===== HERO SECTION ===== */
.hero-section {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.hero-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

    .hero-slider .slide {
        position: absolute;
        width: 100%;
        height: 100%;
        opacity: 0;
        transition: opacity 1.5s ease, transform 1.5s ease;
        transform: scale(1.05);
    }

        .hero-slider .slide.active {
            opacity: 1;
            transform: scale(1);
            z-index: 2;
        }

    .hero-slider img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        filter: brightness(70%);
    }

/* Caption Styling */
.caption {
    position: absolute;
    top: 40%; /* shifted UP from 50% */
    left: 10%;
    transform: translateY(-40%);
    color: #fff;
    max-width: 700px;
    animation: fadeInUp 1.2s ease forwards;
}

    .caption h1 {
        font-size: 62px; /* bigger than normal h1 */
        font-weight: 1000; /* extra bold */
        margin-bottom: 25px;
        line-height: 1.15;
        text-transform: uppercase;
        text-shadow: 2px 3px 12px rgba(0, 0, 0, 0.8);
    }

        .caption h1 .highlight {
            color: #ffeb3b; /* Yellow highlight */
            font-weight: 1000;
        }

/* CTA Buttons */
.cta-buttons {
    display: flex;
    align-items: center;
    gap: 25px;
    flex-wrap: wrap;
}

.btn-explore {
    display: inline-block;
    padding: 16px 32px;
    background: #2e7d32;
    color: #fff;
    border-radius: 10px;
    font-size: 20px;
    font-weight: 700;
    text-decoration: none;
    transition: background 0.3s ease, transform 0.3s ease;
}

    .btn-explore:hover {
        background: #43a047;
        transform: scale(1.08);
    }

.btn-call {
    display: inline-block;
    background: #fff;
    color: #1b5e20;
    padding: 14px 26px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

    .btn-call:hover {
        transform: scale(1.08);
    }

/* Dots Navigation */
.slider-dots {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 5;
}

    .slider-dots span {
        width: 14px;
        height: 14px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.5);
        cursor: pointer;
        transition: background 0.3s ease, transform 0.3s ease;
    }

        .slider-dots span.active {
            background: #2e7d32;
            transform: scale(1.3);
        }

/* Caption Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 992px) {
    .caption h1 {
        font-size: 48px;
    }
}

@media (max-width: 768px) {
    .caption {
        top: 35%; /* adjust higher on mobile */
        transform: translateY(-35%);
    }

        .caption h1 {
            font-size: 32px;
        }

    .btn-explore {
        font-size: 16px;
        padding: 10px 20px;
    }
}
