/* ========================================
   RESET & BASE STYLES
   ======================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Colors */
    --color-black: #0a0a0a;
    --color-dark: #1a1a1a;
    --color-charcoal: #2a2a2a;
    --color-gray: #666666;
    --color-light-gray: #e8e8e8;
    --color-white: #ffffff;
    --color-cream: #f5f5f0;
    --color-gold: #c9a961;
    --color-gold-dark: #a88b4a;
    --color-accent: #8b9d7a;
    
    /* Typography */
    --font-display: 'Playfair Display', serif;
    --font-hero: 'Syne', sans-serif;
    --font-body: 'Cormorant Garamond', serif;
    --font-sans: 'Montserrat', sans-serif;
    
    /* Spacing */
    --container-padding: 5%;
    --section-spacing: 120px;
    
    /* Effects */
    --blur-amount: 20px;
    --transition-smooth: cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    background-color: var(--color-cream);
    color: var(--color-black);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ========================================
   NAVIGATION
   ======================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 25px 0;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    transition: all 0.3s var(--transition-smooth);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--container-padding);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.logo-img {
    height: 100px;
    width: auto;
    object-fit: contain;
    /* filter: brightness(0) invert(1); */
}

/* Alternative: If you want to keep text logo as fallback */
.logo-text {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 700;
    color: var(--color-white);
    letter-spacing: 3px;
}

.nav-menu {
    display: flex;
    gap: 50px;
    list-style: none;
}

.nav-menu a {
    font-family: var(--font-sans);
    font-size: 14px;
    color: var(--color-white);
    text-decoration: none;
    font-weight: 400;
    letter-spacing: 1px;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--color-gold);
    transition: width 0.3s ease;
}

.nav-menu a:hover {
    color: var(--color-gold);
}

.nav-menu a:hover::after {
    width: 100%;
}

.nav-cta {
    font-family: var(--font-sans);
    font-size: 13px;
    color: var(--color-black);
    background: var(--color-gold);
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.nav-cta:hover {
    background: var(--color-gold-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(201, 169, 97, 0.3);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 2px;
    background: var(--color-white);
    transition: all 0.3s ease;
    border-radius: 2px;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 80px;

    background-image:
        linear-gradient(
            rgba(10, 10, 10, 0.7),
            rgba(10, 10, 10, 0.85)
        ),
        url("Images/passion-bg.webp"); /* your hero background image */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}


.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(ellipse at 20% 50%, rgba(139, 157, 122, 0.15), transparent 50%),
        radial-gradient(ellipse at 80% 50%, rgba(201, 169, 97, 0.1), transparent 50%);
    opacity: 0;
    animation: fadeIn 1.5s ease forwards;
}

.hero-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--container-padding);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    width: 100%;
}

.hero-text {
    z-index: 2;
}

.hero-title {
    font-family: var(--font-hero);
    font-size: clamp(60px, 7vw, 95px);
    font-weight: 800;
    color: var(--color-white);
    line-height: 1;
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
    letter-spacing: -2px;
}

.title-line {
    display: block;
}

.hero-subtitle {
    font-family: var(--font-body);
    font-size: 20px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: 50px;
    font-weight: 300;
    max-width: 500px;
}

.hero-cta {
    margin-top: 40px;
}

.hero-image {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image img {
    width: 90%;
    max-width: 600px;
    height: auto;
    object-fit: contain;
    border-radius: 20px;
    box-shadow: 0 50px 100px rgba(0, 0, 0, 0.5);
    transform: scale(1);
    transition: transform 0.6s ease;
}

.hero-image:hover img {
    transform: scale(1.05);
}

.image-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(201, 169, 97, 0.3), transparent 70%);
    filter: blur(60px);
    z-index: -1;
    animation: pulse 4s ease-in-out infinite;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    color: rgba(255, 255, 255, 0.5);
    font-family: var(--font-sans);
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    animation: fadeInUp 1s ease 1.5s both;
}

