:root {
    --color-primary: #4c2f49;
    --color-secondary: #CFBA11;
    --color-text: #ffffff;
    --transition: all 0.3s ease;
    --shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    font-family: 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    background-color: var(--color-primary);
    color: var(--color-text);
    line-height: 1.6;
}

h1, h2, h3 { font-weight: 400; margin-bottom: 1rem; }
h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; color: var(--color-secondary); }
p { margin-bottom: 1rem; }
a { color: var(--color-secondary); text-decoration: none; transition: var(--transition); }
a:hover { color: #d4b820; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

#header-placeholder {
    position: sticky;
    top: 0;
    z-index: 1000;
}

header {
   /* background:#3F0833;*/
    background: linear-gradient(90deg, #3F0833 0%, var(--color-primary) 190%);
    padding: 1rem 0 1rem 0;
    box-shadow: var(--shadow);
    position: relative;
}
#header-placeholder::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--color-secondary) 20%, var(--color-secondary) 80%, transparent);
    box-shadow: 0 0 12px 2px var(--color-secondary);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
    z-index: 1001;
}
#header-placeholder.liseret-visible::after { opacity: 1; }
#header-placeholder.liseret-faint::after   { opacity: 0.2; }
.header-content { display: flex; justify-content: space-between; align-items: center; gap: 1rem; }
.logo img { width: 300px; height: auto; }
nav { flex: 1; display: flex; align-items: center; gap: 1rem; justify-content: flex-end; }
.menu { display: flex; list-style: none; gap: 0; flex: 1; }
.menu li { flex: 1; text-align: center; position: relative; }

/* Groupe interaction : Livre d'Or + Contact — texte lavande, items plus étroits */
.menu li:nth-child(5) a,
.menu li:nth-child(6) a { color: #c4b5fd; }

.menu li:nth-child(5),
.menu li:nth-child(6) { flex: 0.65; }

/* Prestations — bouton doré hors menu */
.menu-btn-prestations {
    flex: none;
    display: inline-block;
    background: var(--color-secondary);
    color: var(--color-primary) !important;
    border-radius: 20px;
    padding: 0.4rem 1.3rem;
    font-weight: 600;
    font-size: 0.875rem;
    white-space: nowrap;
    transition: var(--transition);
    text-decoration: none;
}
.menu-btn-prestations:hover {
    background: #e8d213;
    color: var(--color-primary) !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(207, 186, 17, 0.45);
}
.menu a { color: var(--color-text); padding: 0.5rem 0.4rem; position: relative; display: block; white-space: nowrap; font-size: 0.875rem; }
.menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--color-secondary);
    transition: var(--transition);
}
.menu a:hover::after, .menu a.active::after { width: 80%; }
.menu a:hover, .menu a.active { color: var(--color-secondary); }
.menu-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.menu-toggle span { width: 30px; height: 3px; background: var(--color-text); transition: var(--transition); }

.slider-fullscreen { position: relative; width: 100%; height: 600Px; overflow: hidden; }
.slider-container { position: relative; width: 100%; height: 100%; }
.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}
.slide.active { opacity: 1; }
.slide img { width: 100%; height: 100%; object-fit: cover; }
.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 0%, rgba(31, 2, 28, 0.7) 75%, rgba(31, 2, 28, 0.95) 100%);
}
.slider-text-overlay {
    position: absolute;
    bottom: 80px;
    right: 60px;
    max-width: 650px;
    z-index: 10;
    padding: 2rem;
    background: rgba(31, 2, 28, 0.85);
    border-radius: 10px;
    border-left: 4px solid var(--color-secondary);
}
.slider-text-overlay h1 { color: var(--color-secondary); margin-bottom: 1rem; font-size: 2rem; }
.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}
.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: var(--transition);
}
.dot.active, .dot:hover { background: var(--color-secondary); transform: scale(1.2); }

/*section { padding: 4rem 0; }*/
.content-section { background: var(--color-primary); min-height: 60vh; }
.text-image-content h1 {
    font-size: 2.5rem;
    color: var(--color-secondary);
    margin-bottom: 2rem;
    text-align: center;
}
.text-image-content h2 { margin: 2rem 0 1rem 0; clear: both; }

