:root {
    --pink: #e84393;
    --pink-light: #f062b0;
    --purple: #8c52ff;
    --purple-dark: #6b3fd4;
    --magenta: #c855a0;
    --black: #0A0908;
    --white: #ffffff;
    --off-white: #fff7f5;
    --light-bg: #f8f4fc;

    --logo-left: #ff5757;
    --logo-right: #8c52ff;
    --background: #c855a0;
    --box-light: #ffffff;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--off-white);
    margin: 0;
    padding: 0;
    font-family: "Montserrat", Arial, sans-serif;
    color: var(--black);
}

/* ── Typography ── */
.script-font {
    font-family: "Dancing Script", cursive;
    font-weight: 600;
}

.hero-font,
.heading-font {
    font-family: "Montserrat", Arial, sans-serif;
    font-weight: 700;
}

.text-pink { color: var(--pink); }
.text-purple { color: var(--purple); }
.text-black { color: var(--black); }

/* ── Nav (unchanged) ── */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

.navbar .nav-link {
    font-size: 1.25rem;
}

.navbar i {
    margin: 0rem 2rem 0rem 1rem;
}

.navbar .burger-bottom i {
    font-size: 1.5rem;
}

@media (max-width: 768px) {
    .navbar .burger-bottom {
        border-top: 1px solid #ffffff12;
        margin-top: 1rem;
        padding-top: 0.5rem;
    }

    .navbar-nav {
        margin-top: 0.5rem;
    }
}

@media (min-width: 767px) {
    #navbarNav .navbar-nav {
        justify-content: space-evenly;
        width: 100%;
        margin: 0 !important;
        padding: 0rem 5rem;
    }

    .navbar i {
        margin: 0rem 1rem;
    }
}

.nav-logo img {
    height: 2.5rem;
    width: auto;
}

/* ── Hero ── */
.hero {
    height: 100svh;
    min-height: 100vh;
    position: relative;
    background-color: var(--purple);
    overflow: hidden;
}

@media (max-width: 767px) {
    .hero {
        background-image: url('images/hero_mobile_image.jpg');
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    }
}

@media (min-width: 768px) {
    .hero {
        background-image: url('images/hero_desktop_image.jpg');
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    }
}

#hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero .logo {
    position: absolute;
    top: 9rem;
    left: 50%;
    z-index: 2;
    width: fit-content;
    animation: LOGOANIM 2s ease-in-out forwards;
}

@keyframes LOGOANIM {
    0% {
        opacity: 0;
        transform: translateX(-50%) scale(0);
    }
    100% {
        opacity: 1;
        transform: translateX(-50%) scale(1);
    }
}

.hero .logo img {
    width: min(58vw, 15rem);
    display: block;
    animation: ROCKANIM 5s ease-in-out infinite;
    border-radius: 50%;
    border: 4px solid #ffffff94;
}

@keyframes ROCKANIM {
    0% { rotate: 0; }
    25% { rotate: -2deg; }
    50% { rotate: 2deg; }
    100% { rotate: 0; }
}

.hero-copy {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    text-align: center;
    width: min(92%, 36rem);
    padding: 0 0.25rem;
    opacity: 0;
    animation: HEROTEXTANIM 2s 2s ease-in-out forwards;
}

.hero-copy h1 {
    font-weight: 800;
    margin: 0 0 0.4rem;
    color: var(--white);
    font-size: clamp(1.35rem, 6.5vw, 2.4rem);
    letter-spacing: 0.05em;
    line-height: 1.15;
    text-shadow: 0 2px 16px rgba(0, 0, 0, 0.55);
}

.hero-tagline {
    color: var(--white);
    margin: 0;
    font-size: clamp(0.9rem, 3.6vw, 1.15rem);
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.55);
}

.hero-tagline span {
    display: block;
}

.hero-tagline .script-font {
    color: var(--white);
    font-size: 1.35em;
}

.hero-tagline .text-purple {
    color: #c4a8ff;
}

@keyframes HEROTEXTANIM {
    0% {
        opacity: 0;
        transform: translateX(-50%) translateY(1.25rem);
    }
    100% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

@media (min-width: 768px) {
    .hero .logo img {
        width: min(42vw, 20rem);
    }

    .hero-tagline span {
        display: inline;
    }

    .hero-tagline span + span::before {
        content: " ";
    }
}

.section-fade {
    width: 100%;
    height: 15px;
    position: absolute;
    transform: translateY(-1px);
    z-index: 100;
}

.hero-fade.section-fade {
    background-image: linear-gradient(180deg, #ffffff52, var(--magenta));
}

.logo img {
    width: 100%;
    height: auto;
}

/* ── Cookie banner ── */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #333;
    color: #fff;
    padding: 10px;
    text-align: center;
    font-size: 14px;
    z-index: 1000;
}

.cookie-banner button {
    background-color: #4CAF50;
    color: white;
    border: none;
    padding: 10px 20px;
    margin-left: 15px;
    cursor: pointer;
}

.cookie-banner button:hover {
    background-color: #45a049;
}

#cookie-banner {
    display: none;
}