.scroll-line {
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.5), transparent);
    animation: scrollAnimation 2s ease-in-out infinite;
}

/* ========================================
   BUTTONS
   ======================================== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-sans);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-decoration: none;
    padding: 18px 40px;
    border-radius: 50px;
    transition: all 0.4s var(--transition-smooth);
    position: relative;
    overflow: hidden;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: var(--color-gold);
    color: var(--color-black);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: var(--color-gold-dark);
    transition: width 0.6s, height 0.6s, top 0.6s, left 0.6s;
    transform: translate(-50%, -50%);
    z-index: -1;
}

.btn-primary:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(201, 169, 97, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--color-white);
    border: 2px solid var(--color-gold);
}

.btn-secondary:hover {
    background: var(--color-gold);
    color: var(--color-black);
    transform: translateY(-3px);
}

.btn-arrow {
    display: inline-block;
    transition: transform 0.3s ease;
}

.btn:hover .btn-arrow {
    transform: translateX(5px);
}

/* ========================================
   ANIMATIONS
   ======================================== */
/* Blur to Sharp Animation */
@keyframes blurToSharp {
    0% {
        filter: blur(var(--blur-amount));
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        filter: blur(0);
        opacity: 1;
        transform: translateY(0);
    }
}

.blur-to-sharp {
    animation: blurToSharp 1.2s var(--transition-smooth) forwards;
}

.blur-to-sharp.delay-1 {
    animation-delay: 0.2s;
    opacity: 0;
}

.blur-to-sharp.delay-2 {
    animation-delay: 0.4s;
    opacity: 0;
}

.blur-to-sharp.delay-3 {
    animation-delay: 0.6s;
    opacity: 0;
}

/* Fade In Up */
@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(40px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 1s var(--transition-smooth) forwards;
}

.fade-in-up.delay-1 {
    animation-delay: 0.2s;
    opacity: 0;
}

.fade-in-up.delay-2 {
    animation-delay: 0.4s;
    opacity: 0;
}

.fade-in-up.delay-3 {
    animation-delay: 0.6s;
    opacity: 0;
}

.fade-in-up.delay-4 {
    animation-delay: 0.8s;
    opacity: 0;
}

/* Fade In Right */
@keyframes fadeInRight {
    0% {
        opacity: 0;
        transform: translateX(60px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

.fade-in-right {
    animation: fadeInRight 1.2s var(--transition-smooth) forwards;
}

.fade-in-right.delay-1 {
    animation-delay: 0.2s;
    opacity: 0;
}

.fade-in-right.delay-2 {
    animation-delay: 0.4s;
    opacity: 0;
}

/* Fade In */
@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

.fade-in {
    animation: fadeIn 1s ease forwards;
}

/* Pulse */
@keyframes pulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.3;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.1);
        opacity: 0.5;
    }
}

/* Scroll Animation */
@keyframes scrollAnimation {
    0% {
        transform: translateY(0);
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        transform: translateY(30px);
        opacity: 0;
    }
}

/* Slide In Right for Mobile Menu */
@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ========================================
   SCROLL ANIMATIONS
   ======================================== */
/* Elements start hidden until they scroll into view */
.scroll-fade-in,
.scroll-blur-sharp,
.scroll-slide-up,
.scroll-slide-right,
.scroll-slide-left,
.scroll-scale-in {
    opacity: 0;
}

