/* ===========================
   SMELL GOOD CLUB - MAIN CSS
   Mobile-First Responsive Design
   =========================== */

/* === CSS VARIABLES === */
:root {
    --black-obsidian: #0A0A0A;
    --black-soft: #1A1A1A;
    --gold-champagne: #D4AF37;
    --gold-hover: #E5C048;
    --ivory-mist: #FDFBF7;
    --gray-elegant: #2C2C2C;
    --white-pure: #FFFFFF;

    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    --font-cta: 'Montserrat', sans-serif;

    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 2rem;
    --space-lg: 3rem;
    --space-xl: 5rem;
    --space-2xl: 8rem;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

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

html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

/* === TYPOGRAPHY === */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: var(--space-md);
}

h1 {
    font-size: clamp(2rem, 5vw, 4rem);
    letter-spacing: -0.02em;
}

h2 {
    font-size: clamp(1.75rem, 4vw, 3rem);
    color: var(--gold-champagne);
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2.25rem);
}

h4 {
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
}

p {
    margin-bottom: var(--space-sm);
    font-size: clamp(0.95rem, 2vw, 1.125rem);
    line-height: 1.7;
    opacity: 0.9;
}

/* === LAYOUT CONTAINERS === */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--space-sm);
}

@media (min-width: 768px) {
    .container {
        padding: 0 var(--space-md);
    }
}

@media (min-width: 1024px) {
    .container {
        padding: 0 var(--space-lg);
    }
}

/* === HEADER & NAVIGATION === */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: linear-gradient(180deg, rgba(10, 10, 10, 0.95) 0%, rgba(10, 10, 10, 0) 100%);
    backdrop-filter: blur(10px);
    transition: var(--transition-normal);
}

header.scrolled {
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(20px);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-sm) 0;
}

.logo {
    height: 60px;
    width: auto;
    transition: var(--transition-normal);
    transform: scale(1.6);
    transform-origin: left center;
}

@media (min-width: 768px) {
    .logo {
        height: 80px;
        transform: scale(1.7);
    }
}

/* Language Switcher */
.language-switcher {
    display: flex;
    gap: 12px;
    margin-left: 20px;
}

.lang-option {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 24px;
    border: 2px solid transparent;
    border-radius: 4px;
    text-decoration: none;
    transition: var(--transition-fast);
    opacity: 0.7;
}

.lang-option:hover {
    opacity: 1;
    transform: scale(1.1);
}

.lang-option.active {
    opacity: 1;
    border-color: var(--gold-champagne);
}

.lang-option svg {
    width: 100%;
    height: auto;
    display: block;
}

/* === HERO SECTION === */
.hero-section {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 10, 0.3);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: var(--space-md);
}

.hero-tagline {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 4vw, 3rem);
    color: var(--ivory-mist);
    margin-bottom: var(--space-md);
    animation: fadeInUp 1s ease;
}

.hero-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.5rem);
    opacity: 0.8;
    margin-bottom: var(--space-lg);
    animation: fadeInUp 1s ease 0.2s backwards;
}

/* === BUTTONS === */
.btn {
    display: inline-block;
    padding: 0.875rem 2rem;
    font-family: var(--font-cta);
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 50px;
    transition: var(--transition-normal);
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
}

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

