/* ===================================================
   HOME PAGE — Upgraded with real images & premium SVGs
   =================================================== */

/* === HERO === */
.home-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.home-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background:
        /* User Image */
        url("https://res.cloudinary.com/dwc1yadxl/image/upload/v1771367004/1_ineldf.jpg");
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    /* Optional: blend mode for extra pop if supported, fallbacks handled by order */
}

.home-hero-noise {
    position: absolute;
    inset: 0;
    z-index: 1;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    background-size: 200px;
}

.hero-3d-wrapper {
    position: absolute;
    right: -5%;
    top: 50%;
    transform: translateY(-50%);
    width: 55%;
    height: 80%;
    z-index: 1;
    opacity: 0.85;
}

.hero-3d-wrapper canvas {
    width: 100% !important;
    height: 100% !important;
}

.hero-3d-fallback {
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 40% 40%, rgba(255, 107, 26, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 60% 60%, rgba(233, 30, 140, 0.1) 0%, transparent 50%);
    border-radius: 50%;
    animation: floatOrb 6s ease-in-out infinite alternate;
}

@keyframes floatOrb {
    0% {
        transform: translateY(0) scale(1);
    }

    100% {
        transform: translateY(-20px) scale(1.05);
    }
}

.home-hero-content {
    position: relative;
    z-index: 2;
    padding: 140px 0 100px;
    max-width: 620px;
}

.hero-eyebrow {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 5px;
    color: var(--yellow);
    margin-bottom: 20px;
    text-shadow: 0 0 30px rgba(255, 215, 0, 0.2);
}

.hero-headline {
    font-family: var(--font-display);
    font-size: clamp(4rem, 10vw, 8rem);
    letter-spacing: 6px;
    line-height: 0.95;
    margin-bottom: 10px;
    text-shadow: 0 0 60px rgba(255, 107, 26, 0.2);
}

.hero-headline-sub {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 4vw, 3rem);
    letter-spacing: 10px;
    line-height: 1;
    margin-bottom: 24px;
}

.hero-line {
    width: 70px;
    height: 3px;
    background: var(--gradient-fire);
    margin-bottom: 24px;
    border-radius: 2px;
}

.hero-desc {
    font-size: 1.05rem;
    color: var(--text-dim);
    line-height: 1.8;
    margin-bottom: 36px;
    max-width: 440px;
}

.hero-cta-group {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-scroll-hint {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.scroll-dot {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--orange), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {

    0%,
    100% {
        opacity: 0.3;
    }

    50% {
        opacity: 1;
    }
}

.hero-scroll-hint span {
    font-family: var(--font-heading);
    font-size: 0.6rem;
    letter-spacing: 3px;
    color: var(--text-muted);
}

/* === CONFETTI === */
.confetti-canvas {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.confetti-bit {
    position: absolute;
    opacity: 0;
    animation: confettiFall linear infinite;
}

@keyframes confettiFall {
    0% {
        opacity: 0;
        transform: translateY(-5vh) rotate(0deg);
    }

    10% {
        opacity: 0.7;
    }

    90% {
        opacity: 0.3;
    }

    100% {
        opacity: 0;
        transform: translateY(105vh) rotate(720deg);
    }
}



/* === FEATURES SECTION === */
.features-section {
    padding: var(--section-pad) 0;
    background: var(--bg-dark);
    position: relative;
}

.features-header {
    text-align: center;
    margin-bottom: 50px;
}

/* Experience Cards — Image-based */
.experience-cards-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 40px;
}

.exp-card {
    display: block;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border);
    transition: all 0.5s ease;
    background: var(--bg-card);
    cursor: pointer;
}

.exp-card:hover {
    border-color: var(--border-accent);
    transform: translateY(-6px);
    box-shadow: 0 24px 60px rgba(255, 107, 26, 0.1);
}

.exp-card-image {
    position: relative;
    height: 240px;
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.exp-card-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 30%, rgba(5, 5, 5, 0.7) 100%);
}