/* ── Wave dividers ── */
.wave-divider {
    width: 100%;
    height: 60px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.wave-pink-to-white {
    background-color: var(--magenta);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 60'%3E%3Cpath fill='%23fff7f5' d='M0,30 C360,60 720,0 1080,30 C1260,45 1380,15 1440,30 L1440,60 L0,60 Z'/%3E%3C/svg%3E");
}

.wave-white-to-light {
    background-color: var(--off-white);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 60'%3E%3Cpath fill='%23f8f4fc' d='M0,30 C360,0 720,60 1080,30 C1260,15 1380,45 1440,30 L1440,60 L0,60 Z'/%3E%3C/svg%3E");
}

.wave-light-to-pink {
    background-color: var(--light-bg);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 60'%3E%3Cpath fill='%23c855a0' d='M0,30 C360,60 720,0 1080,30 C1260,45 1380,15 1440,30 L1440,60 L0,60 Z'/%3E%3C/svg%3E");
}

.wave-pink-to-dark {
    background-color: var(--magenta);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 60'%3E%3Cpath fill='%231a1a1a' d='M0,30 C360,0 720,60 1080,30 C1260,15 1380,45 1440,30 L1440,60 L0,60 Z'/%3E%3C/svg%3E");
}

/* ── Flyer intro banner ── */
.flyer-intro {
    background: var(--off-white);
    padding: 2.5rem 1.5rem;
}

.flyer-tagline {
    font-size: clamp(0.95rem, 2.5vw, 1.15rem);
    font-weight: 600;
    margin: 0;
    line-height: 1.6;
}

.flyer-tagline .script-font {
    font-size: 1.3em;
}

.value-props {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
}

.value-prop {
    flex: 1;
    min-width: 160px;
    text-align: center;
    padding: 1rem;
}

.value-prop i {
    font-size: 2.5rem;
    color: var(--pink);
    margin-bottom: 0.75rem;
    display: block;
}

.value-prop:nth-child(3) i {
    color: var(--purple);
}

.value-prop:nth-child(5) i {
    color: var(--pink);
}

.value-prop p {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    margin: 0;
    line-height: 1.4;
}

.value-prop-divider {
    width: 1px;
    height: 70px;
    background: repeating-linear-gradient(
        to bottom,
        var(--purple) 0px,
        var(--purple) 4px,
        transparent 4px,
        transparent 8px
    );
    opacity: 0.4;
}

@media (max-width: 576px) {
    .value-prop-divider {
        display: none;
    }

    .value-props {
        flex-direction: column;
        gap: 1rem;
    }
}

/* ── Welcome / About ── */
.welcome-section {
    background: var(--off-white);
    padding: 3rem 1.5rem;
}

.welcome-script {
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 0;
    line-height: 1.1;
}

.welcome-text h2 {
    font-size: clamp(1.4rem, 3.5vw, 2rem);
    margin-bottom: 0.25rem;
}

.established {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    margin-bottom: 1.5rem;
}

.welcome-text p {
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.welcome-thanks {
    font-weight: 600;
    margin-top: 1.5rem !important;
}

.lauren-photo {
    position: relative;
    text-align: center;
}

.photo-brush-bg {
    position: absolute;
    inset: -10px 10px 60px -10px;
    background: linear-gradient(135deg, var(--pink-light), var(--purple));
    border-radius: 2rem;
    opacity: 0.25;
    transform: rotate(-3deg);
    z-index: 0;
}

.lauren-photo img {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 380px;
    border-radius: 1.5rem;
    object-fit: cover;
    aspect-ratio: 3/4;
    box-shadow: 0 12px 40px rgba(140, 82, 255, 0.25);
}

.lauren-overlay {
    position: relative;
    z-index: 2;
    background: var(--black);
    color: var(--white);
    padding: 1rem 1.5rem;
    border-radius: 1rem;
    margin: -3rem auto 0;
    max-width: 320px;
    text-align: left;
    transform: rotate(-1deg);
}

.lauren-overlay .script-font {
    font-size: 1.6rem;
    margin-bottom: 0.25rem;
}

.overlay-role {
    font-size: 0.85rem;
    font-weight: 600;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.overlay-brand {
    font-weight: 700;
    font-size: 0.9rem;
    margin: 0.25rem 0 0;
}

/* ── Experience + Why Choose ── */
.experience-section {
    background: var(--light-bg);
    padding: 3rem 1.5rem;
}

.experience-badge {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.badge-circle {
    width: 90px;
    height: 90px;
    min-width: 90px;
    border-radius: 50%;
    background: var(--purple);
    display: flex;
    align-items: center;
    justify-content: center;
}

.badge-circle i {
    font-size: 2rem;
    color: var(--white);
}

.badge-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--purple);
    line-height: 1;
}

.badge-label {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    color: var(--black);
    line-height: 1.3;
}

.why-choose {
    background: var(--purple);
    color: var(--white);
    border-radius: 1.5rem;
    padding: 2rem;
    box-shadow: 0 8px 30px rgba(140, 82, 255, 0.35);
}

.why-choose h3 {
    font-size: 1.1rem;
    letter-spacing: 0.04em;
    margin-bottom: 1.25rem;
}

.why-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.why-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    font-size: 0.9rem;
    line-height: 1.5;
}

.why-list li i {
    color: var(--pink-light);
    margin-top: 3px;
    flex-shrink: 0;
}

.box {
    box-shadow: rgba(0, 0, 0, 0.15) 0px 8px 30px;
}

/* ── Products ── */
.products-section {
    background: var(--magenta);
    color: var(--white);
    padding: 3rem 1.5rem;
}

.products-script {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    text-align: center;
    margin-bottom: 2rem;
}

.product-card {
    background: var(--white);
    border-radius: 1rem;
    overflow: hidden;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    transition: transform 0.2s ease;
    height: 100%;
}

.product-card:hover {
    transform: translateY(-4px);
}

.product-icon {
    padding: 1.75rem 1rem 1rem;
    color: var(--purple);
}

.product-icon i {
    font-size: 2.5rem;
}

.product-label {
    display: block;
    padding: 0.6rem;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    color: var(--white);
}

.label-pink { background: var(--pink); }
.label-purple { background: var(--purple); }

.order-cta {
    margin-top: 2.5rem;
    font-size: 1rem;
    font-weight: 500;
    opacity: 0.95;
}

/* ── Contact ── */
.contact-section {
    background: #1a1a1a;
    color: var(--white);
    padding: 3rem 1.5rem;
}

.contact-section h2 {
    color: var(--white);
}

.contact-section h2 i {
    font-size: 2rem;
    padding-right: 1rem;
    color: var(--pink);
}

.contact-links {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.75rem;
    max-width: 640px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .contact-links {
        grid-template-columns: 1fr 1fr;
        max-width: 800px;
    }
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 1rem 1.25rem;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 1rem;
    color: var(--white);
    text-decoration: none;
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.contact-link:hover {
    background: rgba(232, 67, 147, 0.2);
    border-color: var(--pink);
    color: var(--white);
    transform: translateX(4px);
}

.contact-link i {
    font-size: 1.5rem;
    width: 2rem;
    text-align: center;
    color: var(--pink);
}

.contact-link-label {
    display: block;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    opacity: 0.7;
}

.contact-link-value {
    display: block;
    font-size: 0.95rem;
    font-weight: 600;
}

/* ── Footer ── */
.site-footer {
    background: var(--black);
    color: var(--white);
    padding: 2.5rem 1.5rem 1.5rem;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.footer-contact a {
    color: var(--white);
    text-decoration: none;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    transition: color 0.2s;
}

.footer-contact a:hover {
    color: var(--pink);
}

.footer-contact i {
    color: var(--pink);
    width: 1.2rem;
}

.footer-tagline {
    font-size: clamp(1rem, 2.5vw, 1.3rem);
    color: var(--pink);
    margin: 0;
    line-height: 1.5;
}

.footer-tagline i {
    color: var(--white);
    font-size: 0.85em;
}

.footer-copy {
    text-align: center;
    margin: 2rem 0 0;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.85rem;
    opacity: 0.6;
}

@media (max-width: 991px) {
    .footer-contact {
        align-items: center;
        text-align: center;
    }
}

/* ── Scroll animations ── */
.fade-in {
    opacity: 0;
    transform: translateY(5%);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.fade-in.show {
    opacity: 1;
    transform: translateY(0);
}

@media (min-width: 992px) {
    section {
        padding-left: 2rem !important;
        padding-right: 2rem !important;
    }

    .flyer-intro,
    .welcome-section,
    .experience-section,
    .products-section,
    .contact-section {
        padding-left: 4rem !important;
        padding-right: 4rem !important;
    }
}
