﻿/* Hero Section */
.hero-section {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
    margin-top: 0;
}

/* Hero Slider */
.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Slides */
.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease;
    z-index: 1;
}

    .slide.active {
        opacity: 1;
        z-index: 2;
    }

/* Hero Images */
.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

/* Hero Content */
.hero-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    z-index: 3;
    pointer-events: none;
}

    .hero-content .container {
        pointer-events: auto;
    }

.hero-title {
    font-size: 48px;
    font-weight: 800;
    color: white;
    margin-bottom: 15px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.6);
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 20px;
    color: white;
    margin-bottom: 30px;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
    font-weight: 400;
}

/* Hero Buttons */
.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-btn {
    padding: 14px 35px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s ease;
    display: inline-block;
    border: 2px solid transparent;
    cursor: pointer;
    pointer-events: auto;
}

.hero-btn {
    background: white;
    color: #0a7c4d;
}

    .hero-btn:hover {
        background: #f8f8f8;
        transform: translateY(-3px);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    }

    .hero-btn.outline {
        background: transparent;
        color: white;
        border-color: white;
    }

        .hero-btn.outline:hover {
            background: white;
            color: #0a7c4d;
            transform: translateY(-3px);
        }

/* Slider Controls */
.slider-controls {
    position: absolute;
    bottom: 30px;
    left: 0;
    width: 100%;
    z-index: 4;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Slider Arrows */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    color: #0a7c4d;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 5;
}

    .slider-arrow:hover {
        background: white;
        transform: translateY(-50%) scale(1.1);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    }

    .slider-arrow.prev {
        left: 30px;
    }

    .slider-arrow.next {
        right: 30px;
    }

/* Slider Dots */
.slider-dots {
    display: flex;
    gap: 12px;
}

.dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

    .dot.active {
        background: white;
        transform: scale(1.2);
        border-color: #0a7c4d;
    }

    .dot:hover {
        background: white;
        transform: scale(1.1);
    }

/* Responsive Hero */

/* Tablet */
@media (max-width: 992px) {
    .hero-section {
        height: 500px;
    }

    .hero-title {
        font-size: 40px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .hero-btn {
        padding: 12px 30px;
        font-size: 15px;
    }

    .slider-arrow {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }

        .slider-arrow.prev {
            left: 20px;
        }

        .slider-arrow.next {
            right: 20px;
        }
}

/* Mobile Landscape */
@media (max-width: 768px) {
    .hero-section {
        height: 450px;
    }

    .hero-title {
        font-size: 34px;
        padding: 0 20px;
    }

    .hero-subtitle {
        font-size: 16px;
        padding: 0 20px;
        margin-bottom: 25px;
    }

    .hero-buttons {
        gap: 15px;
    }

    .hero-btn {
        padding: 12px 28px;
        font-size: 15px;
    }

    .slider-arrow {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

        .slider-arrow.prev {
            left: 15px;
        }

        .slider-arrow.next {
            right: 15px;
        }

    .slider-controls {
        bottom: 20px;
    }

    .dot {
        width: 12px;
        height: 12px;
    }
}

/* Mobile Portrait */
@media (max-width: 576px) {
    .hero-section {
        height: 400px;
    }

    .hero-title {
        font-size: 30px;
    }

    .hero-subtitle {
        font-size: 15px;
        margin-bottom: 20px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .hero-btn {
        width: 200px;
        text-align: center;
    }

    .slider-arrow {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }

        .slider-arrow.prev {
            left: 10px;
        }

        .slider-arrow.next {
            right: 10px;
        }

    .dot {
        width: 10px;
        height: 10px;
    }
}

/* Small Mobile */
@media (max-width: 400px) {
    .hero-section {
        height: 350px;
    }

    .hero-title {
        font-size: 26px;
    }

    .hero-subtitle {
        font-size: 14px;
    }
}