.btn-primary:hover {
    background: var(--gold-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

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

.btn-secondary:hover {
    background: var(--ivory-mist);
    color: var(--black-obsidian);
    transform: translateY(-2px);
}

.btn-group {
    display: flex;
    gap: var(--space-sm);
    flex-wrap: wrap;
    justify-content: center;
}

@media (min-width: 768px) {
    .btn-group {
        gap: var(--space-md);
    }
}

/* === STORY SECTION === */
.story-section {
    padding: var(--space-xl) 0;
    background: linear-gradient(180deg, var(--black-obsidian) 0%, var(--black-soft) 100%);
}

.story-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.story-title {
    color: var(--gold-champagne);
    margin-bottom: var(--space-lg);
}

.story-text {
    font-size: clamp(1.1rem, 2.5vw, 1.3rem);
    line-height: 1.8;
    opacity: 0.95;
    margin-bottom: var(--space-md);
}

.story-highlight {
    color: var(--gold-champagne);
    font-weight: 500;
}

/* === MACHINE REVEAL SECTION === */
/* === MACHINE SHOWCASE SECTION (NEW) === */
.machine-showcase-section {
    background: #0A0A0A;
    padding: 120px 0;
    position: relative;
}

.machine-showcase-section .section-title {
    color: var(--gold-champagne);
    text-align: center;
    margin-bottom: var(--space-xl);
}

.machine-display {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.machine-with-arrows {
    width: 100%;
    max-width: 600px;
    height: auto;
    display: block;
    margin: 0 auto 60px;
}

/* How It Works inline styles */
.how-it-works-inline {
    margin-top: 80px;
    padding-top: 60px;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.subsection-title {
    font-size: 2rem;
    color: var(--gold-champagne);
    text-align: center;
    margin-bottom: 10px;
}

.subsection-subtitle {
    text-align: center;
    color: var(--ivory-mist);
    opacity: 0.8;
    margin-bottom: 50px;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 40px;
}

.step-card {
    text-align: center;
    padding: 30px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.step-card:hover {
    background: rgba(212, 175, 55, 0.05);
    transform: translateY(-5px);
}

.step-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.step-icon i {
    color: #0A0A0A;
    font-size: 2.5rem;
}

.step-title {
    color: var(--gold-champagne);
    margin-bottom: 15px;
}

.step-description {
    color: var(--ivory-mist);
    opacity: 0.9;
    line-height: 1.6;
}

/* Feature points removed - using image with built-in arrows */

/* === MACHINE REVEAL SECTION (UPDATED) === */
.machine-reveal-section {
    position: relative;
    width: 100%;
    height: 80vh;
    background: var(--black-obsidian);
    overflow: hidden;
}

.particle-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.3;
    z-index: 1;
    object-fit: cover;
}

.machine-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    text-align: center;
}

.section-logo {
    max-width: 300px;
    height: auto;
    margin: 0 auto var(--space-lg);
    opacity: 0.9;
}

.machine-image {
    max-width: 500px;
    width: 90%;
    height: auto;
    display: block;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

/* === BENEFITS GRID === */
.benefits-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-md);
    margin-top: var(--space-xl);
}

@media (min-width: 768px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-lg);
    }
}

@media (min-width: 1024px) {
    .benefits-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.benefit-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 16px;
    padding: var(--space-md);
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: var(--transition-slow);
}

.benefit-card:hover {
    transform: translateY(-5px);
    border-color: rgba(212, 175, 55, 0.4);
}

.benefit-card:hover::before {
    opacity: 1;
}

.benefit-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    color: var(--gold-champagne);
    opacity: 0.3;
    margin-bottom: var(--space-sm);
}

.benefit-title {
    font-family: var(--font-cta);
    font-size: 1.25rem;
    color: var(--gold-champagne);
    margin-bottom: var(--space-xs);
    font-weight: 600;
}

.benefit-text {
    color: var(--ivory-mist);
    line-height: 1.6;
    font-size: 0.95rem;
    opacity: 0.85;
}

/* === HOW IT WORKS === */
.how-it-works {
    padding: var(--space-xl) 0;
    background: var(--black-soft);
}

.steps-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-lg);
    margin-top: var(--space-lg);
}

@media (min-width: 768px) {
    .steps-container {
        grid-template-columns: repeat(3, 1fr);
    }
}

.step {
    text-align: center;
    padding: var(--space-md);
    position: relative;
}

.step-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--space-md);
    background: linear-gradient(135deg, var(--gold-champagne), var(--gold-hover));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--black-obsidian);
}

.step-title {
    font-family: var(--font-cta);
    font-size: 1.25rem;
    color: var(--gold-champagne);
    margin-bottom: var(--space-sm);
}

.step-description {
    opacity: 0.85;
    line-height: 1.6;
}

/* === CONTACT SECTION === */
.contact-section {
    padding: var(--space-xl) 0;
    background: linear-gradient(180deg, var(--black-soft) 0%, var(--black-obsidian) 100%);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-lg);
    margin-top: var(--space-lg);
}

@media (min-width: 768px) {
    .contact-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.contact-form {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 16px;
    padding: var(--space-md);
}

.form-group {
    margin-bottom: var(--space-md);
}

.form-label {
    display: block;
    margin-bottom: var(--space-xs);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--gold-champagne);
    opacity: 0.8;
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 0.875rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 8px;
    color: var(--ivory-mist);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition-fast);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--gold-champagne);
    background: rgba(255, 255, 255, 0.08);
}