.content-image-float {
    float: right;
    width: 40%;
    max-width: 400px;
    margin: 0 0 1.5rem 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    transition: var(--transition);
    cursor: pointer;
    border: 2px solid transparent;
}
.btn-primary { background: var(--color-secondary); color: var(--color-primary); }
.btn-primary:hover { background: #d4b820; transform: translateY(-3px); }
.btn-secondary {
    background: transparent;
    color: var(--color-secondary);
    border-color: var(--color-secondary);
}
.btn-secondary:hover { background: var(--color-secondary); color: var(--color-primary); }
.cta-buttons { display: flex; gap: 1rem; justify-content: center; margin-top: 2rem; flex-wrap: wrap; }
.cta-section {
    background: rgba(255, 255, 255, 0.05);
    padding: 3rem;
    border-radius: 15px;
    text-align: center;
    margin: 3rem 0;
    border: 1px solid rgba(165, 145, 17, 0.3);
    clear: both;
}
/* custom */
.highlight { color: var(--color-secondary); font-weight: bold; }
.paypal { text-align: center;}

.page-title { text-align: center; color: var(--color-secondary); font-size: 2.5rem; margin-bottom: 1rem; }
.page-intro { text-align: center; font-size: 1.1rem; max-width: 800px; margin: 0 auto 3rem auto; }
.prestations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 3rem;
    margin: 3rem 0;
    line-height: 1;
}
.prestation-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 1.8rem;
    border: 2px solid rgba(165, 145, 17, 0.3);
    transition: var(--transition);
    position: relative;
}
.prestation-card.featured { border-color: var(--color-secondary); box-shadow: 0 0 30px rgba(165, 145, 17, 0.2); }
.featured-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: var(--color-secondary);
    color: var(--color-primary);
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-weight: bold;
    font-size: 0.9rem;
}
.prestation-card:hover { transform: translateY(-5px); box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3); }
.prestation-header { text-align: center; margin-bottom: 2rem; }
.prestation-header h2 { font-size: 1.8rem; margin-bottom: 0.5rem; }
.prestation-tagline { font-size: 0.9rem; opacity: 0.9; font-style: italic; }
.prestation-description { font-size: 1.05rem; line-height: 1.3; margin-bottom: 2rem; }
.prestation-details { background: rgba(0, 0, 0, 0.3); padding: 0.7rem; border-radius: 10px; margin-bottom: 2rem; }
.detail-item { display: flex; align-items: center; gap: 1rem; }
.detail-item:last-child { margin-bottom: 0;justify-content: center;  }
.detail-icon { font-size: 1.5rem; }
.price-large { font-size: 2rem; font-weight: bold; color: var(--color-secondary); }
.prestation-features { list-style: none; padding: 0; margin-bottom: 2rem; }
.prestation-features li { padding: 0.2rem 0 0.2rem 1.5rem; position: relative; }
.prestation-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-secondary);
    font-weight: bold;
    font-size: 1.2rem;
}
.prestation-cta { background: rgba(0, 0, 0, 0.2); padding: 2rem; border-radius: 10px; margin-top: 2rem; }
.prestation-cta h3 { color: var(--color-secondary); text-align: center; margin-bottom: 1rem; }
.payment-info { text-align: center; font-size: 0.9rem; margin-bottom: 1.5rem; }
.paypal-embed-zone { margin: 1rem 0; }
.paypal-buttons-row {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0.75rem;
    margin: 1rem 0;
    background: rgba(165, 145, 17, 0.1);
    border: 2px dashed var(--color-secondary);
    border-radius: 10px;
    padding: 1rem;
}
.paypal-buttons-row .paypal-placeholder {
    background: none;
    border: none;
    border-radius: 0;
    padding: 0;
}
.paypal-placeholder {
    background: rgba(165, 145, 17, 0.1);
    border: 2px dashed var(--color-secondary);
    border-radius: 10px;
    padding: 1rem;
    text-align: center;
}
.paypal-placeholder .instruction { font-size: 0.9rem; opacity: 0.8; margin: 1rem 0; }
.paypal-placeholder code {
    display: block;
    background: rgba(0, 0, 0, 0.3);
    padding: 1rem;
    border-radius: 5px;
    margin-top: 0.5rem;
    font-size: 0.85rem;
    text-align: left;
}
.payment-secure { text-align: center; color: var(--color-secondary); margin: 0; font-size: 0.9rem; }
.btn-paylater {
    display: inline-block;
    text-align: center;
    border: none;
    border-radius: 0.25rem;
    min-width: 11.625rem;
    padding: 0 2rem;
    height: 2.625rem;
    line-height: 2.625rem;
    font-weight: bold;
    background-color: #009cde;
    color: #ffffff !important;
    font-family: "Helvetica Neue", Arial, sans-serif;
    font-size: 1rem;
    cursor: pointer;
    text-decoration: none;
    transition: var(--transition);
}
.btn-paylater:hover { background-color: #007ab8; color: #ffffff !important; }
.contact-cta-section {
    background: rgba(255, 255, 255, 0.05);
    padding: 3rem;
    border-radius: 15px;
    text-align: center;
    margin-top: 4rem;
}

.testimonials-section h1 { text-align: center; color: var(--color-secondary); margin-bottom: 2rem; }
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(350px, 1fr)); gap: 2rem; }
.testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 10px;
    border-left: 4px solid var(--color-secondary);
}
.testimonial-stars { color: var(--color-secondary); font-size: 1.2rem; margin-bottom: 0.5rem; }
.testimonial-author { font-weight: bold; margin-bottom: 1rem; }
.testimonial-type {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.3rem 1rem;
    background: var(--color-secondary);
    color: var(--color-primary);
    border-radius: 20px;
    font-size: 0.85rem;
}

