* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: #f6f2ea;
    /* beige */
    color: #2c2c2c;
    cursor: default;
}

/* COLOR VARIABLES */
:root {
    --beige: #f6f2ea;
    --olive: #6b705c;
    --gold: #c9a227;
    --dark: #2c2c2c;
}

/* NAVBAR */
.nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(129, 134, 74, 0.95);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 60px;
    backdrop-filter: blur(10px);
    z-index: 1000;
}

.logo {
    display: flex;
    align-items: center;
}

.logo p {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: #fff;
    letter-spacing: 3px;
    font-weight: 700;
}

.logo img {
    padding-right: 10px;
    width: 80px;
}

.nav-links a {
    margin-left: 35px;
    text-decoration: none;
    color: #fff;
    font-size: 0.9rem;
    transition: 0.3s;
}

/* MOBILE MENU */

/* Hamburger Bars */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 1100;
}

.menu-toggle .bar {
    width: 28px;
    height: 2px;
    background: white;
    margin: 5px 0;
    transition: all 0.4s ease;
}

/* X Animation */
.menu-toggle.active .bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.menu-toggle.active .bar:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active .bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Menu Luxury Slide */
@media (max-width: 600px) {

    .menu-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background: rgba(129, 134, 74, 0.97);
        backdrop-filter: blur(15px);
        display: flex;
        flex-direction: column;
        padding-top: 100px;
        text-align: left;
        transition: all 0.45s ease;
        box-shadow: -10px 0 40px rgba(0, 0, 0, 0.15);
    }

    .nav-links a {
        padding: 18px 40px;
        font-size: 1.05rem;
        color: white;
        letter-spacing: 1px;
        opacity: 0;
        transform: translateX(20px);
        transition: 0.4s ease;
    }

    .nav-links a:hover {
        color: var(--gold);
    }

    /* When menu opens */
    .nav-links.show {
        right: 0;
    }

    .nav-links.show a {
        opacity: 1;
        transform: translateX(0);
    }

    /* Stagger effect (bougie af) */
    .nav-links.show a:nth-child(1) {
        transition-delay: .1s;
    }

    .nav-links.show a:nth-child(2) {
        transition-delay: .2s;
    }

    .nav-links.show a:nth-child(3) {
        transition-delay: .3s;
    }

    .nav-links.show a:nth-child(4) {
        transition-delay: .4s;
    }

    .nav-links a::after {
        content: "";
        display: block;
        width: 0;
        height: 2px;
        background: var(--gold);
        transition: 0.3s;
    }

    .nav-links a:hover::after {
        width: 100%;
    }

}

/* HERO */
.hero {
    position: relative;
    height: 100vh;
    background: url("../images/istockphoto-1393966935-612x612.jpg") center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(rgb(245, 240, 230, 0.85),
            rgb(230, 220, 200, 0.75));
    z-index: 1;
}

.hero-text {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.hero p {
    margin: 20px 0;
    font-size: 1.1rem;
    color: var(--olive);
}

.btn {
    display: inline-block;
    padding: 14px 35px;
    border: 1px solid var(--gold);
    color: var(--dark);
    text-decoration: none;
    letter-spacing: 2px;
    font-size: 0.85rem;
    transition: 0.3s;
}

.btn:hover {
    background: var(--gold);
    color: white;
}

/* ABOUT */

.about h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.3rem;
}

.about p {
    margin-top: 13px;
    color: #555;
    line-height: 1.7;
}

/* ABOUT SECTION UPDATE */
.about {
    position: relative;
    /* Creates a container for the absolute canvas */
    padding: 8rem 7%;
    background: white;
    text-align: center;
    overflow: visible;
    /* Ensures sparkles don't spill out */
}

/* The Canvas itself */
#luxury-sparkle {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    /* Puts it behind the text */
    pointer-events: none;
    /* Ensures you can still click/select text over it */
}

/* The Content Box */
.about-container {
    position: relative;
    z-index: 1;
    /* Puts the text IN FRONT of the sparkles */
}

/* CONTENT */
.content {
    padding: 60px 20px;
}

.content-wrapper {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

/* IMAGE CARD */

.name-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: var(--gold);
    color: #fff;
    padding: 14px 18px;
    border-radius: 10px;
    font-size: 14px;
}

.video-section h3{
    font-size: 1.5rem;
    font-weight: 900;
}

#founderhead {
    padding-top: 27px;
}

/* ===== STICKY SCROLL ABOUT SECTION ===== */
.about-scroll {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  max-width: 1200px;
  margin: auto;
  align-items: flex-start;
}

/* Sticky Image */
.about-sticky-img {
  position: sticky;
  top: 120px; /* navbar height offset */
  height: fit-content;
}