.form-textarea {
    min-height: 120px;
    resize: vertical;
}

/* === WHATSAPP SECTION === */
.whatsapp-section {
    text-align: center;
    padding: var(--space-md);
    background: rgba(37, 211, 102, 0.05);
    border: 1px solid rgba(37, 211, 102, 0.2);
    border-radius: 16px;
}

.whatsapp-buttons {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    margin-top: var(--space-md);
}

@media (min-width: 480px) {
    .whatsapp-buttons {
        flex-direction: row;
        justify-content: center;
    }
}

.btn-whatsapp {
    background: #25D366;
    color: white;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-xs);
}

.btn-whatsapp:hover {
    background: #20BA5A;
}

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

.btn-call:hover {
    background: var(--gold-champagne);
    color: var(--black-obsidian);
}

/* === FOOTER === */
footer {
    padding: var(--space-lg) 0;
    background: var(--black-obsidian);
    border-top: 1px solid rgba(212, 175, 55, 0.1);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-md);
    margin-bottom: var(--space-md);
}

@media (min-width: 768px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .footer-content {
        grid-template-columns: repeat(4, 1fr);
    }
}

.footer-column h4 {
    color: var(--gold-champagne);
    font-size: 1rem;
    margin-bottom: var(--space-sm);
}

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

.footer-column a {
    color: var(--ivory-mist);
    text-decoration: none;
    opacity: 0.7;
    transition: var(--transition-fast);
    font-size: 0.9rem;
    line-height: 2;
}

.footer-column a:hover {
    opacity: 1;
    color: var(--gold-champagne);
}

.footer-bottom {
    text-align: center;
    padding-top: var(--space-md);
    border-top: 1px solid rgba(212, 175, 55, 0.1);
    opacity: 0.6;
    font-size: 0.875rem;
}

/* === ANIMATIONS === */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* === LOADING SCREEN === */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--black-obsidian);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.5s ease;
}

.loading-screen.hidden {
    opacity: 0;
    pointer-events: none;
}

.loading-content {
    text-align: center;
}

.loading-logo {
    width: 150px;
    height: auto;
    margin-bottom: var(--space-md);
    animation: pulse 1.5s ease infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

/* === RESPONSIVE VIDEO === */
@media (max-width: 768px) {
    .hero-video,
    .particle-video {
        object-fit: cover;
    }

    .hero-section {
        height: 80vh;
        min-height: 500px;
    }
}

/* === SCROLL ANIMATIONS === */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

/* === ACCESSIBILITY === */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
    border: 0;
}

/* === UTILITY CLASSES === */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.mt-sm { margin-top: var(--space-sm); }
.mt-md { margin-top: var(--space-md); }
.mt-lg { margin-top: var(--space-lg); }
.mb-sm { margin-bottom: var(--space-sm); }
.mb-md { margin-bottom: var(--space-md); }
.mb-lg { margin-bottom: var(--space-lg); }
.pt-sm { padding-top: var(--space-sm); }
.pt-md { padding-top: var(--space-md); }
.pt-lg { padding-top: var(--space-lg); }
.pb-sm { padding-bottom: var(--space-sm); }
.pb-md { padding-bottom: var(--space-md); }
.pb-lg { padding-bottom: var(--space-lg); }

/* === MOBILE MENU === */
.mobile-menu-toggle {
    display: block;
    width: 30px;
    height: 24px;
    position: relative;
    cursor: pointer;
    z-index: 1001;
}

@media (min-width: 768px) {
    .mobile-menu-toggle {
        display: none;
    }
}

.mobile-menu-toggle span {
    display: block;
    position: absolute;
    height: 2px;
    width: 100%;
    background: var(--ivory-mist);
    opacity: 1;
    left: 0;
    transform: rotate(0deg);
    transition: .25s ease-in-out;
}

.mobile-menu-toggle span:nth-child(1) {
    top: 0px;
}

.mobile-menu-toggle span:nth-child(2) {
    top: 11px;
}

.mobile-menu-toggle span:nth-child(3) {
    top: 22px;
}

.mobile-menu-toggle.active span:nth-child(1) {
    top: 11px;
    transform: rotate(135deg);
}

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

.mobile-menu-toggle.active span:nth-child(3) {
    top: 11px;
    transform: rotate(-135deg);
}

