:root {
    --french-blue: #003399;
    --french-red: #ED2939;
    --french-white: #FFFFFF;
    --cream: #FFF8F0;
    --beige: #F5E6D3;
    --brown: #8B7355;
    --dark: #2C3E50;
    --gold: #D4AF37;
    --light-blue: #E8F4F8;
    --gray: #6C757D;
}

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

body {
    font-family: 'Raleway', sans-serif;
    background: var(--french-white);
    color: var(--dark);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3 {
    font-family: 'Raleway', sans-serif;
    font-weight: 800;
}

h1 {
    font-size: 3.5rem;
    line-height: 1.1;
}

h2 {
    font-size: 2.8rem;
}

h3 {
    font-size: 1.5rem;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 100px 0;
}

.bg-cream {
    background: var(--cream);
}

/* Floating Navigation */
.nav-floating {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    padding: 15px 30px;
    display: flex;
    align-items: center;
    gap: 40px;
    z-index: 1000;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 2px solid var(--french-blue);
}

.nav-brand {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--french-blue);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 25px;
}

.nav-links a {
    color: var(--dark);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--french-blue);
}

.btn-contact {
    padding: 10px 24px;
    background: var(--french-blue);
    color: var(--french-white);
    border-radius: 25px;
    transition: all 0.3s;
}

.btn-contact:hover {
    background: var(--french-red);
    color: var(--french-white) !important;
    transform: translateY(-2px);
}

/* Hero Journey */
.hero-journey {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 120px;
    position: relative;
    background: linear-gradient(135deg, var(--light-blue) 0%, var(--cream) 100%);
    overflow: hidden;
}

.journey-background {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    opacity: 0.05;
}

.eiffel-outline {
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 200"><path d="M50 10 L30 200 M50 10 L70 200 M20 100 L80 100 M25 150 L75 150" stroke="%23003399" stroke-width="2" fill="none"/></svg>') no-repeat center;
    background-size: contain;
}

.hero-text {
    text-align: center;
    margin-bottom: 60px;
}

