:root {
    --primary-color: #f8fafc;
    /* Very Light Grey/White */
    --secondary-color: #ffffff;
    /* Pure White */
    --accent-color: #d97706;
    /* Darker Gold for contrast on white */
    --accent-light: #fbbf24;
    /* Lighter Gold */
    --text-color: #1e293b;
    /* Dark Blue-Grey */
    --glass-bg: rgba(255, 255, 255, 0.8);
    --glass-border: rgba(217, 119, 6, 0.2);
    --font-heading: 'Cinzel', serif;
    --font-body: 'Lato', sans-serif;
}

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

body {
    font-family: var(--font-body);
    background-color: var(--primary-color);
    color: var(--text-color);
    overflow-x: hidden;
    line-height: 1.6;
    background-image: linear-gradient(to bottom, #fff, #f0f9ff);
}

#bg-video {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    opacity: 0.85;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* object-fit défini dynamiquement via JS */
    z-index: 0;
}

.page-content {
    padding-top: 120px;
    /* Espace pour le header fixe */
    min-height: calc(100vh - 80px);
    /* Footer height approx */
}

/* Navigation Active State */
nav a.active {
    color: var(--accent-color);
    border-bottom: 2px solid var(--accent-color);
    padding-bottom: 5px;
}

/* Header & Nav */
header {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 20px 50px;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--glass-border);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

nav {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    display: none;
    /* Logo masqué */
}

nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

nav a {
    color: var(--text-color);
    text-decoration: none;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s;
    font-weight: 600;
}

nav a:hover {
    color: var(--accent-color);
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    z-index: 1001;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--accent-color);
    transition: all 0.3s ease;
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 20px;
    position: relative;
    background-color: #000;
    /* Avoid white borders if image doesn't cover */
    overflow: hidden;
}

.hero-content {
    max-width: 800px;
    animation: fadeIn 2s ease-out;
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-family: var(--font-heading);
    font-size: var(--hero-title-size, 4rem);
    margin-bottom: 20px;
    color: #ffffff;
    font-weight: 700;
    text-shadow: 0 3px 6px rgba(0, 0, 0, 0.9);
}

.quote {
    font-style: italic;
    font-size: var(--hero-quote-size, 1.4rem);
    margin-bottom: 30px;
    color: #ffffff;
    font-weight: 700;
    text-shadow: 0 3px 6px rgba(0, 0, 0, 0.9);
    padding: 0 20px;
    background: transparent;
    border: none;
}

.intro-text {
    font-size: 1.2rem;
    margin-bottom: 50px;
    color: #ffffff;
    font-weight: 700;
    text-shadow: 0 3px 6px rgba(0, 0, 0, 0.9);
    line-height: 1.8;
    background: transparent;
    border: none;
    padding: 0 20px;
}

.cta-button {
    display: inline-block;
    padding: 18px 50px;
    background: linear-gradient(135deg, #b45309 0%, #d97706 100%);
    /* Bouton plein doré */
    border: none;
    color: #ffffff;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 700;
    font-size: 1rem;
    border-radius: 50px;
    /* Bouton arrondi */
    box-shadow: 0 4px 15px rgba(217, 119, 6, 0.4);
    /* Glow effect */
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(217, 119, 6, 0.6);
    background: linear-gradient(135deg, #d97706 0%, #fbbf24 100%);
}

/* Sections General */
section {
    padding: 100px 20px;
}

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

h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 50px;
    color: var(--accent-color);
}

/* Glass Panel Style */
.glass-panel {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
}

.dark-panel {
    background: rgba(255, 255, 255, 0.4);
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.8);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    border: 1px solid var(--glass-border);
    transition: transform 0.3s;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    text-decoration: none;
    display: block;
    color: inherit;
    cursor: pointer;
}

.feature-card:hover {
    transform: translateY(-10px);
    background: #fff;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.feature-card img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    margin-bottom: 20px;
    border: 3px solid var(--accent-color);
}

.feature-card h3 {
    font-family: var(--font-heading);
    margin-bottom: 15px;
    color: var(--accent-color);
}

/* Split Layout (About) */
.split-layout {
    display: flex;
    align-items: center;
    gap: 50px;
}

.text-content {
    flex: 1;
}

.image-content {
    flex: 1;
    display: flex;
    justify-content: center;
}

.image-frame {
    width: 300px;
    height: 400px;
    border: 2px solid var(--accent-color);
    padding: 10px;
    position: relative;
}

.image-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

blockquote {
    border-left: 3px solid var(--accent-color);
    padding-left: 20px;
    margin-top: 20px;
    font-style: italic;
    color: #94a3b8;
}

/* Benefits List */
.benefits-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.benefit-item h3 {
    color: var(--accent-color);
    margin-bottom: 10px;
    font-family: var(--font-heading);
}

.highlight-box {
    background: rgba(251, 191, 36, 0.1);
    border: 1px solid var(--accent-color);
    padding: 30px;
    text-align: center;
    border-radius: 10px;
}

.consultation-notices {
    text-align: center;
    margin-bottom: 40px;
    padding: 20px;
    background: rgba(251, 191, 36, 0.05);
    border-radius: 10px;
}

.consultation-notices .notice {
    margin: 10px 0;
    font-size: 1.05rem;
}

.consultation-notices .notice-important {
    margin: 10px 0;
    font-size: 1.1rem;
    color: var(--accent-color);
}