/* === RESPONSIVE MEDIA QUERIES FOR NEW SECTIONS === */
@media (max-width: 768px) {
    /* Machine Showcase Mobile */
    .machine-showcase-section {
        padding: var(--space-xl) 0;
    }
    
    .machine-hero-large {
        max-width: 90%;
    }
    
    .feature-point {
        display: none; /* Hide arrows on mobile for cleaner look */
    }
    
    /* Machine Reveal Mobile */
    .machine-reveal-section {
        height: 60vh;
    }
    
    .machine-image {
        max-width: 80%;
    }
    
    /* Benefits Mobile */
    .benefits-section {
        padding: var(--space-lg) 0;
    }
}

/* Small screens */
@media (max-width: 480px) {
    .machine-reveal-section {
        height: 50vh;
    }
    
    .machine-image {
        max-width: 70%;
    }
}


/* === GLOBAL SECTION STYLING === */
section {
    background: #0A0A0A !important;
    padding: 120px 0;
}

.story-section {
    background: #0A0A0A !important;
}

.benefits-section {
    background: #0A0A0A !important;
}

.contact-section {
    background: #0A0A0A !important;
}

/* Locations section with shared background */
.locations-section {
    padding: 100px 0 120px 0;
    background: transparent !important;
    position: relative;
    z-index: 2;
    margin-top: 0;
}

/* Mobile spacing */
@media (max-width: 768px) {
    section {
        padding: 80px 0;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .machine-with-arrows {
        max-width: 90%;
    }
}


/* === FORM BUTTON STATES === */
button.success {
    background: #4CAF50 !important;
    border-color: #4CAF50 !important;
}

button.error {
    background: #f44336 !important;
    border-color: #f44336 !important;
}

/* === SHARED BACKGROUND WRAPPER === */
.perfume-locations-wrapper {
    position: relative;
    background: #0A0A0A;
}

/* Shared background image */
.shared-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(https://res.cloudinary.com/dtntpqnkt/image/upload/v1758202999/add1_abu6bi.png);
    background-size: auto 120%; /* Height 120% to show more vertical content */
    background-position: center 10%; /* Show top portion of image */
    background-attachment: fixed;
    background-repeat: no-repeat;
    z-index: 0;
}

/* Dark overlay for better content visibility */
.shared-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 10, 0.7); /* 70% dark overlay */
    z-index: 1;
}

/* Gradient fade to black at bottom */
.shared-bg-gradient {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 200px;
    background: linear-gradient(to bottom,
        transparent 0%,
        rgba(10, 10, 10, 0.9) 60%,
        #0A0A0A 100%
    );
    z-index: 1;
}

/* === PERFUME COLLECTION SECTION === */
.perfume-showcase {
    position: relative;
    padding: 120px 0 80px 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: transparent !important;
    z-index: 2;
}

.perfume-showcase .container {
    position: relative;
    z-index: 2;
}

.perfume-showcase .section-title {
    color: #D4AF37;
    text-align: center;
    font-size: 48px;
    margin-bottom: 60px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 300;
}

/* Perfume Slider - no container needed */
.perfume-slider {
    max-width: 700px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.7);
    background: #000;
    position: relative;
    z-index: 2;
}

.perfume-track {
    display: flex;
    transition: transform 0.5s ease;
}

.perfume-slide {
    min-width: 100%;
    display: none;
}

.perfume-slide.active {
    display: block;
}

.perfume-slide img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
    object-fit: contain;
    max-height: 80vh;
}

/* Navigation Controls Container */
.perfume-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-top: 30px;
    position: relative;
    z-index: 10;
}

/* Navigation Arrows - Smaller and outside slider */
.perfume-nav {
    background: none;
    border: none;
    color: #D4AF37;
    font-size: 24px;
    cursor: pointer;
    padding: 5px 10px;
    transition: all 0.3s ease;
}

.perfume-nav:hover {
    color: #fff;
    transform: scale(1.2);
}