/* Fade In on Scroll */
.scroll-fade-in {
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.scroll-fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.scroll-fade-in.delay-1 {
    transition-delay: 0.2s;
}

.scroll-fade-in.delay-2 {
    transition-delay: 0.4s;
}

.scroll-fade-in.delay-3 {
    transition-delay: 0.6s;
}

/* Blur to Sharp on Scroll */
.scroll-blur-sharp {
    filter: blur(10px);
    transform: translateY(30px);
    transition: opacity 1s ease, filter 1s ease, transform 1s ease;
}

.scroll-blur-sharp.visible {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
}

/* Slide Up on Scroll */
.scroll-slide-up {
    transform: translateY(50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.scroll-slide-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Slide Right on Scroll */
.scroll-slide-right {
    transform: translateX(-50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.scroll-slide-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Slide Left on Scroll */
.scroll-slide-left {
    transform: translateX(50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.scroll-slide-left.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Scale In on Scroll */
.scroll-scale-in {
    transform: scale(0.9);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.scroll-scale-in.visible {
    opacity: 1;
    transform: scale(1);
}

/* Progress Bar Animation on Scroll */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(to right, var(--color-gold), var(--color-gold-dark));
    z-index: 9999;
    transition: width 0.1s ease;
}

/* ========================================
   PHILOSOPHY SECTION
   ======================================== */
.philosophy {
    padding: var(--section-spacing) 0;
    background: var(--color-cream);
}

.philosophy-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 var(--container-padding);
    text-align: center;
}

.section-label {
    font-family: var(--font-sans);
    font-size: 12px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: 20px;
    font-weight: 600;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(40px, 5vw, 70px);
    font-weight: 700;
    color: var(--color-black);
    line-height: 1.2;
    margin-bottom: 40px;
}

.philosophy-text {
    font-size: 22px;
    line-height: 1.9;
    color: var(--color-charcoal);
    font-weight: 300;
}

/* ========================================
   ABOUT SECTION
   ======================================== */
.about-section {
    padding: var(--section-spacing) 0;
    background: var(--color-white);
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(ellipse at 10% 20%, rgba(139, 157, 122, 0.05), transparent 50%),
        radial-gradient(ellipse at 90% 80%, rgba(201, 169, 97, 0.05), transparent 50%);
    pointer-events: none;
}

.about-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--container-padding);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
}

.about-content {
    position: relative;
    z-index: 2;
}

.about-text {
    margin: 40px 0 60px;
}

.about-text p {
    font-size: 18px;
    line-height: 1.9;
    color: var(--color-gray);
    margin-bottom: 25px;
    font-weight: 300;
}

.about-text p:last-child {
    margin-bottom: 0;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-family: var(--font-hero);
    font-size: 48px;
    font-weight: 800;
    color: var(--color-gold);
    line-height: 1;
    margin-bottom: 10px;
}

.stat-label {
    font-family: var(--font-sans);
    font-size: 13px;
    color: var(--color-gray);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

.about-images {
    position: relative;
    height: 600px;
}

.about-image-wrapper {
    position: absolute;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
}

.about-image-wrapper:first-child {
    width: 400px;
    height: 500px;
    top: 0;
    left: 0;
    z-index: 2;
}

.about-image-wrapper:last-child {
    width: 350px;
    height: 450px;
    bottom: 0;
    right: 0;
    z-index: 1;
}

.about-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.about-image-wrapper:hover img {
    transform: scale(1.1);
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: var(--color-white);
    font-family: var(--font-sans);
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.about-image-wrapper:hover .image-overlay {
    opacity: 1;
}

/* ========================================
   FEATURED PRODUCTS
   ======================================== */
.featured-products {
    padding: 80px 0;
    background: var(--color-white);
}

.products-grid {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--container-padding);
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.product-card {
    position: relative;
    background: var(--color-white);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    padding: 15px;
    transition: all 0.4s var(--transition-smooth);
}

.product-card:hover {
    border-color: rgba(201, 169, 97, 0.3);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
}

.product-card:nth-child(1).scroll-scale-in { transition-delay: 0.1s; }
.product-card:nth-child(2).scroll-scale-in { transition-delay: 0.2s; }
.product-card:nth-child(3).scroll-scale-in { transition-delay: 0.3s; }
.product-card:nth-child(4).scroll-scale-in { transition-delay: 0.4s; }

.product-image {
    position: relative;
    aspect-ratio: 3/4;
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 20px;
    background: var(--color-light-gray);
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--transition-smooth);
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 10, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.product-name {
    font-family: var(--font-body);
    font-size: 20px;
    font-weight: 600;
    color: var(--color-black);
    margin-bottom: 8px;
}

.product-price {
    font-family: var(--font-sans);
    font-size: 16px;
    color: var(--color-gray);
    font-weight: 500;
}

/* ========================================
   PASSION SECTION
   ======================================== */
.passion-section {
    padding: var(--section-spacing) 0;
    position: relative;
    overflow: hidden;

    background-image:
        linear-gradient(
            rgba(10, 10, 10, 0.75),
            rgba(10, 10, 10, 0.75)
        ),
        url("Images/passion-bg.webp"); /* <-- your image */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}


.passion-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--container-padding);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
}

.passion-content {
    z-index: 2;
}

.passion-title {
    font-family: var(--font-display);
    font-size: clamp(45px, 6vw, 75px);
    font-weight: 700;
    color: var(--color-white);
    line-height: 1.15;
    margin-bottom: 35px;
}

.passion-text {
    font-size: 20px;
    line-height: 1.9;
    color: var(--color-white);
    margin-bottom: 50px;
    font-weight: 300;
}

.passion-images {
    position: relative;
    height: 600px;
}

.passion-image {
    position: absolute;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}

.passion-image-1 {
    width: 400px;
    height: 500px;
    top: 0;
    left: 0;
    z-index: 2;
}

.passion-image-2 {
    width: 350px;
    height: 450px;
    bottom: 0;
    right: 0;
    z-index: 1;
}

.passion-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ========================================
   FULL COLLECTION
   ======================================== */
.full-collection {
    padding: var(--section-spacing) 0;
    background: var(--color-cream);
}

.collection-header {
    max-width: 900px;
    margin: 0 auto 60px;
    padding: 0 var(--container-padding);
    text-align: center;
}

.collection-subtitle {
    font-size: 18px;
    line-height: 1.8;
    color: var(--color-charcoal);
    font-weight: 300;
}

.collection-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 60px;
    flex-wrap: wrap;
    padding: 0 var(--container-padding);
}

.filter-btn {
    font-family: var(--font-sans);
    font-size: 13px;
    padding: 12px 30px;
    border: 1px solid var(--color-gray);
    background: transparent;
    color: var(--color-black);
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--color-black);
    color: var(--color-white);
    border-color: var(--color-black);
}

.collection-grid {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--container-padding);
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 50px 40px;
}

.collection-item {
    position: relative;
    transition: all 0.4s var(--transition-smooth);
    background: var(--color-white);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    padding: 15px;
}

.collection-item:hover {
    border-color: rgba(201, 169, 97, 0.3);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
    transform: translateY(-5px);
}

.collection-item.hidden {
    display: none;
}

.item-image {
    aspect-ratio: 3/4;
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 20px;
    background: var(--color-light-gray);
}

.item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.collection-item:hover .item-image img {
    transform: scale(1.08);
}

.collection-item h3 {
    font-family: var(--font-body);
    font-size: 20px;
    font-weight: 600;
    color: var(--color-black);
    margin-bottom: 8px;
}

.item-price {
    font-family: var(--font-sans);
    font-size: 16px;
    color: var(--color-gray);
    font-weight: 500;
    margin-bottom: 10px;
}

.item-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--color-black);
    color: var(--color-white);
    text-decoration: none;
    font-size: 18px;
    transition: all 0.3s ease;
}