/* Pricing */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.pricing-card {
    background: rgba(255, 255, 255, 0.9);
    padding: 40px 30px;
    border-radius: 15px;
    border: 1px solid var(--glass-border);
    text-align: left;
    /* Alignement à gauche pour la lisibilité du long texte */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    /* Pour que l'image ne dépasse pas */
}

.card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 20px;
    border: 1px solid var(--accent-color);
}

.pricing-card h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    margin-bottom: 20px;
    color: var(--accent-color);
    text-align: center;
    /* Titres centrés */
}

.pricing-card .quote {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: #475569;
    /* Couleur sombre pour lisibilité sur fond blanc */
    text-shadow: none;
    /* Pas d'ombre sur fond blanc */
    padding: 0;
}

.card-content p {
    margin-bottom: 15px;
    font-size: 1rem;
    line-height: 1.6;
}

.pricing-card ul {
    list-style: none;
    margin: 20px 0;
    text-align: left;
}

.pricing-card li {
    margin-bottom: 15px;
    padding-left: 20px;
    position: relative;
    font-size: 0.95rem;
}

.pricing-card li::before {
    content: "•";
    color: var(--accent-color);
    position: absolute;
    left: 0;
    font-weight: bold;
}

.btn-book {
    display: inline-block;
    padding: 10px 30px;
    background: var(--accent-color);
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 25px;
    font-weight: bold;
    margin-top: 20px;
    transition: transform 0.2s;
}

.btn-book:hover {
    transform: scale(1.05);
}

/* Contact */
.contact-info {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin: 40px 0;
}

.contact-item {
    text-align: center;
}

.contact-item strong {
    display: block;
    color: var(--accent-color);
    margin-bottom: 5px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social-icon {
    color: var(--text-color);
    border: 1px solid var(--glass-border);
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    transition: all 0.3s;
}

.social-icon:hover {
    background: var(--accent-color);
    color: var(--primary-color);
}

footer {
    text-align: center;
    padding: 30px;
    background: #fff;
    font-size: 0.9rem;
    color: #64748b;
    border-top: 1px solid var(--glass-border);
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    header {
        padding: 15px 20px;
    }

    .hamburger {
        display: flex;
    }

    nav {
        position: relative;
    }

    nav ul {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        max-width: 300px;
        height: 100vh;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: flex-start;
        padding: 80px 20px 20px;
        gap: 20px;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        transition: right 0.3s ease;
        z-index: 999;
        overflow-y: auto;
    }

    nav ul.active {
        right: 0;
    }

    nav ul li {
        width: 100%;
        text-align: left;
    }

    nav ul li a {
        display: block;
        padding: 12px 15px;
        font-size: 1.1rem;
        border-bottom: 1px solid rgba(217, 119, 6, 0.1);
    }

    .logo {
        font-size: 1.2rem;
    }

    .hero {
        min-height: 100vh;
        padding: 20px 15px;
    }

    .hero h1 {
        font-size: 2rem !important;
    }

    .hero .quote {
        font-size: 1.1rem !important;
    }

    .hero .intro-text {
        font-size: 1rem !important;
    }

    .split-layout {
        flex-direction: column;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .pricing-card.featured {
        transform: none;
    }

    .contact-info {
        flex-direction: column;
        gap: 20px;
    }

    section {
        padding: 60px 15px;
    }

    h2 {
        font-size: 2rem;
    }
}

/* Tablet breakpoint */
@media (min-width: 769px) and (max-width: 1024px) {
    header {
        padding: 20px 30px;
    }

    .hero h1 {
        font-size: 3rem;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* New Content Styles */
.lead-text {
    font-size: 1.3rem;
    margin-bottom: 20px;
    text-align: center;
}

.text-block {
    margin: 40px 0;
    text-align: justify;
    background: rgba(255, 255, 255, 0.5);
    padding: 30px;
    border-radius: 10px;
    border-left: 3px solid var(--accent-color);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
}

.text-block p {
    margin-bottom: 15px;
    font-size: 1.15rem;
    line-height: 1.8;
}

.trilogy-list {
    margin: 50px 0;
    background: linear-gradient(to right, rgba(255, 255, 255, 0.8), rgba(254, 243, 199, 0.3));
    padding: 40px;
    border-radius: 15px;
    border: 1px solid rgba(251, 191, 36, 0.1);
}

.trilogy-list h3 {
    color: var(--accent-color);
    font-family: var(--font-heading);
    margin-bottom: 30px;
    text-align: center;
}

.trilogy-list ul {
    list-style: none;
    max-width: 800px;
    margin: 0 auto;
}

.trilogy-list li {
    margin-bottom: 20px;
    padding-left: 30px;
    position: relative;
    font-size: 1.1rem;
}

.trilogy-list li::before {
    content: "✦";
    color: var(--accent-color);
    position: absolute;
    left: 0;
    top: 0;
}

.closing-text {
    text-align: center;
    font-size: 1.2rem;
    font-style: italic;
    margin: 40px 0;
    color: #475569;
}

.quotes-section {
    text-align: center;
    margin-top: 50px;
    border-top: 1px solid var(--glass-border);
    padding-top: 30px;
}

.quote-small {
    font-family: var(--font-heading);
    color: var(--accent-color);
    margin-bottom: 10px;
    font-size: 1.1rem;
}