.subtitle-badge {
    display: inline-block;
    padding: 8px 20px;
    background: var(--french-blue);
    color: var(--french-white);
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.french-accent {
    background: linear-gradient(90deg, var(--french-blue) 0%, var(--french-red) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.2rem;
    color: var(--gray);
    max-width: 700px;
    margin: 20px auto 0;
}

/* Journey Timeline */
.journey-timeline {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 50px;
    position: relative;
}

.timeline-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    z-index: 1;
}

.step-icon {
    width: 80px;
    height: 80px;
    background: var(--french-white);
    border: 3px solid var(--french-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 15px;
    transition: all 0.3s;
}

.timeline-step:hover .step-icon {
    transform: scale(1.1);
    background: var(--french-blue);
    border-color: var(--french-red);
}

.step-content h3 {
    font-size: 1.1rem;
    color: var(--french-blue);
    margin-bottom: 5px;
    font-style: italic;
    font-family: 'Crimson Text', serif;
}

.step-content p {
    font-size: 0.9rem;
    color: var(--gray);
}

.timeline-connector {
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, var(--french-blue) 0%, var(--french-red) 100%);
    margin: 0 10px;
    margin-bottom: 70px;
}

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

.btn-primary {
    display: inline-block;
    padding: 18px 40px;
    background: var(--french-blue);
    color: var(--french-white);
    border-radius: 30px;
    font-size: 1.2rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 10px 30px rgba(0, 51, 153, 0.3);
}

.btn-primary:hover {
    background: var(--french-red);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(237, 41, 57, 0.4);
}

.trust-line {
    margin-top: 20px;
    font-size: 1rem;
    color: var(--gray);
    font-weight: 600;
}

/* Conversation Flow */
.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title .subtitle {
    display: block;
    font-size: 1.2rem;
    color: var(--gray);
    font-weight: 400;
    margin-top: 10px;
}

.conversation-flow {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.conversation-bubble {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.conversation-bubble.right {
    flex-direction: row-reverse;
}

.bubble-icon {
    flex-shrink: 0;
    width: 70px;
    height: 70px;
    background: var(--french-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
}

.conversation-bubble.right .bubble-icon {
    background: var(--french-red);
}

.bubble-content {
    background: var(--french-white);
    padding: 25px 30px;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    position: relative;
}

.conversation-bubble.left .bubble-content {
    border-top-left-radius: 0;
}

.conversation-bubble.right .bubble-content {
    border-top-right-radius: 0;
}

.bubble-content h3 {
    color: var(--french-blue);
    margin-bottom: 10px;
}

.bubble-content p {
    color: var(--dark);
    line-height: 1.7;
}

.bubble-detail {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 2px solid var(--cream);
    font-size: 0.9rem;
    color: var(--gray);
    font-style: italic;
}

/* Niveaux Grid */
.niveaux-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.niveau-card {
    background: var(--french-white);
    border-radius: 20px;
    padding: 40px 30px;
    border: 3px solid transparent;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.niveau-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--french-blue), var(--french-red));
    transform: scaleX(0);
    transition: transform 0.3s;
}

.niveau-card:hover::before {
    transform: scaleX(1);
}

.niveau-card:hover {
    transform: translateY(-10px);
    border-color: var(--french-blue);
    box-shadow: 0 20px 40px rgba(0, 51, 153, 0.15);
}

.niveau-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.niveau-label {
    padding: 8px 16px;
    background: var(--light-blue);
    color: var(--french-blue);
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
}

.niveau-emoji {
    font-size: 2.5rem;
}

.niveau-card h3 {
    color: var(--dark);
    margin-bottom: 10px;
    font-size: 1.4rem;
}

.niveau-card > p {
    color: var(--gray);
    margin-bottom: 25px;
}

.niveau-topics {
    list-style: none;
}

.niveau-topics li {
    padding: 10px 0;
    color: var(--dark);
    border-bottom: 1px solid var(--cream);
}

.niveau-topics li:last-child {
    border-bottom: none;
}

/* Success Postcards */
.postcards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.postcard {
    background: var(--french-white);
    border: 2px solid var(--beige);
    border-radius: 12px;
    padding: 30px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
}

.postcard:hover {
    transform: rotate(-2deg) translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.postcard-stamp {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 2rem;
    opacity: 0.5;
}

.postcard-header {
    margin-bottom: 20px;
}

.postcard-from {
    font-weight: 700;
    color: var(--dark);
    font-size: 1.1rem;
}

.postcard-location {
    color: var(--gray);
    font-size: 0.9rem;
}

.postcard-grade-change {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    padding: 20px;
    background: var(--cream);
    border-radius: 10px;
    margin-bottom: 20px;
}

.grade-before {
    font-size: 1.3rem;
    font-weight: 900;
    color: var(--french-red);
    text-decoration: line-through;
}

.grade-arrow {
    font-size: 1.5rem;
    color: var(--french-blue);
}

.grade-after {
    font-size: 1.3rem;
    font-weight: 900;
    color: #10B981;
}

.postcard-message {
    font-style: italic;
    color: var(--dark);
    line-height: 1.8;
    margin-bottom: 20px;
    font-family: 'Crimson Text', serif;
    font-size: 1.05rem;
}

.postcard-signature {
    text-align: right;
    font-weight: 600;
    color: var(--french-blue);
    font-style: italic;
}

/* Menu Board Pricing */
.menu-board {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto 40px;
}

.menu-item {
    background: var(--french-white);
    border: 3px solid var(--beige);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    transition: all 0.3s;
}

.menu-item:hover {
    transform: translateY(-10px);
    border-color: var(--french-blue);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.menu-item.featured {
    border-color: var(--gold);
    border-width: 4px;
    transform: scale(1.05);
}

.menu-item.featured:hover {
    transform: scale(1.08) translateY(-10px);
}

.menu-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold);
    color: var(--french-white);
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.85rem;
}

.menu-header {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.menu-header h3 {
    font-size: 1.4rem;
    color: var(--dark);
    font-style: italic;
    font-family: 'Crimson Text', serif;
}

.menu-emoji {
    font-size: 2rem;
}

.menu-price {
    margin-bottom: 20px;
}

.price {
    font-size: 3rem;
    font-weight: 900;
    color: var(--french-blue);
}

.price-detail {
    font-size: 0.95rem;
    color: var(--gray);
    margin-top: 5px;
}

.menu-description {
    margin-bottom: 25px;
}

.menu-description p {
    color: var(--gray);
    font-style: italic;
}

.menu-includes {
    list-style: none;
    text-align: left;
    margin-bottom: 30px;
}

.menu-includes li {
    padding: 12px 0;
    border-bottom: 1px solid var(--cream);
    color: var(--dark);
}

.menu-includes li:last-child {
    border-bottom: none;
}

.menu-btn {
    display: block;
    padding: 15px;
    background: var(--french-blue);
    color: var(--french-white);
    border-radius: 25px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s;
}

.menu-btn:hover {
    background: var(--french-red);
    transform: translateY(-2px);
}

.menu-note {
    text-align: center;
    padding: 25px;
    background: var(--french-white);
    border-radius: 15px;
    max-width: 900px;
    margin: 0 auto;
}

.menu-note p {
    color: var(--dark);
    font-size: 1.05rem;
    font-weight: 600;
}

/* Contact Cafe */
.contact-cafe {
    background: linear-gradient(135deg, var(--dark) 0%, var(--brown) 100%);
    position: relative;
    overflow: hidden;
}

.cafe-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100"><circle cx="10" cy="10" r="2" fill="rgba(255,255,255,0.05)"/><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.05)"/><circle cx="90" cy="30" r="2" fill="rgba(255,255,255,0.05)"/></svg>');
    opacity: 0.3;
}

.cafe-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.cafe-left h2 {
    color: var(--french-white);
    font-size: 3rem;
    margin-bottom: 20px;
}

.cafe-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    margin-bottom: 50px;
}

.cafe-info {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.info-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.info-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.info-text h4 {
    color: var(--french-white);
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.info-text p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

.contact-card {
    background: var(--french-white);
    border-radius: 20px;
    padding: 40px;
}

.contact-card h3 {
    font-size: 1.8rem;
    color: var(--dark);
    margin-bottom: 30px;
    text-align: center;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: var(--cream);
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.contact-method:hover {
    background: var(--light-blue);
    border-color: var(--french-blue);
    transform: translateX(5px);
}

.method-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.method-label {
    font-size: 0.85rem;
    color: var(--gray);
    margin-bottom: 3px;
}

.method-value {
    font-size: 1.05rem;
    color: var(--dark);
    font-weight: 600;
}

.contact-cta {
    text-align: center;
    padding-top: 30px;
    border-top: 2px solid var(--cream);
}

.cta-text {
    color: var(--gray);
    margin-bottom: 15px;
    font-weight: 600;
}

.btn-call {
    display: inline-block;
    padding: 18px 40px;
    background: var(--french-blue);
    color: var(--french-white);
    border-radius: 30px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s;
    font-size: 1.1rem;
}

.btn-call:hover {
    background: var(--french-red);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(237, 41, 57, 0.3);
}

/* Footer */
.footer-french {
    background: var(--dark);
    color: var(--french-white);
    padding: 40px 0;
    text-align: center;
}

.footer-french p {
    margin-bottom: 10px;
}

.footer-french a {
    color: var(--gold);
    text-decoration: underline;
}

.footer-quote {
    font-style: italic;
    color: rgba(255, 255, 255, 0.7);
    font-family: 'Crimson Text', serif;
    font-size: 1.1rem;
}

/* Responsive */
@media (max-width: 968px) {
    .nav-floating {
        top: 10px;
        padding: 12px 20px;
        gap: 20px;
    }

    .nav-links {
        display: none;
    }

    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    .journey-timeline {
        flex-wrap: wrap;
        gap: 30px;
    }

    .timeline-connector {
        display: none;
    }

    .conversation-bubble {
        flex-direction: column !important;
        align-items: center;
    }

    .bubble-content {
        border-radius: 20px !important;
    }

    .niveaux-grid,
    .postcards-grid,
    .menu-board {
        grid-template-columns: 1fr;
    }

    .menu-item.featured {
        transform: scale(1);
    }

    .cafe-content {
        grid-template-columns: 1fr;
    }

    .section {
        padding: 60px 0;
    }
}