.exp-card-overlay {
    position: absolute;
    inset: 0;
    mix-blend-mode: multiply;
    opacity: 0.6;
    transition: opacity 0.4s ease;
}

.exp-card-overlay--warm {
    background: linear-gradient(135deg, rgba(255, 107, 26, 0.6) 0%, rgba(233, 30, 140, 0.4) 100%);
}

.exp-card-overlay--cool {
    background: linear-gradient(135deg, rgba(123, 47, 247, 0.6) 0%, rgba(0, 212, 255, 0.4) 100%);
}

.exp-card:hover .exp-card-overlay {
    opacity: 0.4;
}

.exp-card-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 2;
    padding: 4px 14px;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    font-family: var(--font-heading);
    font-size: 0.6rem;
    font-weight: 500;
    letter-spacing: 2px;
    color: white;
}

.exp-card-body {
    padding: 28px;
}

.exp-card-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 107, 26, 0.08);
    border: 1px solid rgba(255, 107, 26, 0.15);
    border-radius: 12px;
    margin-bottom: 16px;
}

.exp-card-title {
    font-family: var(--font-display);
    font-size: 2.2rem;
    letter-spacing: 3px;
    margin-bottom: 8px;
}

.exp-card-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 16px;
}

.exp-card-link {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 1.5px;
    color: var(--orange);
    transition: color 0.3s ease;
}

.exp-card:hover .exp-card-link {
    color: var(--orange-light);
}

/* === INCLUDED STRIP === */
.included-strip {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    padding: 28px 32px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    flex-wrap: wrap;
}

.included-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 2px;
    color: var(--text-light);
}

.included-divider {
    width: 1px;
    height: 24px;
    background: var(--border);
}

/* === COSTUME SECTION === */
.costume-section {
    padding: var(--section-pad) 0;
    background: var(--bg-black);
}

.costume-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.costume-visual {
    position: relative;
    aspect-ratio: 4/5;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--border);
}

.costume-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    transition: transform 0.6s ease;
}

.costume-visual:hover .costume-photo {
    transform: scale(1.05);
}

.costume-visual-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(5, 5, 5, 0.85) 100%);
}

.costume-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 2;
    padding: 6px 16px;
    background: var(--gradient-fire);
    border-radius: 50px;
    font-family: var(--font-heading);
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: white;
}

.costume-info {
    padding: 20px 0;
}

.costume-name {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    letter-spacing: 4px;
    margin-bottom: 16px;
}

.costume-desc {
    font-size: 1rem;
    color: var(--text-dim);
    line-height: 1.8;
    margin-bottom: 24px;
    max-width: 420px;
}

.costume-features-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 28px;
}

.costume-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--text-light);
}

.costume-price {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 28px;
}

.costume-price-label {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    letter-spacing: 2px;
    color: var(--text-muted);
}

.costume-price-amount {
    font-family: var(--font-display);
    font-size: 2.5rem;
    background: var(--gradient-warm);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* === GALLERY SECTION === */
.gallery-section {
    padding: var(--section-pad) 0;
    background: var(--bg-dark);
}

.gallery-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    grid-template-rows: 280px 280px;
    gap: 16px;
}

.gallery-item {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(5, 5, 5, 0.8) 100%);
    display: flex;
    align-items: flex-end;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay span {
    font-family: var(--font-display);
    font-size: 1.5rem;
    letter-spacing: 3px;
    color: white;
}

.gallery-item--tall {
    grid-row: span 2;
}

/* === CTA BANNER === */
.cta-banner {
    padding: 80px 0;
    background:
        radial-gradient(ellipse at 50% 50%, rgba(255, 107, 26, 0.08) 0%, transparent 60%),
        var(--bg-panel);
    text-align: center;
}

.cta-banner .section-title {
    margin-bottom: 16px;
}

.cta-banner p {
    font-size: 1rem;
    color: var(--text-dim);
    margin-bottom: 32px;
}

