/* K.B CRÉATEURS - Consolidated Theme Pages CSS */
/* Shared styles for all collection pages: theme-kids.html, theme-concept.html, theme-esskiss.html, theme-design.html, theme-prestige.html */

/* K.B CRÉATEURS Golden Brand Palette */
:root {
    --white: #ffffff;
    --black: #000000;
    --gray-50: #f9f9f9;
    --gray-100: #f5f5f5;
    --gray-200: #e5e5e5;
    --gray-400: #a3a3a3;
    --gray-600: #525252;
    --gray-900: #171717;

    /* K.B CRÉATEURS Golden Brand Colors */
    --accent: #d4af37;
    --gold-primary: #d4af37;
    --gold-light: #F4D03F;
    --gold-cream: #F5F2E8;
    --gold-dark: #8B5A3C;
    --gold-amber: #FECA57;
    --gold-pale: #FDF8E4;

    /* Theme-specific background images - can be overridden */
    --hero-bg-kids: url('../images/echappee.jpg');
    --hero-bg-concept: url('../images/contemplation_hivernale.jpg');
    --hero-bg-esskiss: url('../images/bionnassay_sunrise.jpg');
    --hero-bg-design: url('../images/murmure_arbres.jpg');
    --hero-bg-prestige: url('../images/eclats_automne.jpg');
    --hero-bg-village: url('../images/lune_bionnassay.jpg');

    /* Default hero background - will be overridden by theme-specific classes */
    --hero-bg: var(--hero-bg-concept);
}

/* Theme-specific background overrides */
.theme-kids { --hero-bg: var(--hero-bg-kids); }
.theme-concept { --hero-bg: var(--hero-bg-concept); }
.theme-esskiss { --hero-bg: var(--hero-bg-esskiss); }
.theme-design { --hero-bg: var(--hero-bg-design); }
.theme-prestige { --hero-bg: var(--hero-bg-prestige); }
.theme-village { --hero-bg: var(--hero-bg-village); }

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--black);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

/* Navigation */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 60px;
}

.logo {
    font-size: 20px;
    font-weight: 600;
    letter-spacing: -0.5px;
    color: var(--black);
    text-decoration: none;
}

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

.nav-menu a {
    color: var(--gray-600);
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    transition: color 0.2s ease;
}

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

.contact-icon {
    background: none;
    border: none;
    font-size: 18px;
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    transition: background 0.2s ease;
    position: relative;
}

.contact-icon:hover {
    background: var(--gray-100);
}

/* Hero Section */
.hero {
    margin-top: 60px;
    min-height: 50vh;
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), var(--hero-bg);
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    padding: 60px 24px;
}

.hero-content {
    max-width: 800px;
}

.hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
    color: var(--gold-dark);
}

.hero-content p {
    font-size: 1.2rem;
    opacity: 0.9;
    line-height: 1.5;
    margin-bottom: 16px;
}

.hero-tagline {
    font-size: 1.1rem;
    opacity: 0.8;
    font-style: italic;
    line-height: 1.4;
}

/* Breadcrumb styles moved to components/breadcrumb.css */

/* Products Container */
.products-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px 48px;
}

.collection-intro {
    text-align: center;
    margin-bottom: 48px;
    padding: 32px 0;
}

.collection-intro h2 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--gold-dark);
}

.collection-intro p {
    font-size: 1.1rem;
    color: var(--gray-600);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Product card styles moved to components/product-card.css */

/* Prestige-specific styles */
.prestige-info {
    text-align: center;
    margin: 48px auto;
    padding: 32px;
    max-width: 600px;
    background: var(--gray-50);
    border-radius: 12px;
}

.prestige-info h2 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--gold-dark);
}

.prestige-info p {
    font-size: 1rem;
    color: var(--gray-600);
    line-height: 1.6;
    margin-bottom: 24px;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-container {
        padding: 0 16px;
    }

    .nav-menu {
        display: none;
    }

    .logo {
        font-size: 18px;
    }

    .hero {
        min-height: 40vh;
        padding: 40px 16px;
    }

    .hero-content h1 {
        font-size: 2.2rem;
        margin-bottom: 16px;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .hero-tagline {
        font-size: 1rem;
    }

    .breadcrumb {
        padding: 16px;
        font-size: 12px;
    }

    .products-container {
        padding: 0 16px 32px;
    }

    .collection-intro {
        margin-bottom: 32px;
        padding: 24px 0;
    }

    .collection-intro h2 {
        font-size: 1.5rem;
    }

    .collection-intro p {
        font-size: 1rem;
    }

    .products-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .product-card {
        max-width: 100%;
    }

    .product-info {
        padding: 16px;
    }

    .contact-btn, .quote-btn, .select-size {
        padding: 10px 18px;
        font-size: 13px;
    }

    .prestige-info {
        margin: 32px auto;
        padding: 24px;
    }

    .prestige-info h2 {
        font-size: 1.5rem;
    }
}


@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.8rem;
    }

    .hero-content p, .hero-tagline {
        font-size: 0.9rem;
    }

    .collection-intro h2 {
        font-size: 1.3rem;
    }

    .collection-intro p {
        font-size: 0.9rem;
    }
}