/* ========================================
   HERO SLIDER STYLES
   ======================================== */

.hero-slider-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    background-color: #000;
}

.hero-slider {
    position: relative;
    width: 100%;
    height: 100vh;
    max-height: 800px;
}

/* Individual Slide Styling */
.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #000;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-slide.active {
    opacity: 1;
    z-index: 10;
}

/* Dark Overlay for Better Text Readability */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.2) 100%);
    z-index: 1;
}

/* Slide Content */
.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    padding: 20px;
    animation: slideInUp 0.8s ease-out 0.2s backwards;
}

/* Headline */
.hero-headline {
    font-size: 3.5rem;
    font-weight: 900;
    letter-spacing: 2px;
    margin: 0 0 20px 0;
    text-transform: uppercase;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.6);
    line-height: 1.2;
    color: #fff;
}

.hero-headline::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: #6a351b;
    margin: 20px auto 0;
}

/* Subheadline */
.hero-subheadline {
    font-size: 1.5rem;
    font-weight: 300;
    letter-spacing: 1px;
    margin: 0 0 30px 0;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.6);
    color: #e0e0e0;
}

/* Call-to-Action Button */
.hero-cta-btn {
    display: inline-block;
    padding: 14px 40px;
    background-color: #6a351b;
    color: #fff;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid #6a351b;
    border-radius: 5px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.hero-cta-btn:hover {
    background-color: transparent;
    color: #6a351b;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(106, 53, 27, 0.3);
}

.hero-cta-btn:active {
    transform: translateY(-1px);
}

/* Navigation Buttons */
.hero-controls {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    z-index: 20;
    pointer-events: none;
}

.hero-nav-btn {
    pointer-events: auto;
    width: 50px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.2);
    color: #fff;
    border: none;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-nav-btn:hover {
    background-color: #6a351b;
    transform: scale(1.1);
}

.hero-nav-btn:active {
    transform: scale(0.95);
}

/* Slide Indicators (Dots) */
.hero-indicators {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 20;
    display: flex;
    gap: 12px;
}

.hero-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.4);
    border: none;
    cursor: pointer;
    transition: all 0.4s ease;
}

.hero-indicator:hover {
    background-color: rgba(255, 255, 255, 0.7);
}

.hero-indicator.active {
    background-color: #6a351b;
    width: 30px;
    border-radius: 6px;
}

/* ========================================
   ANIMATIONS
   ======================================== */

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ========================================
   TABLET RESPONSIVENESS (768px - 1024px)
   ======================================== */

@media (max-width: 1024px) {
    .hero-slider {
        height: 70vh;
        max-height: 600px;
    }

    .hero-headline {
        font-size: 2.5rem;
        letter-spacing: 1.5px;
    }

    .hero-subheadline {
        font-size: 1.2rem;
    }

    .hero-headline::after {
        width: 60px;
    }
}

/* ========================================
   MOBILE RESPONSIVENESS (< 768px)
   ======================================== */

@media (max-width: 768px) {
    .hero-slider {
        height: 60vh;
        max-height: 500px;
    }

    .hero-headline {
        font-size: 1.8rem;
        letter-spacing: 1px;
        margin-bottom: 15px;
    }

    .hero-headline::after {
        width: 50px;
        margin: 15px auto 0;
    }

    .hero-subheadline {
        font-size: 0.95rem;
        margin-bottom: 20px;
        font-weight: 400;
    }

    .hero-cta-btn {
        padding: 12px 30px;
        font-size: 0.95rem;
    }

    .hero-nav-btn {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
        padding: 0 8px;
    }

    .hero-controls {
        padding: 0 15px;
    }

    .hero-indicators {
        bottom: 20px;
        gap: 10px;
    }

    .hero-indicator {
        width: 10px;
        height: 10px;
    }

    .hero-indicator.active {
        width: 25px;
    }
}

/* ========================================
   SMALL MOBILE RESPONSIVENESS (< 480px)
   ======================================== */

@media (max-width: 480px) {
    .hero-slider {
        height: 55vh;
        max-height: 400px;
    }

    .hero-content {
        padding: 15px;
    }

    .hero-headline {
        font-size: 1.4rem;
        letter-spacing: 0.5px;
        margin-bottom: 10px;
    }

    .hero-headline::after {
        width: 40px;
        height: 3px;
        margin: 10px auto 0;
    }

    .hero-subheadline {
        font-size: 0.85rem;
        margin-bottom: 15px;
        letter-spacing: 0px;
    }

    .hero-cta-btn {
        padding: 10px 25px;
        font-size: 0.85rem;
        border-radius: 4px;
    }

    .hero-nav-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .hero-controls {
        padding: 0 10px;
    }

    .hero-indicators {
        bottom: 15px;
        gap: 8px;
    }

    .hero-indicator {
        width: 8px;
        height: 8px;
    }

    .hero-indicator.active {
        width: 20px;
    }
}

/* ========================================
   TOUCH DEVICE OPTIMIZATIONS
   ======================================== */

@media (hover: none) and (pointer: coarse) {
    .hero-nav-btn:active {
        background-color: #6a351b;
    }

    .hero-cta-btn:active {
        background-color: rgba(106, 53, 27, 0.8);
    }
}