/* === RESPONSIVE === */
@media (max-width: 960px) {
    .experience-cards-grid {
        grid-template-columns: 1fr;
    }

    .costume-wrapper {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 220px 220px;
    }

    .gallery-item--tall {
        grid-row: span 1;
    }

    .hero-3d-wrapper {
        display: none;
    }

    .home-hero-content {
        max-width: 100%;
    }

    .included-strip {
        gap: 16px;
    }

    .included-divider {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero-cta-group {
        flex-direction: column;
    }

    .hero-cta-group .btn-primary,
    .hero-cta-group .btn-outline {
        width: 100%;
        justify-content: center;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    .gallery-item {
        height: 200px;
    }

    .included-strip {
        flex-direction: column;
        text-align: center;
    }

    .included-item {
        justify-content: center;
    }
}


/* ===================================================
   JOUVERT PROMO BANNER
   =================================================== */
.jouvert-promo {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

/* Background Image — parallax-like */
.jouvert-promo-bg {
    position: absolute;
    inset: -20px;
    z-index: 0;
}

.jouvert-promo-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
    filter: brightness(0.5) saturate(1.3);
    transition: transform 8s ease;
}

.jouvert-promo:hover .jouvert-promo-img {
    transform: scale(1.05);
}

/* Dark gradient overlay */
.jouvert-promo-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(180deg, rgba(5, 5, 5, 0.6) 0%, rgba(5, 5, 5, 0.3) 40%, rgba(5, 5, 5, 0.5) 70%, rgba(5, 5, 5, 0.85) 100%),
        linear-gradient(90deg, rgba(5, 5, 5, 0.7) 0%, transparent 30%, transparent 70%, rgba(5, 5, 5, 0.7) 100%);
}

/* Paint splatter accents */
.jp-splat {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 2;
    filter: blur(50px);
    animation: jpSplatFloat 8s ease-in-out infinite;
}

.jp-splat-1 {
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(233, 30, 140, 0.25) 0%, transparent 70%);
    top: -50px;
    left: -50px;
    animation-delay: 0s;
}

.jp-splat-2 {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(0, 230, 118, 0.2) 0%, transparent 70%);
    bottom: -30px;
    right: -30px;
    animation-delay: 2s;
}

.jp-splat-3 {
    width: 180px;
    height: 180px;
    background: radial-gradient(circle, rgba(123, 47, 247, 0.2) 0%, transparent 70%);
    top: 30%;
    right: 10%;
    animation-delay: 4s;
}

@keyframes jpSplatFloat {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.6;
    }

    50% {
        transform: translate(15px, -10px) scale(1.1);
        opacity: 1;
    }
}

/* Content */
.jouvert-promo-content {
    position: relative;
    z-index: 3;
    text-align: center;
    padding: var(--section-pad) 0;
}

.jp-eyebrow {
    font-family: var(--font-heading);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 4px;
    color: var(--orange);
    margin-bottom: 16px;
}

.jp-title {
    font-family: var(--font-display);
    font-size: clamp(2.8rem, 8vw, 5.5rem);
    letter-spacing: 6px;
    line-height: 1;
    margin-bottom: 8px;
    text-shadow: 0 4px 40px rgba(0, 0, 0, 0.5);
}

.jp-subtitle {
    font-family: var(--font-display);
    font-size: clamp(1rem, 3vw, 1.6rem);
    letter-spacing: 8px;
    color: var(--text-light);
    margin-bottom: 16px;
}

.jp-tagline {
    font-family: var(--font-heading);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 4px;
    background: var(--gradient-fire);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 24px;
}

.jp-meta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    font-family: var(--font-heading);
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 1.5px;
    color: var(--text-dim);
    margin-bottom: 32px;
}

.jp-divider {
    color: var(--orange);
    font-size: 0.5rem;
}

.jp-cta-group {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Responsive */
@media (max-width: 768px) {
    .jouvert-promo {
        min-height: 60vh;
    }

    .jp-title {
        font-size: 2.2rem;
        letter-spacing: 4px;
    }

    .jp-subtitle {
        letter-spacing: 5px;
    }

    .jp-meta {
        flex-direction: column;
        gap: 8px;
    }

    .jp-divider {
        display: none;
    }
}