/* ================= GLOBAL ================= */
html {
    scroll-behavior: smooth;
}

.nav-link {
    color: #4A2C2A;
    font-weight: 500;
    transition: 0.3s;
}

.nav-link:hover {
    color: #B85C7A;
}

@font-face {
    font-family: 'NexaScriptBold';
    src: url('fonts/Fontfabric - Nexa Script Bold.otf') format('opentype');
}

@font-face {
    font-family: 'NexaScriptHeavy';
    src: url('fonts/Fontfabric - Nexa Script Heavy.otf') format('opentype');
}

@font-face {
    font-family: 'NexaScriptLight';
    src: url('fonts/Fontfabric - Nexa Script Light.otf') format('opentype');
}

@font-face {
    font-family: 'NexaScriptSemiBold';
    src: url('fonts/Fontfabric - Nexa Script Semi Bold.otf') format('opentype');
}

@font-face {
    font-family: 'NexaScriptThin';
    src: url('fonts/Fontfabric - Nexa Script Thin.otf') format('opentype');
}

@font-face {
    font-family: 'NexaScript';
    src: url('fonts/Fontfabric - Nexa Script.otf') format('opentype');
}

body {
    background-color: #F7EDEF;
    font-family: 'Segoe UI', sans-serif;
    color: #4A2C2A;

    background-image: url("Pics/wall.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}


/* ================= NAVBAR ================= */

.navbar {
    background-color: #FFFFFF;
}

.navbar-brand {
    font-weight: bold;
    color: #B85C7A !important;
}


/* ================= HERO ================= */

.hero {
    position: relative;
    background: linear-gradient(135deg, #F7EDEF, #E8C7CF);
    padding: 120px 20px;
    text-align: center;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-logo {
    width: 220px;
    border-radius: 50%;
    margin-bottom: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    animation: glow 3s ease-in-out infinite alternate;
}

.hero h1 {
    font-size: 2.8rem;
    font-weight: bold;
    font-family: 'NexaScriptHeavy', cursive;
}

.hero p {
    font-size: 1.2rem;
    font-family: 'NexaScript', cursive;
}


/* ================= FLOATING IMAGES ================= */

.floating-images img {
    position: absolute;
    width: 190px;
    opacity: 0.95;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid white;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.donut {
    top: 40px;
    left: 10%;
    animation: float 2s ease-in-out infinite;
}

.cookies {
    top: 80px;
    right: 8%;
    animation: float 6s ease-in-out infinite;
}

.gummy {
    bottom: 40px;
    left: 17%;
    animation: float 5s ease-in-out infinite;
}

.ginger {
    bottom: 40px;
    right: 15%;
    animation: float 3s ease-in-out infinite;
}


/* ================= ANIMATIONS ================= */

@keyframes float {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
    100% {
        transform: translateY(0);
    }
}

@keyframes glow {
    from {
        box-shadow: 0 0 10px rgba(184, 92, 122, 0.3);
    }
    to {
        box-shadow: 0 0 30px rgba(184, 92, 122, 0.7);
    }
}

/* ================= PREMIUM TITLE (GLASS BADGE STYLE) ================= */

.section-title {
    font-family: 'NexaScriptHeavy', cursive;
    font-size: 2.2rem;
    /* letter-spacing: 1px; */
    /* text-transform: uppercase; */
	transition: all 0.3s ease;

    color: #4A2C2A;

    display: inline-block;
    padding: 12px 30px;

    /* GLASS EFFECT */
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(10px);

    border-radius: 50px;

    /* DEPTH */
    box-shadow: 
        0 8px 25px rgba(0,0,0,0.15),
        inset 0 1px 5px rgba(255,255,255,0.6);

    /* CENTER */
    margin-bottom: 40px;
}

/* GLOW BORDER ACCENT */
.section-title::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50px;

    background: linear-gradient(135deg, #B85C7A, #E8C7CF);
	/* #E8C7CF */
	/* #f1fa43 yellow*/
    z-index: -1;

    filter: blur(12px);
    opacity: 0.6;
}
.section-title:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 
        0 12px 35px rgba(184,92,122,0.35),
        inset 0 1px 5px rgba(255,255,255,0.7);
}

/* ================= PRODUCT CARDS ================= */

#products .card {
    border-radius: 25px;
    background: linear-gradient(135deg, #F7EDEF, #E8C7CF);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    padding: 20px;
}

#products h2 {
    font-family: 'NexaScriptHeavy', cursive;
    font-weight: 900;
}

.nexa-heavy {
    font-family: 'NexaScriptHeavy', cursive;
    font-weight: 900;
}

.nexa-bold {
    font-family: 'NexaScriptBold', cursive;
    font-weight: 700;
}

.nexa-semibold {
    font-family: 'NexaScriptSemiBold', cursive;
    font-weight: 500;
}

.nexa-regular {
    font-family: 'NexaScript', cursive;
    font-weight: 400;
}

.nexa-regular-thin {
    font-family: 'NexaScriptThin', cursive;
    font-weight: 100;
}

.product-card {
    border: none;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: 0.3s ease;
    height: 100%;
}

.product-card:hover {
    transform: translateY(-5px);
}


/* ================= CAROUSEL ================= */

.carousel-inner {
    height: 220px;
}

.product-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 12px;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: rgba(0, 0, 0, 0.4);
    border-radius: 50%;
    padding: 15px;
}

.carousel-indicators button {
    background-color: #B85C7A;
}

.carousel-indicators .active {
    background-color: #4A2C2A;
}


/* ================= BUTTON ================= */

.btn-brand {
    background-color: #B85C7A;
    color: white;
    border-radius: 25px;
    padding: 8px 20px;
}

.btn-brand:hover {
    background-color: #4A2C2A;
    color: white;
}


/* ================= SCENTS ================= */

.scent-grid {
    max-width: 1100px;
    margin: auto;
}

.scent-item {
    background: rgba(255, 255, 255, 0.8);
    padding: 12px 15px;
    margin: 10px 0;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 500;
    transition: 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.scent-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(184, 92, 122, 0.3);
}


/* ================= BEST SELLER ================= */

.best-seller {
    background: linear-gradient(135deg, #B85C7A, #E8C7CF);
    color: white;
    font-weight: 600;
    box-shadow: 0 8px 20px rgba(184, 92, 122, 0.4);
}

.best-seller:hover {
    transform: translateY(-5px) scale(1.03);
    box-shadow: 0 12px 30px rgba(184, 92, 122, 0.6);
}

/* ============= NOT BEST SELLER ================= */
.scent-item:not(.best-seller) {
    font-family: "Comic Sans MS", "Comic Sans", cursive;
	font-weight: 600;
}

/* ================= ORDER ================= */

.order-section {
    background-color: #E8C7CF;
    padding: 60px 20px;
    border-radius: 30px 30px 0 0;
}


/* ================= FOOTER ================= */

footer {
    background-color: #B85C7A;
    color: white;
    padding: 30px;
    text-align: center;
    font-size: 14px;
}


/* ================= HERO VIDEO ================= */

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.6);
    z-index: 1;
}


/* ================= INSTRUCTIONS ================= */
.instruction-card {
    background: linear-gradient(135deg, #B85C7A, #E8C7CF);
    padding: 25px;
    border-radius: 20px;
    color: white;

    font-family: "Comic Sans MS", "Comic Sans", cursive; /* 👈 added */
    font-weight: 600;

    box-shadow: 0 8px 20px rgba(184, 92, 122, 0.4);
    transition: 0.3s;
}

.instruction-card:hover {
    transform: translateY(-6px);
}


/* ================= FEATURES ================= */

.feature-box {
    background: white;
    padding: 25px;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: 0.3s;
	font-family: "Comic Sans MS", "Comic Sans", cursive;
}

.feature-box:hover {
    transform: translateY(-6px);
}


/* ================= HOW TO USE ================= */

.how-to-use .row {
    display: flex;
    align-items: stretch;
}

.how-to-use .col-lg-6:first-child {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.video-container {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;

    background: white;
    border-radius: 20px;
    padding: 20px;

    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.how-video {
    width: 100%;
    max-height: 470px;
    object-fit: contain;
    border-radius: 15px;
}


/* ================= VIDEO CAROUSEL ================= */

.video-container .carousel-item,
.video-frame .carousel-item {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.video-frame {
    width: 100%;
    max-width: 520px;
    margin: auto;

    background: white;
    padding: 20px;
    border-radius: 20px;

    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.video-frame .carousel-inner {
    height: 320px;
}


/* ================= GALLERY ================= */

.gallery-section {
    text-align: center;
}

.gallery-grid {
    column-count: 4;
    column-gap: 15px;
}

.gallery-grid img {
    width: 100%;
    margin-bottom: 15px;
    border-radius: 15px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.gallery-grid img:hover {
    transform: scale(1.03);
}


/* ================= RESPONSIVE ================= */

@media (max-width: 992px) {
    .gallery-grid {
        column-count: 3;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 80px 20px;
    }

    .hero-logo {
        width: 160px;
    }

    .hero h1 {
        font-size: 1.8rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .floating-images img {
        width: 70px;
    }

    .product-card {
        padding: 15px !important;
    }

    .product-card h5 {
        font-size: 16px;
    }

    .product-card p {
        font-size: 14px;
    }

    .btn-brand {
        padding: 6px 15px;
        font-size: 14px;
    }

    .order-section {
        padding: 40px 15px;
    }

    footer {
        font-size: 13px;
    }
}

@media (max-width: 576px) {
    .gallery-grid {
        column-count: 2;
    }
}

/* ================= SECTION SPACING ================= */

.luxury-section {
    padding-top: 20px;
}

/* ================= CARD ================= */

.lux-card {
    background: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(14px);

    border-radius: 25px;
    padding: 40px 25px;

    height: 100%;

    border: 1px solid rgba(255,255,255,0.4);
    font-family: "Comic Sans MS", "Comic Sans", cursive;
    font-weight: bold;
    box-shadow: 
        0 15px 40px rgba(0,0,0,0.12),
        inset 0 1px 8px rgba(255,255,255,0.5);

    transition: 0.35s ease;
}

.lux-card:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 25px 60px rgba(184,92,122,0.25),
        inset 0 1px 10px rgba(255,255,255,0.6);
}

/* ================= ICON ================= */

.lux-icon {
    width: 75px;
    height: 75px;

    margin: 0 auto 20px;

    border-radius: 50%;

    background: linear-gradient(145deg, #ffffff, #f3e6ea);

    display: flex;
    align-items: center;
    justify-content: center;

    box-shadow: 
        0 8px 20px rgba(0,0,0,0.12),
        inset 0 2px 6px rgba(255,255,255,0.8);
}

.lux-icon img {
    width: 38px;
}

/* Bigger for feature */
.lux-icon.large {
    width: 95px;
    height: 95px;
}

.lux-icon.large img {
    width: 45px;
}

/* ================= TEXT ================= */

.lux-card h5,
.lux-feature h5 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #3a2a2a;
}

.lux-card p,
.lux-feature p {
    font-size: 0.95rem;
    color: #6b5c5c;
}

/* ================= BUTTON ================= */

.lux-btn {
    position: relative;
    overflow: hidden;

    display: inline-block;
    margin-top: 20px;

    padding: 12px 28px;
    border-radius: 40px;

    background: linear-gradient(135deg, #B85C7A, #8E3E5A);
    color: white;

    font-weight: 600;
    letter-spacing: 0.6px;

    text-decoration: none;

    box-shadow: 0 8px 25px rgba(184,92,122,0.35);
}

/* GOLD SHIMMER */
.lux-btn::after {
    content: "";
    position: absolute;
    top: 0;
    left: -75%;

    width: 50%;
    height: 100%;

    background: linear-gradient(
        120deg,
        transparent,
        rgba(255, 215, 0, 0.6),
        transparent
    );

    transform: skewX(-25deg);
}

/* ANIMATION */
.lux-btn:hover::after {
    animation: shimmer 1s forwards;
}

@keyframes shimmer {
    100% {
        left: 125%;
    }
}

.lux-btn:hover {
    transform: translateY(-2px) scale(1.04);
    box-shadow: 0 15px 40px rgba(184,92,122,0.5);
}

/* Full width */
.lux-btn.full {
    width: 100%;
}

/* ================= FEATURE PANEL ================= */

.lux-feature {
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(18px);

    border-radius: 30px;
    padding: 50px 30px;

    height: 100%;

    text-align: center;

    position: relative;

    border: 1px solid rgba(255,255,255,0.5);

    box-shadow: 
        0 20px 50px rgba(0,0,0,0.15),
        inset 0 2px 10px rgba(255,255,255,0.6);
}

/* LUXURY GOLD DIVIDER */
.lux-feature::before {
    content: "";
    position: absolute;

    left: -20px;
    top: 12%;
    bottom: 12%;

    width: 2px;

    background: linear-gradient(to bottom, #D4AF37, #F7E7CE, #D4AF37);
    border-radius: 10px;

    opacity: 0.7;
}

/* ================= GROUP SPACING ================= */

.lux-group {
    background: rgba(255,255,255,0.5);
    backdrop-filter: blur(12px);
    padding: 30px;
    border-radius: 25px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

/* ================= SUBTITLE ================= */

.lux-subtitle {
    font-family: 'NexaScriptHeavy', cursive;
    font-size: 1.4rem;

    color: #4A2C2A;
    margin-bottom: 20px;
}

/* ================= CONTACT ================= */

.lux-contact {
    background: linear-gradient(135deg, #F7EDEF, #E8C7CF);

    padding: 40px;
    border-radius: 30px;

    box-shadow: 0 15px 40px rgba(184,92,122,0.15);
}

/* CONTACT TEXT */
.lux-contact p {
    color: #4A2C2A;
    font-size: 0.95rem;
}

/* ================= SMALL CARD ADJUST ================= */

.lux-card h6 {
    margin-top: 10px;
    font-size: 1rem;
}

/* ================= BUTTON IMPROVEMENT ================= */

.lux-btn {
    font-size: 0.9rem;
}
/* ================= VIDEO ================= */
/* VIDEO CONTAINER */
/* VIDEO WRAPPER */
.lux-video {
    padding: 8px;
    max-width: 420px;   /* 👈 keeps portrait video elegant */
    width: 100%;
    margin: 0 auto;

    border-radius: 25px;
    overflow: hidden;

    box-shadow: 0 20px 50px rgba(0,0,0,0.25);
    background: linear-gradient(135deg, #E8C7CF, #F7EDEF);

}

/* VIDEO */
.lux-video video {
    width: 100%;
    height: auto;       /* keeps full content */
    display: block;
}
/* ================= BADGES ================= */
.lux-badges span {
    display: inline-block;
    margin: 10px;
    padding: 10px 20px;

    border-radius: 30px;
    background: rgba(255,255,255,0.7);

    font-size: 0.9rem;
    color: #4A2C2A;

    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    font-family: "Comic Sans MS", "Comic Sans", cursive;
    font-weight: bold;
}

/* ================= FORM ================= */
.lux-form {
    background: rgba(255,255,255,0.7);
    backdrop-filter: blur(15px);

    padding: 40px;
    border-radius: 30px;

    box-shadow: 0 20px 50px rgba(0,0,0,0.12);
}

/* INPUTS */
.lux-form input,
.lux-form textarea {
    width: 100%;
    padding: 12px 15px;

    border-radius: 15px;
    border: none;

    background: rgba(255,255,255,0.9);

    box-shadow: inset 0 2px 6px rgba(0,0,0,0.08);
    outline: none;
}

/* ================= FLOAT BUTTON ================= */
.floating-msg-btn {
    position: fixed;
    bottom: 25px;
    right: 25px;

    width: 55px;
    height: 55px;

    background: linear-gradient(135deg, #B85C7A, #8E3E5A);
    color: white;

    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 22px;
    text-decoration: none;

    box-shadow: 0 10px 25px rgba(184,92,122,0.4);

    animation: floatY 3s ease-in-out infinite;
}

/* FLOAT EFFECT */
@keyframes floatY {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}}

.floating-msg-btn:hover {
    transform: scale(1.1);
}

.lux-video {
    position: relative;
}

.lux-video video {
    width: 100%;
    border-radius: 25px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.2);
}

/* UNMUTE BUTTON */
.video-unmute {
    position: absolute;
    bottom: 15px;
    right: 15px;

    background: rgba(0,0,0,0.5);
    color: white;

    border: none;
    border-radius: 50%;
    padding: 10px;

    cursor: pointer;
}

.lux-counter h3 {
    font-size: 2rem;
    color: #4A2C2A;
    font-weight: 700;
}

.lux-counter span {
    color: #B85C7A;
    font-size: 2.5rem;
}

.lux-counter p {
    color: #6b5c5c;
    font-size: 0.95rem;
}

/* BASE STATE */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease;
}

/* ACTIVE */
.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* VARIATIONS */
.fade-left {
    transform: translateX(-40px);
}

.fade-right {
    transform: translateX(40px);
}

.zoom-in {
    transform: scale(0.9);
}

.reveal.active.fade-left,
.reveal.active.fade-right,
.reveal.active.zoom-in {
    transform: none;
}

/* ================= SIDE BY SIDE LAYOUT FIX ================= */

.lux-video {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Make right side stretch nicely */
.lux-group {
    height: auto;
}

/* Ensure cards inside right side look balanced */
.lux-group .lux-card {
    padding: 25px 15px;
}

/* RESPONSIVE: stack properly on mobile */
@media (max-width: 992px) {
    .lux-video {
        max-width: 100%;
        margin: auto;
    }
}

#contact {
    font-family: "Comic Sans MS", "Comic Sans", cursive;
    font-weight: bold;
}

#contact p,
#contact strong {
    font-family: "Comic Sans MS", "Comic Sans", cursive;
    font-weight: bold;
}

/* ================= REVEAL ANIMATIONS ================= */

/* BASE */
.reveal {
    opacity: 0;
    transform: translateY(60px);
    transition: all 0.9s ease;
}

/* ACTIVE STATE */
.reveal.active {
    opacity: 1;
    transform: translate(0, 0);
}

/* DIRECTIONS */

/* LEFT */
.fade-left {
    transform: translateX(80px);
}

/* RIGHT */
.fade-right {
    transform: translateX(-80px);
}

/* UP */
.fade-up {
    transform: translateY(80px);
}

/* DOWN */
.fade-down {
    transform: translateY(-80px);
}

/* PRODUCTS / INWARD EFFECT */
.inward-left {
    transform: translateX(-120px) scale(0.95);
}

.inward-right {
    transform: translateX(120px) scale(0.95);
}

/* ACTIVE STATES */
.reveal.active.fade-left,
.reveal.active.fade-right,
.reveal.active.fade-up,
.reveal.active.fade-down,
.reveal.active.inward-left,
.reveal.active.inward-right {
    transform: translate(0,0) scale(1);
    opacity: 1;
}

/* STAGGER EFFECT (SMOOTH ENTRY) */
.reveal:nth-child(1) { transition-delay: 0.1s; }
.reveal:nth-child(2) { transition-delay: 0.2s; }
.reveal:nth-child(3) { transition-delay: 0.3s; }
.reveal:nth-child(4) { transition-delay: 0.4s; }

#sendBtn {
    position: relative;
}

#btnLoader::after {
    content: "";
    width: 16px;
    height: 16px;
    margin-left: 10px;
    border: 2px solid white;
    border-top: 2px solid transparent;
    border-radius: 50%;
    display: inline-block;
    animation: spin 0.6s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}