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

/* Police Chantal Medium */
@font-face {
    font-family: 'Chantal Medium';
    src: url('ChantalMedium.otf') format('opentype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

/* Variables - Charte graphique */
:root {
    --color-red: #DD193A;
    --color-yellow: #F2D22F;
    --color-beige: #FFFCF2;
    --color-black: #1D1E22;
    --color-orange: #F28705;
    
    --font-headline: 'Changa', 'Arial Black', sans-serif;
    --font-inter: 'Inter', -apple-system, sans-serif;
    --font-chantal: 'Chantal Medium', Georgia, serif;
}

body {
    font-family: var(--font-inter);
    color: var(--color-black);
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

.page-container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 1;
}

/* Background image */
.background-image {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('bg.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 252, 242, 0.85) 0%, rgba(255, 252, 242, 0.75) 100%);
    z-index: 1;
    pointer-events: none;
}

/* Products shapes */
.products-shapes {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 2;
    overflow: hidden;
}

.product-shape {
    position: absolute;
    object-fit: contain;
    opacity: 0;
    filter: drop-shadow(0 4px 12px rgba(29, 30, 34, 0.3));
    transition: opacity 0.5s ease-in;
    pointer-events: none;
}


@keyframes scrollDown {
    0% {
        top: -20%;
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        top: 120%;
        opacity: 0;
    }
}

/* Header */
.header {
    padding: 2rem 2rem 1rem;
    text-align: center;
    position: relative;
    z-index: 3;
}

.logo {
    max-width: 230px;
    height: auto;
    filter: drop-shadow(0 4px 12px rgba(29, 30, 34, 0.3));
    animation: logoAppear 0.8s ease-out;
}

@keyframes logoAppear {
    from {
        opacity: 0;
        transform: translateY(-20px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Main content */
.main-content {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem 2rem;
    position: relative;
    z-index: 3;
}

.content-box {
    max-width: 700px;
    width: 100%;
    text-align: center;
    background: rgba(255, 252, 242, 0.95);
    padding: 2.25rem 2.5rem;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(29, 30, 34, 0.15);
    backdrop-filter: blur(10px);
    animation: contentAppear 1s ease-out 0.3s both;
}

@keyframes contentAppear {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.title-container {
    margin-bottom: 1.25rem;
    width: 100%;
}

.label {
    display: inline-block;
    font-family: var(--font-inter);
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--color-red);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.title {
    font-family: var(--font-chantal);
    font-size: 2.8rem;
    font-weight: 500;
    color: var(--color-red);
    line-height: 1.2;
    letter-spacing: -0.5px;
    text-transform: none;
    margin: 0;
    text-shadow: 0 2px 8px rgba(221, 25, 58, 0.2);
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.message-container {
    margin-bottom: 2rem;
    padding: 0 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.85rem;
}

.message {
    font-family: var(--font-inter);
    font-size: 1.15rem;
    line-height: 1.7;
    color: rgba(29, 30, 34, 0.78);
    font-weight: 400;
    max-width: 34rem;
    margin: 0;
}

/* Phrase d'accroche mise en avant */
.message--lead {
    font-size: 1.5rem;
    line-height: 1.45;
    font-weight: 500;
    color: var(--color-black);
}

.message--lead strong {
    color: var(--color-red);
    font-weight: 600;
    white-space: nowrap;
}

/* Séparateur discret sous l'accroche */
.message--lead::after {
    content: '';
    display: block;
    width: 48px;
    height: 3px;
    margin: 0.85rem auto 0;
    border-radius: 3px;
    background: linear-gradient(90deg, var(--color-red), var(--color-orange));
}

/* Mots-clés surlignés */
.highlight {
    color: var(--color-black);
    font-weight: 600;
    background: linear-gradient(transparent 62%, rgba(242, 210, 47, 0.55) 62%);
    padding: 0 2px;
}

/* Note secondaire (boutiques physiques) */
.message--note {
    font-size: 1rem;
    color: rgba(29, 30, 34, 0.6);
    font-style: italic;
}

.cta-link {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: var(--color-red);
    color: var(--color-beige);
    padding: 1.4rem 3rem;
    font-family: var(--font-headline);
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(221, 25, 58, 0.4);
    position: relative;
    overflow: hidden;
}

.cta-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s;
}

.cta-link:hover::before {
    left: 100%;
}

.cta-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(221, 25, 58, 0.5);
    background: #c41530;
}

.cta-link:hover svg {
    transform: translateX(5px);
}

.cta-link:active {
    transform: translateY(-1px);
}

.cta-link svg {
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

/* Responsive */
@media (max-width: 968px) {
    .title {
        font-size: 2.8rem;
    }

    .message--lead {
        font-size: 1.35rem;
    }

    .product-shape {
        max-width: 140px !important;
    }
}

@media (max-width: 768px) {
    .header {
        padding: 2rem 1.5rem 1.5rem;
    }

    .logo {
        max-width: 220px;
    }

    .main-content {
        padding: 1.5rem;
    }

    .content-box {
        padding: 2.5rem 2rem;
    }

    .title {
        font-size: 2.5rem;
        letter-spacing: -0.5px;
    }

    .label {
        font-size: 0.85rem;
        letter-spacing: 2px;
    }

    .message {
        font-size: 1.05rem;
    }

    .message--lead {
        font-size: 1.25rem;
    }

    .message--note {
        font-size: 0.95rem;
    }

    .cta-link {
        padding: 1.2rem 2.5rem;
        font-size: 0.9rem;
    }

    .product-shape {
        max-width: 120px !important;
    }
}

@media (max-width: 480px) {
    .header {
        padding: 1.5rem 1rem 1rem;
    }

    .logo {
        max-width: 180px;
    }

    .content-box {
        padding: 2rem 1.5rem;
    }

    .title {
        font-size: 2rem;
    }

    .label {
        font-size: 0.75rem;
    }

    .message {
        font-size: 1rem;
    }

    .message--lead {
        font-size: 1.15rem;
    }

    .cta-link {
        padding: 1rem 2rem;
        font-size: 0.85rem;
        gap: 0.8rem;
    }

    .cta-link svg {
        width: 16px;
        height: 16px;
    }

    .product-shape {
        max-width: 100px !important;
    }
}