@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&display=swap');

:root {
    --bg-dark: #042326;
    --accent-beige: #C5A377;
    --wavy-green: #00897B;
    --form-beige: #F5E6CC;
    --white: #FFFFFF;
    --text-dark: #111111;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-dark);
    color: var(--white);
    overflow-x: hidden;
}

/* NAVBAR */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 100;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-decoration: none;
    color: var(--white);
}

.nav-menu {
    display: flex;
    gap: 1rem;
}

.nav-menu a {
    text-decoration: none;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 500;
    transition: var(--transition);
}

.nav-menu a:hover,
.nav-menu a.active {
    background: rgba(255, 255, 255, 0.1);
}

/* HERO */
.hero-section {
    height: 100vh;
    padding: 80px 5% 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.hero-carousel-container {
    width: 100%;
    height: 100%;
    position: relative;
    max-width: 1200px;
}

.hero-slides {
    width: 100%;
    height: 100%;
    position: relative;
}

.hero-white-card {
    background: white;
    width: 100%;
    height: 100%;
    border-radius: 40px;
    overflow: hidden;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease, visibility 0.8s ease;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

.hero-white-card.active {
    opacity: 1;
    visibility: visible;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    pointer-events: none;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.2), transparent 40%);
}

.carousel-nav {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.4);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background: #D32F2F;
    transform: scale(1.2);
}

.hero-top-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    pointer-events: auto;
}

.brand-link {
    font-weight: 800;
    color: #111;
    text-decoration: none;
    font-size: 0.8rem;
}

.hero-socials {
    display: flex;
    gap: 8px;
    font-size: 0.75rem;
    color: #111;
}

.hero-center-text {
    text-align: center;
}

.hero-title {
    font-size: clamp(2rem, 8vw, 6rem);
    font-weight: 950;
    color: #111;
    line-height: 0.9;
    text-transform: uppercase;
    letter-spacing: -2px;
}

.hero-title span {
    color: #D32F2F;
}

.hero-bottom-row {
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    pointer-events: auto;
}

.hero-bottom-right {
    max-width: 320px;
    text-align: right;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.small-hero-desc {
    font-size: 0.65rem;
    color: #555;
    margin-bottom: 1rem;
    line-height: 1.4;
    font-weight: 500;
}

.brand-lockup {
    display: flex;
    align-items: center;
    gap: 10px;
}

.swirl-icon {
    width: 60px;
    height: 60px;
    color: #111;
}

.brand-names {
    text-align: left;
    line-height: 0.9;
}

.j-text {
    font-size: 2.8rem;
    font-weight: 900;
    color: #111;
}

.on-text {
    font-size: 1.1rem;
    color: #D32F2F;
    font-weight: 800;
    letter-spacing: 1px;
}

/* NEW DROPS */
.drops-section {
    padding: 4rem 5%;
    text-align: center;
}

.drops-title {
    color: var(--accent-beige);
    font-size: 2rem;
    margin-bottom: 3rem;
}

.swiper.mySwiper {
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
    padding: 1rem 0;
}

.product-card {
    background: var(--accent-beige);
    border-radius: 20px;
    padding: 8px;
    display: flex;
    flex-direction: column;
    transition: var(--transition);
    height: auto;
    text-decoration: none;
    color: inherit;
}

.product-card img {
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
    border-radius: 15px;
}

.product-meta {
    display: flex;
    justify-content: space-between;
    padding: 12px 5px 5px;
    color: var(--bg-dark);
    font-weight: 700;
}

.pagination-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-top: 3rem;
}

.pag-btn {
    width: 35px;
    height: 35px;
    border: 1px solid var(--accent-beige);
    border-radius: 50%;
    background: none;
    color: var(--accent-beige);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* WAVY SECTION (CARD LOOK) */
.wavy-info-section {
    background: var(--wavy-green);
    margin: 80px 5%;
    padding: 100px 5%;
    border-radius: 60px;
    position: relative;
    overflow: hidden;
}

/* simplified Scallops - Fewer and Larger */
.scallop-top,
.scallop-bottom {
    position: absolute;
    left: 0;
    width: 100%;
    height: 40px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 20' preserveAspectRatio='none'%3E%3Cpath d='M0 20 C 25 0 75 0 100 20 V 20 H 0 Z' fill='%23042326'/%3E%3C/svg%3E");
    background-size: 200px 40px;
}

.scallop-top {
    top: -1px;
    transform: rotate(180deg);
}

.scallop-bottom {
    bottom: -1px;
}

.wavy-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 5;
    gap: 40px;
}

.wavy-content {
    flex: 1.2;
}

.wavy-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    line-height: 1;
    margin-bottom: 2rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: -1.5px;
}