.item-link:hover {
    background: var(--color-gold);
    color: var(--color-black);
    transform: translateX(5px);
}

/* ========================================
   TESTIMONIALS
   ======================================== */
.testimonials {
    padding: var(--section-spacing) 0;
    background: var(--color-dark);
    position: relative;
    overflow: hidden;
}

.testimonials-header {
    max-width: 1400px;
    margin: 0 auto 80px;
    padding: 0 var(--container-padding);
    text-align: center;
}

.testimonials-header .section-title {
    color: var(--color-white);
}

.testimonials-slider {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 var(--container-padding);
    position: relative;
}

.testimonial-track {
    position: relative;
    min-height: 350px;
}

.testimonial-card {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.6s var(--transition-smooth);
    pointer-events: none;
}

.testimonial-card.active {
    opacity: 1;
    transform: translateX(0);
    pointer-events: all;
}

.testimonial-content {
    background: rgba(42, 42, 42, 0.5);
    backdrop-filter: blur(20px);
    padding: 60px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.testimonial-text {
    font-family: var(--font-body);
    font-size: 22px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    font-weight: 300;
    font-style: italic;
}

.testimonial-author h4 {
    font-family: var(--font-sans);
    font-size: 18px;
    color: var(--color-white);
    font-weight: 600;
    margin-bottom: 5px;
}

.testimonial-author p {
    font-family: var(--font-sans);
    font-size: 14px;
    color: var(--color-gold);
    font-weight: 400;
}

.testimonial-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-top: 60px;
}

