/**
 * NESTPRO - Hero Section Styles
 */

.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    max-height: 1000px;
    overflow: hidden;
    background: var(--navy);
}

/* Slider */
.hero-slider {
    position: absolute;
    inset: 0;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
}

.hero-slide.active {
    opacity: 1;
    z-index: 2;
}

.hero-slide-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transform: scale(1.05);
    transition: transform 8s ease;
}

.hero-slide.active .hero-slide-bg {
    transform: scale(1);
}

/* Dark overlay - set to transparent for 100% image visibility */
.hero-slide-overlay {
    position: absolute;
    inset: 0;
    background: transparent;
}

/* Particle background */
.hero-particles {
    position: absolute;
    inset: 0;
    z-index: 3;
    pointer-events: none;
    overflow: hidden;
}

.hero-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(var(--gold-rgb), 0.4);
    border-radius: 50%;
    animation: particleFloat 15s infinite linear;
}

@keyframes particleFloat {
    0% { transform: translateY(100vh) translateX(0) scale(0); opacity: 0; }
    10% { opacity: 1; transform: translateY(90vh) translateX(10px) scale(1); }
    90% { opacity: 0.5; }
    100% { transform: translateY(-10vh) translateX(50px) scale(0.5); opacity: 0; }
}

/* Content */
.hero-content {
    position: absolute;
    inset: 0;
    z-index: 5;
    display: flex;
    align-items: center;
    padding: 0 calc((100% - var(--container)) / 2 + var(--space-xl));
}

.hero-inner {
    max-width: 650px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(var(--primary-rgb), 0.15);
    border: 1px solid rgba(var(--primary-rgb), 0.3);
    border-radius: var(--radius-pill);
    color: var(--gold);
    font-family: var(--font-accent);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
    backdrop-filter: blur(8px);
}

.hero-badge::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--gold);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.hero-category {
    font-family: var(--font-accent);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 12px;
}

.hero-title {
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    font-weight: 800;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 8px;
    opacity: 0;
    transform: translateY(30px);
    animation: heroFadeUp 0.8s ease forwards 0.3s;
}

.hero-location {
    display: flex;
    align-items: center;
    gap: 6px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    margin-bottom: 16px;
}

.hero-location svg {
    width: 16px;
    height: 16px;
    color: var(--primary);
}

.hero-desc {
    color: rgba(255, 255, 255, 0.7);
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 30px;
    max-width: 500px;
    opacity: 0;
    transform: translateY(30px);
    animation: heroFadeUp 0.8s ease forwards 0.5s;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(30px);
    animation: heroFadeUp 0.8s ease forwards 0.7s;
}

@keyframes heroFadeUp {
    to { opacity: 1; transform: translateY(0); }
}

/* Tagline (centered, below slider content) */
.hero-tagline {
    position: absolute;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 6;
    text-align: center;
    max-width: 800px;
    width: 100%;
    padding: 0 20px;
}

.hero-tagline h2 {
    font-size: clamp(1rem, 2.5vw, 1.5rem);
    font-weight: 300;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 4px;
    line-height: 1.6;
}

.hero-tagline h2 strong {
    color: var(--gold);
    font-weight: 600;
}

/* Arrows */
.hero-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-full);
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--white);
    cursor: pointer;
    transition: all var(--transition);
}

.hero-arrow:hover {
    background: var(--gradient-primary);
    border-color: transparent;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 0 30px rgba(var(--primary-rgb), 0.4);
}

.hero-arrow svg {
    width: 24px;
    height: 24px;
}

.hero-arrow-left { left: 30px; }
.hero-arrow-right { right: 30px; }

/* Dots / Progress */
.hero-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 12px;
}

.hero-dot {
    width: 12px;
    height: 12px;
    border-radius: var(--radius-full);
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all var(--transition);
    position: relative;
}

.hero-dot.active {
    background: var(--primary);
    border-color: var(--primary);
    box-shadow: 0 0 15px rgba(var(--primary-rgb), 0.5);
}

.hero-dot.active::after {
    content: '';
    position: absolute;
    inset: -5px;
    border-radius: var(--radius-full);
    border: 1px solid rgba(var(--primary-rgb), 0.4);
    animation: pulse 2s infinite;
}

/* Slide counter */
.hero-counter {
    position: absolute;
    bottom: 30px;
    right: 30px;
    z-index: 10;
    font-family: var(--font-accent);
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
}

.hero-counter .current {
    font-size: 24px;
    font-weight: 700;
    color: var(--white);
}

/* Responsive */
@media (max-width: 768px) {
    .hero {
        height: 85vh;
        min-height: 500px;
    }

    .hero-content {
        padding: 0 20px;
        align-items: flex-end;
        padding-bottom: 120px;
    }

    .hero-inner {
        max-width: 100%;
    }

    .hero-arrow {
        width: 40px;
        height: 40px;
    }

    .hero-arrow-left { left: 10px; }
    .hero-arrow-right { right: 10px; }

    .hero-arrow svg {
        width: 18px;
        height: 18px;
    }

    .hero-tagline {
        bottom: 50px;
    }

    .hero-counter {
        display: none;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
    }
}