/* Navigation Dots */
.perfume-dots {
    display: flex;
    gap: 15px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.dot.active {
    background: #D4AF37;
    transform: scale(1.4);
    border-color: #D4AF37;
}

.dot:hover {
    background: rgba(212, 175, 55, 0.5);
}

/* Perfume Mobile Responsive */
@media (max-width: 768px) {
    .perfume-showcase {
        padding: 80px 0 60px 0;
    }

    .shared-bg-image {
        background-attachment: scroll; /* Better mobile performance */
    }

    .locations-section {
        padding: 60px 0 80px 0;
    }

    .perfume-showcase .section-title {
        font-size: 28px;
        margin-bottom: 40px;
    }

    .perfume-slider {
        margin: 0 20px;
    }

    .perfume-controls {
        gap: 20px;
        margin-top: 20px;
    }

    .perfume-nav {
        font-size: 20px;
    }
}

/* Highlight effect when arriving at section */
.highlight-arrival {
    animation: highlightPulse 2s ease-in-out;
}

@keyframes highlightPulse {
    0% {
        background-color: transparent;
    }
    50% {
        background-color: rgba(212, 175, 55, 0.1);
        box-shadow: 0 0 30px rgba(212, 175, 55, 0.3);
    }
    100% {
        background-color: transparent;
    }
}

/* ========================================
   MOBILE FIXES - ALLE 6 PROBLEMEN
   ======================================== */

/* FIX 1: Hero Video Mobile - VOLLEDIG ZICHTBAAR */
@media (max-width: 768px) {
    .hero-section {
        height: 100vh;
        position: relative;
        overflow: hidden;
        background: #000; /* Zwarte letterbox bars voor video */
    }

    .hero-video {
        position: absolute;
        top: 0;
        left: 0;
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important; /* Volledig scherm vullen zonder zwarte bars */
        transform: none !important; /* GEEN ZOOM - natuurlijke grootte */
        object-position: center center !important; /* Centreer de video perfect */
    }

    /* Zorg dat video afspeelt op mobiel */
    .hero-video[autoplay] {
        pointer-events: none;
    }

    .hero-content {
        position: relative;
        z-index: 2;
        padding: 20px;
        top: 50%;
        transform: translateY(-50%);
    }

    .hero-tagline {
        font-size: 28px !important;
        line-height: 1.3 !important;
        margin-bottom: 15px !important;
    }

    .hero-subtitle {
        font-size: 16px !important;
        line-height: 1.4 !important;
    }
}

/* FIX 2: How It Works Boxes Mobile */
@media (max-width: 768px) {
    .steps-grid {
        display: grid;
        grid-template-columns: 1fr !important;
        gap: 20px !important;
        padding: 0 20px !important;
        margin-top: 30px;
    }

    .step-card {
        padding: 25px 20px !important;
        border-radius: 12px;
        background: rgba(255, 255, 255, 0.03);
        border: 1px solid rgba(212, 175, 55, 0.2);
    }

    .step-icon {
        width: 60px !important;
        height: 60px !important;
        font-size: 24px !important;
        margin: 0 auto 15px !important;
    }

    .step-title {
        font-size: 18px !important;
        margin-bottom: 10px !important;
    }

    .step-description {
        font-size: 14px !important;
        line-height: 1.5 !important;
    }

    .how-it-works-inline {
        padding: 40px 0;
    }

    .subsection-title {
        font-size: 24px !important;
        margin-bottom: 30px !important;
    }
}

/* FIX 3: Vending Machine Image Mobile */
@media (max-width: 768px) {
    .machine-reveal-section {
        padding: 60px 0;
        position: relative;
    }

    .machine-container {
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        padding: 0 20px !important;
        margin: 0 auto !important;
    }

    .machine-image {
        max-width: 85% !important; /* IETS groter maar niet teveel */
        height: auto !important;
        display: block !important;
        margin: 0 auto !important; /* Normale positie */
        transform: scale(1.25) !important; /* GROTER: Van 1.15 naar 1.25 (25% groter) */
    }

    .machine-with-arrows {
        max-width: 95% !important; /* VERGROOT: Van 85% naar 95% */
        height: auto !important;
        margin: 0 auto !important;
        display: block !important;
    }

    .machine-display {
        display: flex;
        justify-content: center;
        padding: 20px;
    }

    .particle-video {
        opacity: 0.3; /* Dimmer op mobiel voor betere zichtbaarheid */
    }
}

/* FIX 4: Benefits 6 Boxes Mobile */
@media (max-width: 768px) {
    .benefits-section {
        padding: 60px 0 !important;
    }

    .benefits-section .section-title {
        font-size: 24px !important;
        padding: 0 20px !important;
        margin-bottom: 30px !important;
        line-height: 1.3 !important;
    }

    .benefits-grid {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 15px !important;
        padding: 0 20px !important;
        margin-top: 30px;
    }

    .benefit-card {
        padding: 25px 20px !important;
        background: rgba(255, 255, 255, 0.03) !important;
        border-radius: 12px !important;
        position: relative;
    }

    .benefit-number {
        font-size: 20px !important;
        width: 35px !important;
        height: 35px !important;
        line-height: 35px !important;
        margin-bottom: 15px !important;
    }

    .benefit-title {
        font-size: 18px !important;
        margin-bottom: 10px !important;
    }

    .benefit-text {
        font-size: 14px !important;
        line-height: 1.5 !important;
    }
}

/* FIX 5: Perfume Background Mobile - ALLEEN BIJ PERFUME/LOCATIES */
@media (max-width: 768px) {
    .perfume-locations-wrapper {
        position: relative;
        background-color: #0A0A0A;
        overflow: hidden; /* Voorkom dat achtergrond lekt */
    }

    .shared-bg-image {
        background-attachment: scroll !important; /* Fix voor iOS */
        background-size: 200% auto !important; /* Juiste aspect ratio voor zichtbaarheid */
        background-position: center center !important;
        position: absolute !important; /* BELANGRIJK: Van fixed naar absolute */
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        opacity: 0.4 !important; /* VERHOOGD: Van 0.2 naar 0.4 voor betere zichtbaarheid */
        z-index: 0;
    }

    .shared-bg-overlay {
        background: rgba(10, 10, 10, 0.5) !important; /* LICHTER: Van 0.7 naar 0.5 */
    }

    .perfume-showcase {
        background: transparent; /* Transparant zodat achtergrond zichtbaar is */
        position: relative;
        z-index: 2;
    }

    /* ALLE ANDERE SECTIES BLIJVEN ZWART */
    .story-section,
    .machine-showcase-section,
    .machine-reveal-section,
    .benefits-section,
    .contact-section,
    footer {
        background: #0A0A0A !important;
        position: relative;
        z-index: 1;
    }

    .perfume-slide img {
        max-width: 250px !important;
        height: auto !important;
        margin: 0 auto !important;
    }

    .perfume-slider {
        padding: 20px !important;
    }
}

/* FIX 6: Footer Mobile Center */
@media (max-width: 768px) {
    footer {
        padding: 40px 0 30px 0 !important;
        background: #000000 !important;
    }

    .footer-content {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
        gap: 30px !important;
    }

    .footer-column {
        width: 100% !important;
        margin-bottom: 0 !important;
        text-align: center !important;
    }

    .footer-column h4 {
        font-size: 18px !important;
        margin-bottom: 15px !important;
        color: var(--gold-champagne) !important;
        text-align: center !important;
    }

    .footer-column ul {
        padding: 0 !important;
        list-style: none !important;
        text-align: center !important;
    }

    .footer-column li {
        margin-bottom: 10px !important;
        text-align: center !important;
    }

    .footer-column a {
        font-size: 14px !important;
        display: inline-block !important;
        text-align: center !important;
    }

    .footer-bottom {
        text-align: center !important;
        padding-top: 20px !important;
        border-top: 1px solid rgba(212, 175, 55, 0.2);
        margin-top: 20px;
    }
}

/* Extra Mobile Optimalisaties */
@media (max-width: 768px) {
    /* Touch-friendly buttons */
    .btn {
        min-height: 48px !important;
        padding: 12px 24px !important;
        font-size: 16px !important;
    }

    /* Betere spacing voor kleine schermen */
    .container {
        padding: 0 15px !important;
    }

    section {
        padding: 60px 0 !important;
    }

    /* Font size aanpassingen */
    h1 {
        font-size: 28px !important;
    }

    h2 {
        font-size: 24px !important;
    }

    h3 {
        font-size: 20px !important;
    }

    p {
        font-size: 14px !important;
        line-height: 1.5 !important;
    }

    /* Story section mobile */
    .story-content {
        padding: 30px 20px !important;
    }

    .story-title {
        font-size: 24px !important;
        margin-bottom: 20px !important;
    }

    .story-text {
        font-size: 15px !important;
        line-height: 1.6 !important;
        margin-bottom: 15px !important;
    }
}
