/* ═══════════════════════════════════════════════════════════════
   VUVITA PAGE BANNER - FULL WIDTH HERO STYLE
   Updated to match vuvita-hair-hero centered layout
   ═══════════════════════════════════════════════════════════════ */

#vuvita-pagebanner {
    position: relative;
    min-height: 50vh;
    display: flex;
    align-items: center;
    background: var(--vuvita-dark, #121212);
    overflow: hidden;
}

/* Height variations */
#vuvita-pagebanner.vuvita-pagebanner--small {
    min-height: 40vh;
}

#vuvita-pagebanner.vuvita-pagebanner--medium {
    min-height: 60vh;
}

#vuvita-pagebanner.vuvita-pagebanner--large {
    min-height: 80vh;
}

#vuvita-pagebanner.vuvita-pagebanner--full {
    min-height: 100vh;
}

/* ═══════════════════════════════════════════════════════════════
   BACKGROUND STYLES
   ═══════════════════════════════════════════════════════════════ */

.vuvita-pagebanner__bg {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.vuvita-pagebanner__bg-image {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Video Background */
.vuvita-pagebanner__video-wrapper {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.vuvita-pagebanner__video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.vuvita-pagebanner__bg--has-video .vuvita-pagebanner__bg-image {
    display: none;
}

/* Overlay Gradient */
.vuvita-pagebanner__bg-overlay,
.vuvita-pagebanner__video-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg,
            rgba(10, 10, 10, 0.92) 0%,
            rgba(10, 10, 10, 0.85) 50%,
            rgba(10, 10, 10, 0.5) 100%);
    z-index: 2;
}

/* Pattern Overlay */
.vuvita-pagebanner__pattern {
    position: absolute;
    inset: 0;
    z-index: 3;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23c9a962' fill-opacity='1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

/* ═══════════════════════════════════════════════════════════════
   CONTENT CONTAINER - CENTERED LAYOUT
   ═══════════════════════════════════════════════════════════════ */

.vuvita-pagebanner__inner {
    position: relative;
    z-index: 3;
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 40px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
}

.vuvita-pagebanner__content {
    position: relative;
    z-index: 10;
    width: 100%;
}

.vuvita-pagebanner__content-inner {
    max-width: 800px;
}

/* ═══════════════════════════════════════════════════════════════
   BREADCRUMB
   ═══════════════════════════════════════════════════════════════ */

.vuvita-pagebanner__breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    color: var(--vuvita-gray, #8a8a8a);
    margin-bottom: 20px;
    opacity: 0;
    animation: vuvitaBannerFadeIn 0.6s ease forwards;
    animation-delay: 0.1s;
}

.vuvita-pagebanner__breadcrumb a {
    color: var(--vuvita-gray, #8a8a8a);
    text-decoration: none;
    transition: color 0.2s ease;
}

.vuvita-pagebanner__breadcrumb a:hover {
    color: var(--vuvita-gold, #c9a962);
}

.vuvita-pagebanner__breadcrumb i {
    font-size: 10px;
    color: var(--vuvita-gray, #8a8a8a);
}

.vuvita-pagebanner__breadcrumb-current {
    color: var(--vuvita-gold, #c9a962);
}

/* ═══════════════════════════════════════════════════════════════
   PRE-TITLE BADGE
   ═══════════════════════════════════════════════════════════════ */

.vuvita-pagebanner__pretitle {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: rgba(201, 169, 98, 0.1);
    border: 1px solid rgba(201, 169, 98, 0.3);
    margin-bottom: 24px;
    opacity: 0;
    animation: vuvitaBannerFadeIn 0.6s ease forwards;
    animation-delay: 0.2s;
}

.vuvita-pagebanner__pretitle-icon {
    color: var(--vuvita-gold, #c9a962);
    font-size: 16px;
}

.vuvita-pagebanner__pretitle-text {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--vuvita-gold, #c9a962);
}

/* ═══════════════════════════════════════════════════════════════
   MAIN TITLE
   ═══════════════════════════════════════════════════════════════ */

.vuvita-pagebanner__title {
    font-family: var(--vuvita-font-display, 'Cormorant Garamond', serif);
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 600;
    color: var(--vuvita-white, #fff);
    line-height: 1.2;
    margin-bottom: 16px;
    opacity: 0;
    animation: vuvitaBannerFadeIn 0.8s ease forwards;
    animation-delay: 0.3s;
}

.vuvita-pagebanner__title-highlight {
    color: var(--vuvita-gold, #c9a962);
    display: block;
}

/* ═══════════════════════════════════════════════════════════════
   DESCRIPTION
   ═══════════════════════════════════════════════════════════════ */

.vuvita-pagebanner__description {
    font-size: 15px;
    color: var(--vuvita-gray-light, #b5b5b5);
    line-height: 1.7;
    margin-bottom: 24px;
    max-width: 700px;
    opacity: 0;
    animation: vuvitaBannerFadeIn 0.8s ease forwards;
    animation-delay: 0.4s;
}

/* ═══════════════════════════════════════════════════════════════
   FEATURES LIST
   ═══════════════════════════════════════════════════════════════ */

.vuvita-pagebanner__features {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-bottom: 40px;
    opacity: 0;
    animation: vuvitaBannerFadeIn 0.8s ease forwards;
    animation-delay: 0.5s;
}

.vuvita-pagebanner__feature {
    display: flex;
    align-items: center;
    gap: 10px;
}

.vuvita-pagebanner__feature-icon {
    width: 32px;
    height: 32px;
    background: rgba(201, 169, 98, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vuvita-pagebanner__feature-icon i {
    font-size: 12px;
    color: var(--vuvita-gold, #c9a962);
}

.vuvita-pagebanner__feature span {
    font-size: 13px;
    color: var(--vuvita-gray-light, #b5b5b5);
}

/* ═══════════════════════════════════════════════════════════════
   CTA BUTTONS
   ═══════════════════════════════════════════════════════════════ */

.vuvita-pagebanner__cta-group {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    opacity: 0;
    animation: vuvitaBannerFadeIn 0.8s ease forwards;
    animation-delay: 0.6s;
}

.vuvita-pagebanner__cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 36px;
    background: var(--vuvita-gold, #c9a962);
    color: var(--vuvita-black, #0a0a0a);
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.vuvita-pagebanner__cta-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: 0.5s;
}

.vuvita-pagebanner__cta-primary:hover::before {
    left: 100%;
}

.vuvita-pagebanner__cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(201, 169, 98, 0.4);
}

.vuvita-pagebanner__cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 36px;
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: var(--vuvita-white, #fff);
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.vuvita-pagebanner__cta-secondary:hover {
    border-color: var(--vuvita-gold, #c9a962);
    color: var(--vuvita-gold, #c9a962);
    transform: translateY(-3px);
}

/* ═══════════════════════════════════════════════════════════════
   SCROLL DOWN INDICATOR
   ═══════════════════════════════════════════════════════════════ */

.vuvita-pagebanner__scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--vuvita-gray, #8a8a8a);
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    opacity: 0;
    animation: vuvitaBannerFadeIn 0.8s ease forwards;
    animation-delay: 0.8s;
}

.vuvita-pagebanner__scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, var(--vuvita-gold, #c9a962), transparent);
    animation: vuvitaScrollLine 2s ease-in-out infinite;
}

.vuvita-pagebanner__scroll-icon {
    display: block;
    margin-top: 10px;
    animation: vuvitaBannerBounce 2s infinite;
}

/* ═══════════════════════════════════════════════════════════════
   ANIMATIONS
   ═══════════════════════════════════════════════════════════════ */

@keyframes vuvitaBannerFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes vuvitaBannerBounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-10px);
    }

    60% {
        transform: translateY(-5px);
    }
}

@keyframes vuvitaScrollLine {

    0%,
    100% {
        transform: scaleY(1);
        opacity: 1;
    }

    50% {
        transform: scaleY(0.5);
        opacity: 0.5;
    }
}

/* ═══════════════════════════════════════════════════════════════
   LEFT/RIGHT LAYOUT (for compatibility)
   ═══════════════════════════════════════════════════════════════ */

.vuvita-pagebanner__left,
.vuvita-pagebanner__right {
    display: none;
}

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE DESIGN
   ═══════════════════════════════════════════════════════════════ */

@media (max-width: 1200px) {
    .vuvita-pagebanner__inner {
        padding: 50px 30px;
    }

    .vuvita-pagebanner__content-inner {
        max-width: 700px;
    }
}

@media (max-width: 992px) {
    .vuvita-pagebanner__inner {
        padding: 100px 30px 60px;
    }

    .vuvita-pagebanner__bg-overlay,
    .vuvita-pagebanner__video-overlay {
        background: rgba(10, 10, 10, 0.8);
    }
}

@media (max-width: 768px) {
    .vuvita-pagebanner__inner {
        padding: 80px 20px 40px;
    }

    .vuvita-pagebanner__title {
        font-size: clamp(28px, 6vw, 36px);
    }

    .vuvita-pagebanner__features {
        gap: 16px;
    }

    .vuvita-pagebanner__feature {
        flex: 0 0 calc(50% - 8px);
    }

    .vuvita-pagebanner__cta-group {
        flex-direction: column;
        align-items: flex-start;
    }

    .vuvita-pagebanner__cta-primary,
    .vuvita-pagebanner__cta-secondary {
        width: 100%;
        justify-content: center;
    }

    .vuvita-pagebanner__scroll {
        display: none;
    }
}

@media (max-width: 480px) {
    .vuvita-pagebanner__pretitle {
        padding: 10px 16px;
    }

    .vuvita-pagebanner__pretitle-text {
        font-size: 10px;
        letter-spacing: 1px;
    }

    .vuvita-pagebanner__feature {
        flex: 0 0 100%;
    }

    .vuvita-pagebanner__feature-icon {
        width: 28px;
        height: 28px;
    }
}