.about-sticky-img img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.15);
}

/* Founder badge */
.name-badge {
  margin-top: 15px;
  background: var(--gold);
  backdrop-filter: blur(8px);
  padding: 12px 18px;
  border-radius: 12px;
  font-size: 0.85rem;
  letter-spacing: 1px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

/* Text Column */
.about-scroll-text h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  margin-bottom: 12px;
  margin-top: 40px;
}

.about-scroll-text p {
  line-height: 1.9;
  color: #444;
  font-size: 1rem;
  margin-bottom: 20px;
}

/* MOBILE FIX (Disable sticky) */
@media (max-width: 900px) {
  .about-scroll {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-sticky-img {
    position: relative;
    top: 0;
  }
}


/* PRODUCTS */
.products {
    padding: 6rem 10%;
}

.products h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 20px;
}

.products h4 {
    font-size: 1.3rem;
    text-align: center;
    margin-bottom: 40px;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.product-card {
    background: white;
    padding: 15px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: 0.3s;
}

.product-card:hover {
    transform: translateY(-8px);
}

.product-card img {
    width: 100%;
    border-radius: 10px;
}

.product-card h3 {
    margin-top: 15px;
    font-size: 1rem;
}

.product-card p {
    margin: 6.5px 0;
    font-size: 0.74rem;
}

.product-card h5 {
    color: var(--gold);
    font-weight: 600;
}

.product-card button {
    margin-top: 8px;
    padding: 9px 65px;
    background: var(--olive);
    color: white;
    border: solid 1px var(--olive);
    border-radius: 4px;
    cursor: pointer;
    letter-spacing: 0px;
    transition: 0.4s;
}

.product-card button:hover {
    transform: scale(1.07);
}

/* CONTACT */
.contact {
    padding: 6rem 25%;
    background: white;
    text-align: center;
}

.contact h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    margin-bottom: 30px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 14px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: inherit;
}

.contact-form input:focus {
    border: solid 2px var(--olive);
}

.contact-form textarea:focus {
    border: solid 2px var(--olive);
}

.contact-form button {
    padding: 14px 40px;
    background: white;
    color: var(--dark);
    border: solid 1px var(--olive);
    cursor: pointer;
    letter-spacing: 0px;
    transition: 0.8s;
}

.contact-form button:hover {
    background: var(--olive);
    color: white;
}

/* FOOTER */
.footer {
    padding: 30px;
    text-align: center;
    background: #e9e3d6;
    font-size: 0.85rem;
    color: #555;
}

/* FLOATING CART BUTTON */
.cart-bubble {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background: rgba(107, 112, 92, 0.9);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    z-index: 9999;
}

.cart-bubble span {
    position: absolute;
    top: -6px;
    right: -6px;
    background: var(--gold);
    color: black;
    font-size: 0.75rem;
    padding: 3px 6px;
    border-radius: 50%;
}

/* CART PANEL */
.floating-cart {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 320px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.25);
    transform: translateY(120%);
    transition: 0.4s ease;
    z-index: 9998;
    overflow: hidden;
    font-size: 0.9rem;
}

.floating-cart.show {
    transform: translateY(0);
}

.cart-header {
    background: var(--olive);
    color: white;
    padding: 12px 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-header button {
    background: none;
    border: none;
    color: white;
    font-size: 1.1rem;
    cursor: pointer;
}

.cart-items {
    max-height: 200px;
    overflow-y: auto;
    padding: 10px 15px;
}

.cart-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    font-size: 0.85rem;
}

.cart-footer {
    padding: 12px 15px;
    border-top: 1px solid #eee;
}

.cart-footer button {
    width: 100%;
    padding: 10px;
    background: var(--gold);
    border: none;
    cursor: pointer;
    font-weight: bold;
}

#sparkleContainer {
    position: fixed;
    pointer-events: none;
    inset: 0;
    z-index: 99999;
}

.sparkle {
    position: absolute;
    width: 8px;
    height: 8px;
    background: radial-gradient(circle, #fff, var(--gold));
    border-radius: 50%;
    animation: sparkle 1s ease-out forwards;
}

@keyframes sparkle {
    0% {
        transform: scale(1) translate(0,0);
        opacity: 1;
    }
    100% {
        transform: scale(0) translate(var(--x), var(--y));
        opacity: 0;
    }
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about,
    .contact {
        padding: 4rem 10%;
    }
}

@media (max-width: 600px) {

    .hero h1 {
        font-size: 2.4rem;
    }

    .logo p {
        visibility: hidden;
    }

    .logo img {
        margin-left: -10px;
        padding-right: 10px;
        width: 60px;
    }

    .product-grid {
        grid-template-columns: 1fr;
    }
}