.contact-section h1 { text-align: center; color: var(--color-secondary); margin-bottom: 2rem; }
.contact-form {
    max-width: 600px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 10px;
}
.form-group { margin-bottom: 1.5rem; }
.form-group label { display: block; margin-bottom: 0.5rem; color: var(--color-secondary); }
.form-group input, .form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid rgba(165, 145, 17, 0.3);
    border-radius: 5px;
    background: rgba(0, 0, 0, 0.3);
    color: var(--color-text);
    font-family: inherit;
}
.form-group textarea { resize: vertical; }

.legal-content h1 { text-align: center; color: var(--color-secondary); margin-bottom: 2rem; }
.legal-content h2 { margin-top: 2rem; border-bottom: 2px solid var(--color-secondary); padding-bottom: 0.5rem; }

footer {
    background: linear-gradient(135deg, #0d0110 0%, var(--color-primary) 100%);
    padding: 2rem 0;
    margin-top: 4rem;
    border-top: 2px solid var(--color-secondary);
}
.footer-content { text-align: center; }
.footer-links { display: flex; justify-content: center; gap: 2rem; margin-bottom: 1rem; flex-wrap: wrap; }
.social-link { display: flex; align-items: center; gap: 0.5rem; }
.copyright { font-size: 0.9rem; opacity: 0.7; }

@media (max-width: 768px) {
    .menu {
        position: fixed;
        top: 80px;
        left: -100%;
        flex-direction: column;
        background: var(--color-primary);
        width: 100%;
        padding: 2rem;
        gap: 0.5rem;
        transition: var(--transition);
    }
    .menu li { flex: none; text-align: left; }
    .menu a { font-size: 1rem; white-space: normal; padding: 0.5rem 0; }
    .menu.active { left: 0; }
    .menu-btn-prestations {
        display: none;
    }
    .menu.active ~ .menu-btn-prestations {
        display: block;
        margin: 0.5rem 2rem;
        text-align: center;
    }
    .menu-toggle { display: flex; }
    .slider-fullscreen { height: 60vh; }
    .slider-text-overlay {
        bottom: 40px;
        right: 20px;
        left: 20px;
        max-width: none;
        padding: 1.5rem;
    }
    .slider-text-overlay h1 { font-size: 1.5rem; }
    .content-image-float { float: none; width: 100%; max-width: 100%; margin: 1.5rem 0; }
    .prestations-grid { grid-template-columns: 1fr; }
    .testimonials-grid { grid-template-columns: 1fr; }
}
