/* ==========================================================================
   Pure Nature Hero Banner Widget
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600&family=Montserrat:wght@300;400;500;600&display=swap');

.pn-hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    overflow: hidden;
}

.pn-hero .hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pn-hero .hero-fallback-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.pn-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.5) 0%, rgba(0, 0, 0, 0.3) 100%);
}

.pn-hero .hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #FAF9F6;
    z-index: 10;
    max-width: 900px;
    padding: 0 48px;
    width: 100%;
}

.pn-hero .hero-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: #C9A962;
    margin-bottom: 24px;
    font-weight: 400;
}

.pn-hero .hero-content h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 56px;
    margin-bottom: 24px;
    line-height: 1.15;
    font-weight: 400;
    letter-spacing: 0.02em;
    color: #FAF9F6;
}

.pn-hero .hero-content p {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    margin-bottom: 40px;
    opacity: 0.9;
    font-weight: 300;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
    color: #FAF9F6;
}

.pn-hero .btn-primary {
    display: inline-block;
    padding: 18px 48px;
    background-color: #C9A962;
    color: #1A1A2E;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 3px;
    border: none;
    cursor: pointer;
    transition: all 0.4s ease;
    font-weight: 500;
}

.pn-hero .btn-primary:hover {
    background-color: #D4AF37;
}

/* Responsive */
@media (max-width: 768px) {
    .pn-hero {
        min-height: 600px;
    }

    .pn-hero .hero-content h1 {
        font-size: 36px;
    }

    .pn-hero .hero-content {
        padding: 0 24px;
    }

    .pn-hero .hero-content p {
        font-size: 14px;
    }

    .pn-hero .btn-primary {
        padding: 14px 36px;
        font-size: 11px;
        letter-spacing: 2px;
    }
}