.testimonial-nav {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: transparent;
    color: var(--color-white);
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-nav:hover {
    background: var(--color-gold);
    color: var(--color-black);
    border-color: var(--color-gold);
}

.testimonial-dots {
    display: flex;
    gap: 12px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: var(--color-gold);
    width: 30px;
    border-radius: 5px;
}

.testimonial-image {
    position: absolute;
    bottom: -50px;
    right: 5%;
    width: 400px;
    height: 500px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.testimonial-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ========================================
   NEWSLETTER
   ======================================== */
.newsletter {
    padding: 100px 0;
    background: var(--color-cream);
    display: flex;
    justify-content: center;
    align-items: center;
}

.newsletter-content {
    max-width: 600px;
    padding: 0 var(--container-padding);
}

.newsletter-box {
    background: var(--color-white);
    padding: 60px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.newsletter-title {
    font-family: var(--font-display);
    font-size: 42px;
    font-weight: 700;
    color: var(--color-black);
    line-height: 1.2;
    margin-bottom: 20px;
}

.newsletter-text {
    font-size: 16px;
    line-height: 1.8;
    color: var(--color-gray);
    margin-bottom: 30px;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.newsletter-form input {
    font-family: var(--font-sans);
    font-size: 15px;
    padding: 18px 25px;
    border: 1px solid var(--color-light-gray);
    border-radius: 50px;
    outline: none;
    transition: border-color 0.3s ease;
}

.newsletter-form input:focus {
    border-color: var(--color-gold);
}

.newsletter-privacy {
    font-size: 13px;
    color: var(--color-gray);
    margin-top: 15px;
    text-align: center;
}

.newsletter-privacy a {
    color: var(--color-black);
    text-decoration: underline;
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
    background: var(--color-black);
    color: var(--color-white);
    padding: 80px 0 30px;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--container-padding);
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 60px;
    margin-bottom: 60px;
}

.footer-column h4 {
    font-family: var(--font-sans);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 25px;
    letter-spacing: 1px;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
    font-family: var(--font-sans);
}

.footer-column ul li a:hover {
    color: var(--color-white);
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.footer-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.footer-logo:hover {
    transform: scale(1.05);
}

.footer-logo-img {
    height: 80px;
    width: auto;
    object-fit: contain;
    /* filter: brightness(0) invert(1); */
}

/* Alternative text logo style */
.footer-logo-text {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--color-white);
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    text-decoration: none;
    transition: all 0.3s ease;
    font-family: var(--font-sans);
    font-size: 14px;
}

.footer-social a:hover {
    background: var(--color-white);
    color: var(--color-accent);
    transform: translateY(-3px);
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding: 30px var(--container-padding) 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    font-family: var(--font-sans);
}

.footer-bottom a {
    color: var(--color-white);
    text-decoration: none;
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 1200px) {
    :root {
        --container-padding: 4%;
    }
    
    .hero-content,
    .passion-container {
        gap: 60px;
    }
}

@media (max-width: 1024px) {
    :root {
        --section-spacing: 80px;
        --container-padding: 5%;
    }
    
    .hero-content,
    .passion-container,
    .about-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .hero-image {
        order: -1;
        max-width: 450px;
        margin: 0 auto;
    }
    
    .hero-image img {
        max-width: 100%;
    }
    
    .passion-images,
    .about-images {
        height: 400px;
        margin: 0 auto;
        max-width: 500px;
    }
    
    .passion-image-1,
    .about-image-wrapper:first-child {
        width: 300px;
        height: 380px;
    }
    
    .passion-image-2,
    .about-image-wrapper:last-child {
        width: 250px;
        height: 320px;
    }
    
    .about-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .testimonial-image {
        display: none;
    }
    
    .products-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 30px;
    }
}

@media (max-width: 768px) {
    :root {
        --section-spacing: 60px;
    }
    
    .navbar {
        padding: 20px 0;
    }
    
    .nav-container {
        position: relative;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 100px 30px 30px;
        gap: 25px;
        transition: right 0.4s var(--transition-smooth);
        z-index: 1000;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.5);
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-menu li {
        opacity: 0;
        transform: translateX(20px);
        animation: slideInRight 0.4s ease forwards;
    }
    
    .nav-menu.active li:nth-child(1) { animation-delay: 0.1s; }
    .nav-menu.active li:nth-child(2) { animation-delay: 0.2s; }
    .nav-menu.active li:nth-child(3) { animation-delay: 0.3s; }
    .nav-menu.active li:nth-child(4) { animation-delay: 0.4s; }
    
    .nav-menu a {
        font-size: 18px;
    }
    
    .logo-img {
        height: 68px;
    }
    
    .nav-cta {
        padding: 10px 25px;
        font-size: 12px;
    }
    
    .hero {
        min-height: auto;
        padding: 120px 0 60px;
    }
    
    .hero-title {
        font-size: clamp(50px, 12vw, 80px);
        margin-bottom: 20px;
    }
    
    .hero-subtitle {
        font-size: 16px;
        margin-bottom: 30px;
    }
    
    .section-title {
        font-size: clamp(32px, 8vw, 50px);
    }
    
    .passion-title {
        font-size: clamp(32px, 8vw, 50px);
    }
    
    .products-grid,
    .collection-grid {
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
        gap: 25px;
    }
    
    .product-card,
    .collection-item {
        padding: 12px;
    }
    
    .testimonial-content {
        padding: 40px 30px;
    }
    
    .testimonial-text {
        font-size: 18px;
        line-height: 1.7;
    }
    
    .newsletter-box {
        padding: 40px 30px;
    }
    
    .newsletter-title {
        font-size: 32px;
    }
    
    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .passion-images {
        height: 350px;
    }
    
    .passion-image-1 {
        width: 250px;
        height: 320px;
    }
    
    .passion-image-2 {
        width: 200px;
        height: 270px;
    }
    
    .about-images {
        height: 350px;
    }
    
    .about-image-wrapper:first-child {
        width: 250px;
        height: 320px;
    }
    
    .about-image-wrapper:last-child {
        width: 200px;
        height: 270px;
    }
    
    .about-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .stat-number {
        font-size: 36px;
    }
    
    .stat-label {
        font-size: 11px;
    }
}

@media (max-width: 640px) {
    .hero-title {
        font-size: clamp(45px, 12vw, 70px);
    }
    
    .products-grid,
    .collection-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 20px;
    }
    
    .collection-filters {
        gap: 10px;
    }
    
    .filter-btn {
        padding: 10px 20px;
        font-size: 12px;
    }
    
    .testimonial-controls {
        gap: 20px;
        margin-top: 40px;
    }
    
    .testimonial-nav {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    :root {
        --container-padding: 6%;
    }
    
    .hero {
        padding: 100px 0 40px;
    }
    
    .hero-title {
        font-size: 48px;
        letter-spacing: -1px;
    }
    
    .hero-subtitle {
        font-size: 15px;
    }
    
    .btn {
        padding: 15px 30px;
        font-size: 12px;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .passion-title {
        font-size: 32px;
    }
    
    .philosophy-text,
    .passion-text {
        font-size: 16px;
    }
    
    .products-grid,
    .collection-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .product-card,
    .collection-item {
        max-width: 100%;
    }
    
    .testimonial-content {
        padding: 30px 20px;
    }
    
    .testimonial-text {
        font-size: 16px;
    }
    
    .newsletter-box {
        padding: 30px 20px;
    }
    
    .newsletter-title {
        font-size: 28px;
    }
    
    .newsletter-text {
        font-size: 14px;
    }
    
    .footer {
        padding: 60px 0 20px;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .passion-images {
        height: 300px;
    }
    
    .passion-image-1 {
        width: 200px;
        height: 260px;
    }
    
    .passion-image-2 {
        width: 160px;
        height: 220px;
    }
    
    .about-images {
        height: 300px;
    }
    
    .about-image-wrapper:first-child {
        width: 200px;
        height: 260px;
    }
    
    .about-image-wrapper:last-child {
        width: 160px;
        height: 220px;
    }
    
    .about-stats {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
        margin-top: 40px;
    }
    
    .stat-number {
        font-size: 32px;
    }
    
    .about-text p {
        font-size: 16px;
    }
    
    .scroll-indicator {
        display: none;
    }
}

@media (max-width: 360px) {
    .hero-title {
        font-size: 40px;
    }
    
    .logo-img {
        height: 80px;
    }
    
    .nav-cta {
        padding: 8px 20px;
        font-size: 11px;
    }
    
    .product-card,
    .collection-item {
        padding: 10px;
    }
    
    .testimonial-nav {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}















@media (max-width: 768px) {
    /* Switch hero layout to flex ONLY on mobile */
    .hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding-left: 16px;
        padding-right: 16px;
        
    }

    /* Force true visual centering */
    .hero-image {
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .hero-image img {
        width: 100%;
        max-width: 420px;
        margin-left: auto;
        margin-right: auto;
        display: block;
    }

    /* Keep glow perfectly centered */
    .image-glow {
        left: 50%;
        transform: translate(-50%, -50%);
    }
}







@media (max-width: 768px) {
    .hero-title {
        width: 100%;
        max-width: 100%;
        text-align: center;
        word-break: break-word;
    }

    .hero-title .title-line {
        display: block;
        width: 100%;
        text-align: center;
    }
}









@media (max-width: 480px) {
    .hero-title {
        font-size: 42px;     /* fits in one line per word */
        line-height: 1.05;
        letter-spacing: -1px;
    }

    .hero-title .title-line {
        white-space: nowrap; /* prevents single-letter wrap */
    }
}






@media (max-width: 768px) {
    .hero-text {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .hero-subtitle {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-cta {
        display: flex;
        justify-content: center;
        width: 100%;
    }
}






@media (max-width: 768px) {
    .hero-image {
        margin-top: 24px; /* clean breathing space below navbar */
    }
}







/* ===== PASSION SECTION: SINGLE IMAGE MODE ===== */

.passion-section .passion-single {
    position: relative !important;   /* disable absolute */
    width: 100%;
    max-width: 420px;
    height: auto;

    margin-left: auto;
    margin-right: auto;

    top: auto !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
}

.passion-section .passion-images {
    display: flex;
    justify-content: center;
    align-items: center;
}

.passion-section .passion-single img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
}

/* Mobile tuning */
@media (max-width: 768px) {
    .passion-section .passion-single {
        max-width: 320px;
    }
}




.headerlogotext{
    color: white;
    font-family: var(--font-hero)
}
