/* ===================================
   HERO SLIDER - BACKGROUND IMAGE STYLE
   Full-screen background images with large typography
   =================================== */

.hero-slider-bg {
    position: relative;
    height: 100vh;
    overflow: hidden;
    background: #000;
}

.hero-slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.hero-slide-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    display: block;
}

.hero-slide-background img,
.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.hero-slide.active {
    opacity: 1;
}

/* Background Overlay */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.7) 0%,
        rgba(0, 0, 0, 0.4) 50%,
        rgba(0, 0, 0, 0.6) 100%
    );
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 2rem 0;
}

.hero-content .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
}

.hero-text {
    max-width: 600px;
    color: white;
    text-align: left;
}

/* Status Badge */
.hero-badge {
    display: inline-block;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease-out 0.3s both;
}

.hero-badge span {
    background: var(--premium-gold, #FFD700);
    color: var(--color-black, #000);
    padding: 0.5rem 1.5rem;
    font-family: var(--font-bold, 'SkyFont', Arial, sans-serif);
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: 0;
    display: inline-block;
}

/* Large H2 Title */
.hero-title {
    font-family: var(--font-black, 'SkyFont', Arial, sans-serif);
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 900;
    line-height: 0.9;
    letter-spacing: -0.02em;
    color: var(--color-white, white);
    margin: 0 0 1.5rem 0;
    text-transform: uppercase;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

/* Paragraph Description */
.hero-description {
    font-family: 'SkyFont', Arial, sans-serif;
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin: 0 0 1.5rem 0;
    max-width: 500px;
    animation: fadeInUp 0.8s ease-out 0.9s both;
}

/* Product Weight/Size */
.hero-weight {
    font-size: 1rem;
    color: var(--skyworld-orange);
    font-weight: 600;
    margin: 0 0 2rem 0;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    animation: fadeInUp 0.8s ease-out 1s both;
}

/* CTA Button */
.hero-cta {
    animation: fadeInUp 0.8s ease-out 1.2s both;
}

.btn-hero-cta {
    display: inline-flex;
    align-items: center;
    padding: 1rem 2rem;
    background: white;
    color: #000;
    font-family: 'SkyFont', Arial, sans-serif;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border: none;
    border-radius: 0;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.btn-hero-cta:hover {
    background: var(--skyworld-orange, #FF8C00);
    color: var(--color-white, white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 140, 0, 0.4);
}

/* Strain Info Card */
.strain-info-card {
    position: absolute;
    bottom: 4rem;
    right: 2rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 1.5rem;
    border-radius: 8px;
    color: white;
    animation: fadeInRight 0.8s ease-out 1.5s both;
}

.strain-name {
    font-family: 'SkyFont', Arial, sans-serif;
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.strain-details {
    display: flex;
    gap: 1rem;
    font-size: 0.875rem;
    opacity: 0.8;
}

.strain-type,
.strain-thc {
    font-family: 'SkyFont', Arial, sans-serif;
}

/* Navigation Dots */
.hero-navigation {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}

.hero-dots {
    display: flex;
    gap: 1rem;
}

.hero-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.5);
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hero-dot.active,
.hero-dot:hover {
    background: white;
    border-color: white;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    animation: bounce 2s infinite;
    cursor: pointer;
}

.scroll-arrow svg {
    transform: rotate(90deg);
    opacity: 0.7;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .hero-slide {
        justify-content: center;
        text-align: center;
    }
    
    .hero-content .container {
        padding: 0 1rem;
    }
    
    .hero-text {
        text-align: center;
    }
    
    .hero-title {
        font-size: clamp(2.5rem, 12vw, 4rem);
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .strain-info-card {
        position: static;
        margin-top: 2rem;
        background: rgba(0, 0, 0, 0.7);
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
    }
    
    .scroll-indicator {
        left: 50%;
        transform: translateX(-50%);
        bottom: 6rem;
    }
}

@media (max-width: 480px) {
    .hero-badge span {
        padding: 0.375rem 1rem;
        font-size: 0.75rem;
    }
    
    .btn-hero-cta {
        padding: 0.875rem 1.5rem;
        font-size: 0.875rem;
    }
    
    .strain-info-card {
        padding: 1rem;
    }
    
    .hero-content .container {
        padding: 0 1rem;
    }
}