.wavy-content p {
    font-family: 'Outfit', sans-serif;
    font-size: 0.85rem;
    margin-bottom: 2.5rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
    max-width: 440px;
}

.learn-more-pill {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 12px 28px;
    background: transparent;
    border: 1.5px solid white;
    border-radius: 50px;
    text-decoration: none;
    color: white;
    font-weight: 500;
    font-size: 0.85rem;
    transition: var(--transition);
}

.learn-more-pill:hover {
    background: white;
    color: var(--wavy-green);
}

.oval-img-wrap {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    position: relative;
}

.oval-img {
    width: 400px;
    height: 280px;
    border-radius: 140px;
    object-fit: cover;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

/* Decorative Sparkles */
.sparkle-figma {
    position: absolute;
    color: white;
    z-index: 10;
}

.sparkle-1 {
    top: -30px;
    right: 30px;
    font-size: 3rem;
}

.sparkle-2 {
    bottom: 30px;
    left: -20px;
    font-size: 2.2rem;
}

@keyframes float {

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

    50% {
        transform: translateY(-20px);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

/* OVERLAPPING MARQUEE */
.marquee-stack {
    height: 250px;
    position: relative;
    margin: 100px 0;
}

.marquee-strip {
    position: absolute;
    width: 120%;
    left: -10%;
    padding: 1.5rem 0;
    white-space: nowrap;
    display: flex;
    overflow: hidden;
}

.strip-teal {
    background: var(--wavy-green);
    transform: rotate(-3deg);
    top: 20px;
    z-index: 2;
}

.strip-beige {
    background: #E5D1B3;
    transform: rotate(3deg);
    top: 100px;
    z-index: 1;
}

.marquee-inner {
    display: flex;
    gap: 3rem;
    font-weight: 900;
    font-size: 2.5rem;
    animation: scroll 20s linear infinite;
    text-transform: uppercase;
}

.strip-teal .marquee-inner {
    color: var(--bg-dark);
}

.strip-beige .marquee-inner {
    color: var(--wavy-green);
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* CONTACT */
.contact-section {
    padding: 6rem 5%;
    text-align: center;
    position: relative;
}

.contact-section h1 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.contact-form {
    max-width: 500px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-field {
    background: var(--form-beige);
    border: none;
    border-radius: 15px;
    padding: 1.2rem;
    font-family: inherit;
    font-weight: 600;
}

.submit-btn {
    background: var(--wavy-green);
    color: white;
    padding: 1.2rem;
    border: none;
    border-radius: 15px;
    font-weight: 700;
    cursor: pointer;
}

/* FOOTER */
footer {
    padding: 6rem 5% 2rem;
    text-align: center;
}

.huge-logo {
    font-size: clamp(3rem, 15vw, 15rem);
    font-weight: 950;
    color: var(--accent-beige);
    opacity: 0.8;
    line-height: 1;
    margin-bottom: 4rem;
}

.footer-split {
    display: flex;
    justify-content: center;
    gap: 100px;
    max-width: 1000px;
    margin: 0 auto;
}

.divider-line {
    width: 1px;
    background: rgba(255, 255, 255, 0.1);
}

.footer-col h4 {
    margin-bottom: 1.5rem;
}

.social-row {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

/* RESPONSIVE STYLES & PREMIUM DRAWER */
@media (max-width: 968px) {

    /* Navbar Adjustments */
    nav {
        padding: 1.5rem 5%;
        justify-content: space-between;
    }

    /* Premium Drawer Menu */
    .nav-menu {
        position: fixed;
        top: 0;
        right: 0;
        width: 100%;
        height: 100vh;
        background: rgba(4, 35, 38, 0.98);
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2.5rem;
        transform: translateX(100%);
        transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
        z-index: 999;
        /* Drawer Shadow to separate from content */
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
    }

    .nav-menu.active {
        transform: translateX(0);
        right: 0;
        /* Override generic style */
    }

    /* Staggered Animation for Links */
    .nav-menu a {
        font-size: 2.5rem;
        font-weight: 800;
        color: var(--white);
        text-transform: uppercase;
        letter-spacing: 2px;
        border: none;
        padding: 0;
        opacity: 0;
        transform: translateY(20px);
        transition: opacity 0.4s ease, transform 0.4s ease, color 0.3s ease;
        background: transparent !important;
        /* Override hover bg */
    }

    .nav-menu.active a {
        opacity: 0.6;
        /* Default opacity */
        transform: translateY(0);
    }

    /* Delays for staggered effect */
    .nav-menu.active a:nth-child(1) {
        transition-delay: 0.1s;
    }

    .nav-menu.active a:nth-child(2) {
        transition-delay: 0.2s;
    }

    .nav-menu.active a:nth-child(3) {
        transition-delay: 0.3s;
    }

    .nav-menu.active a:nth-child(4) {
        transition-delay: 0.4s;
    }

    .nav-menu a:hover,
    .nav-menu a.active {
        color: var(--accent-beige);
        opacity: 1 !important;
        transform: scale(1.05);
        /* Subtle scale on hover */
    }

    /* Decoration inside drawer */
    .nav-menu::after {
        content: '';
        width: 60px;
        height: 2px;
        background: var(--accent-beige);
        margin-top: 2rem;
        opacity: 0;
        transition: opacity 0.5s ease 0.5s;
    }

    .nav-menu.active::after {
        opacity: 0.5;
    }

    /* Hamburger Icon - High Contrast & Z-Index */
    .hamburger {
        display: block;
        width: 35px;
        height: 24px;
        position: relative;
        z-index: 1001;
        /* Above the drawer */
        cursor: pointer;
    }

    /* Hero Adjustments */
    .hero-section {
        flex-direction: column;
        padding-top: 140px;
    }

    .hero-overlay {
        padding: 1.5rem;
    }

    .hero-title {
        font-size: 3.5rem;
    }

    /* Wavy Section */
    .wavy-container {
        flex-direction: column;
        text-align: center;
    }

    .wavy-content {
        order: 2;
    }

    .oval-img-wrap {
        order: 1;
        justify-content: center;
        margin-bottom: 2rem;
    }

    .oval-img {
        width: 300px;
        height: 300px;
    }

    /* Footer & Others */
    .footer-split,
    .stats-grid,
    .values-section .process-steps {
        flex-direction: column;
    }

    .footer-split {
        gap: 40px;
    }

    .divider-line {
        width: 100%;
        height: 1px;
    }

    footer {
        padding: 4rem 5% 2rem;
    }

    .huge-logo {
        font-size: 15vw;
        margin-bottom: 2rem;
    }

    .stat-card {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        padding: 3rem 0;
    }

    .gallery-strip {
        grid-template-columns: 1fr 1fr;
    }

    /* Marquee */
    .marquee-inner {
        font-size: 1.5rem;
        gap: 1.5rem;
    }

    .marquee-stack {
        height: 150px;
        margin: 50px 0;
    }

    .strip-teal {
        top: 10px;
    }

    .strip-beige {
        top: 60px;
    }
}

@media (max-width: 480px) {
    .nav-menu a {
        font-size: 2rem;
    }

    .hero-title {
        font-size: 2.8rem;
    }

    .oval-img {
        width: 250px;
        height: 250px;
    }

    /* Adjust hamburger size for very small screens */
    .hamburger {
        width: 30px;
        height: 20px;
    }

    /* Premium Compact Product Card for Mobile */
    .product-card {
        padding: 5px;
        /* Sleeker padding */
        border-radius: 15px !important;
    }

    .product-card img {
        border-radius: 12px;
    }

    .product-meta {
        padding: 8px 4px 4px;
        font-size: 0.85rem;
    }

    .product-meta span {
        font-weight: 600;
    }
}

/* Mobile & Tablet Footer Refinements (max-width: 968px) */
@media (max-width: 968px) {
    footer {
        text-align: left !important;
        padding-top: 2rem !important;
    }

    .huge-logo {
        font-size: 15vw;
        margin-bottom: 30px;
        line-height: 1;
        letter-spacing: -2px;
        text-align: center;
        /* Logo remains centered/subtle */
        width: 100%;
        opacity: 0.05 !important;
    }

    .footer-grid {
        gap: 40px !important;
    }

    .social-row {
        justify-content: flex-start !important;
        /* Left match */
    }

    /* Force Left Align on Flex Cols */
    .footer-grid>div {
        align-items: flex-start !important;
        text-align: left !important;
    }

    .footer-grid a {
        text-align: left;
    }
}

/* Hamburger Icon Base Styles - moved here for clarity */
.hamburger {
    display: none;
    /* Hidden on desktop */
}

/* BUT visible within media query above */
@media (max-width: 968px) {
    .hamburger {
        display: block;
    }
}

.hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--white);
    /* White for contrast */
    position: absolute;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    border-radius: 2px;
}

.hamburger span:nth-child(1) {
    top: 0;
}

.hamburger span:nth-child(2) {
    top: 9px;
    width: 80%;
    right: 0;
}

/* Staggered width look */
.hamburger span:nth-child(3) {
    top: 18px;
}

/* Hamburger Animation to 'X' */
.hamburger.active span:nth-child(1) {
    top: 9px;
    transform: rotate(45deg);
    background: var(--white);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
    width: 0;
}

.hamburger.active span:nth-child(3) {
    top: 9px;
    transform: rotate(-45deg);
    background: var(--white);
}