/* ================================
   Hero Slider Styles - NEW
   ================================ */

/* Hero Slider Container */
.hero-slider {
    position: relative;
    min-height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    overflow: hidden;
    background: #000;
    margin-top: 110px;
    /* Account for fixed header (35px top bar + 75px main header) */
}

/* Background Image Slider */
.slider-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.slider-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.slider-image.active {
    opacity: 0.7;
}

/* Hero Overlay */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.15) 0%, rgba(0, 0, 0, 0.05) 50%, transparent 100%);
    z-index: 2;
}

/* Hero Content Wrapper */
.hero-content-wrapper {
    position: relative;
    z-index: 20;
    padding-top: 8rem;
    padding-bottom: 4rem;
}

.hero-text-content {
    max-width: 700px;
    color: white;
}

/* Hero Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    border: 1px solid rgba(74, 144, 226, 0.3);
    margin-bottom: 2rem;
    animation-delay: 0s;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: #4a90e2;
    border-radius: 50%;
    animation: pulse-animation 2s infinite;
    box-shadow: 0 0 10px #4a90e2;
}

@keyframes pulse-animation {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.7;
        transform: scale(1.1);
    }
}

.badge-text {
    color: #ffffff;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

/* Hero Heading */
/* Uses elegant serif font like Element Cannabis */
.hero-heading {
    font-size: clamp(2.5rem, 7vw, 5rem);
    font-weight: 500;
    line-height: 1.1;
    color: white;
    margin-bottom: 1.5rem;
    animation-delay: 0.2s;

    font-family: 'Playfair Display', Georgia, serif;
}

.hero-subheading {
    display: block;
    color: #ffffff;
    font-size: 0.85em;
    margin-top: 1rem;
    font-weight: 400;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

/* Hero Description */
.hero-description {
    font-size: clamp(1.125rem, 4vw, 1.5rem);
    color: #ffffff;
    line-height: 1.6;
    margin-bottom: 2rem;
    font-weight: 400;
    animation-delay: 0.4s;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

/* Hero Stats */
.hero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 2.5rem;
    animation-delay: 0.6s;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.stat-icon {
    width: 20px;
    height: 20px;
    color: #ffffff;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.5));
}

.stat-item span {
    font-size: 0.875rem;
    font-weight: 600;
    color: #ffffff;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
}

/* Hero CTAs */
.hero-ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    animation-delay: 0.8s;
}

.btn-hero-primary {
    height: 4rem;
    padding: 0 2.5rem;
    border-radius: 50px;
    font-size: 1.125rem;
    background: linear-gradient(135deg, #2F5D3A 0%, #4a90e2 100%);
    color: white;
    box-shadow: 0 8px 24px rgba(74, 144, 226, 0.3);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    letter-spacing: 0.05em;
}

.btn-hero-primary:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 12px 32px rgba(74, 144, 226, 0.4);
    background: linear-gradient(135deg, #4a90e2 0%, #2F5D3A 100%);
}

.btn-arrow {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.btn-hero-primary:hover .btn-arrow {
    transform: translateX(4px);
}

.btn-hero-secondary {
    height: 4rem;
    padding: 0 2.5rem;
    border-radius: 50px;
    font-size: 1.125rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    transition: all 0.3s ease;
}

.btn-hero-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.5);
}

/* Hero Promo Box */
.hero-promo-box {
    background: rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 1rem;
    padding: 1.5rem;
    max-width: 28rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation-delay: 1s;
}

.promo-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.promo-icon {
    width: 16px;
    height: 16px;
    color: #ffffff;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.4));
}

.promo-title {
    color: #ffffff;
    font-weight: 600;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.promo-text {
    color: #ffffff;
    font-size: 0.875rem;
    line-height: 1.5;
    font-weight: 400;
}

/* Slider Dots */
.slider-dots {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 30;
    display: flex;
    gap: 0.75rem;
}

.slider-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.slider-dots .dot:hover {
    background: rgba(255, 255, 255, 0.6);
}

.slider-dots .dot.active {
    background: white;
    transform: scale(1.25);
}

/* Fade In Up Animation */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUpAnimation 0.8s ease forwards;
}

@keyframes fadeInUpAnimation {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .hero-slider {
        min-height: 100vh;
    }

    .hero-content-wrapper {
        padding-top: 6rem;
    }

    .hero-stats {
        gap: 1rem;
    }

    .hero-ctas {
        flex-direction: column;
    }

    .btn-hero-primary,
    .btn-hero-secondary {
        width: 100%;
        justify-content: center;
    }

    .hero-promo-box {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .hero-heading {
        font-size: 2rem;

        font-family: 'Playfair Display', Georgia, serif;
    }

    .hero-description {
        font-size: 1.125rem;
    }

    .stat-item span {
        font-size: 0.75rem;
    }
}