:root {
    --gold: #D4AF37;
    --deep-blue: #1a2332;
    --light-gold: #f5e6c8;
    --white: #ffffff;
    --grey: #64748b;
    --dark-grey: #334155;
    --light-grey: #F9FAFB;
    --purple: #7C3AED;
    --green: #059669;
}

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

body {
    font-family: 'Inter', sans-serif;
    color: var(--deep-blue);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700;
}

/* Hero Section — photo fond : public/images/seo/hero-mariage-chretien.jpg (Unsplash) */
.hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--deep-blue);
    background-image: linear-gradient(
            135deg,
            rgba(26, 35, 50, 0.88) 0%,
            rgba(26, 35, 50, 0.72) 40%,
            rgba(45, 55, 72, 0.82) 100%
        ),
        url('../images/seo/hero-mariage-chretien.jpg');
    background-size: cover, cover;
    background-position: center, center;
    background-repeat: no-repeat, no-repeat;
    color: var(--white);
    text-align: center;
    overflow: hidden;
}

.hero::before {
    content: '✝';
    position: absolute;
    font-size: 300px;
    color: rgba(212, 175, 55, 0.05);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: pulse 8s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.05; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 0.08; transform: translate(-50%, -50%) scale(1.1); }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1000px;
    padding: 3rem 2rem;
    animation: fadeInUp 1s ease-out;
}

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

.hero h1 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    margin-bottom: 1.5rem;
    line-height: 1.1;
    text-shadow: 2px 4px 8px rgba(0,0,0,0.3);
}

.hero .subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    margin-bottom: 2rem;
    opacity: 0.95;
    font-weight: 300;
}

.hero-cta-box {
    background: var(--white);
    color: var(--deep-blue);
    padding: 2.5rem 3rem;
    border-radius: 20px;
    max-width: 650px;
    margin: 0 auto;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    animation: fadeInUp 1s ease-out 0.3s backwards;
}

.hero-cta-box h2 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    margin-bottom: 0.8rem;
    color: var(--deep-blue);
}

.hero-cta-box .subtitle-box {
    font-size: 1rem;
    color: var(--grey);
    margin-bottom: 2rem;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, var(--gold) 0%, #C19A2E 100%);
    color: var(--deep-blue);
    padding: 1.2rem 3rem;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.5);
}

.dj-card .dj-card-cta {
    display: block;
    width: 100%;
    margin-top: 1.25rem;
    padding: 0.75rem 1rem;
    font-size: 0.95rem;
    box-sizing: border-box;
    text-align: center;
}

.trust-line {
    margin-top: 1.5rem;
    font-size: 0.9rem;
    color: var(--grey);
}

.trust-line strong {
    color: var(--deep-blue);
}

.rating {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    margin-left: 0.5rem;
}

.rating::before {
    content: '⭐';
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Section Common */
section {
    padding: 5rem 0;
}

.section-title {
    font-size: clamp(2rem, 4vw, 2.8rem);
    text-align: center;
    margin-bottom: 1rem;
    color: var(--deep-blue);
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: var(--grey);
    margin-bottom: 4rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Editorial niche (above the fold) */
.editorial-niche {
    padding: 3rem 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.97) 0%, var(--cream) 100%);
}

.editorial-niche-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: var(--deep-blue);
    margin-bottom: 1.25rem;
    text-align: left;
}

.editorial-niche-lead {
    font-size: 1.05rem;
    line-height: 1.75;
    color: var(--grey);
    margin-bottom: 1rem;
    max-width: 52rem;
}

.editorial-niche-tip {
    margin-top: 1.5rem;
    padding: 1rem 1.25rem;
    background: rgba(37, 99, 235, 0.08);
    border: 1px solid rgba(37, 99, 235, 0.2);
    border-radius: 12px;
}

.editorial-niche-tip p {
    margin: 0;
    font-size: 0.95rem;
    color: var(--deep-blue);
}

.editorial-niche-tip a {
    color: #1d4ed8;
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.editorial-niche-tip a:hover {
    color: #1e3a8a;
}

/* DJ Cards Section */
.dj-showcase {
    background: var(--white);
}

.dj-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-bottom: 3rem;
}

.dj-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.dj-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.15);
    border-color: var(--gold);
}

.dj-image {
    width: 100%;
    height: 220px;
    background: linear-gradient(135deg, #E5E7EB 0%, #D1D5DB 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    position: relative;
}

.dj-info {
    padding: 1.8rem;
}

.dj-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.dj-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--deep-blue);
}

.specialist-badge {
    background: var(--gold);
    color: var(--deep-blue);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.verified {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    color: var(--green);
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 0.8rem;
}

.verified::before {
    content: '✓';
    width: 20px;
    height: 20px;
    background: var(--green);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: bold;
}

.rating-display {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.stars {
    color: var(--gold);
    font-size: 1.1rem;
}

.rating-score {
    font-weight: 600;
    color: var(--deep-blue);
}

.specialty {
    display: inline-block;
    background: var(--light-grey);
    color: var(--grey);
    padding: 0.4rem 1rem;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 500;
}

.formula-badge {
    display: inline-block;
    background: var(--purple);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-left: 0.5rem;
}

/* Why Compare Section */
.why-compare {
    background: var(--light-grey);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.feature-card {
    text-align: center;
    padding: 2rem;
}

.feature-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    display: block;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--deep-blue);
}

.feature-card p {
    color: var(--grey);
    line-height: 1.7;
}

/* Formulas Section */
.formulas {
    background: var(--light-gold);
}

.formulas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.formula-box {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-top: 5px solid var(--gold);
    transition: all 0.3s ease;
}

.formula-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.formula-box h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--deep-blue);
}

.formula-tag {
    display: inline-block;
    background: var(--gold);
    color: var(--deep-blue);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.formula-box p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
    color: var(--dark-grey);
}

.formula-box ul {
    list-style: none;
    margin-top: 1.5rem;
}

.formula-box ul li {
    padding: 0.6rem 0;
    padding-left: 1.8rem;
    position: relative;
    color: var(--dark-grey);
}

.formula-box ul li::before {
    content: '♪';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-size: 1.3rem;
    font-weight: bold;
}

.formula-footnote {
    margin-top: 1.5rem;
    font-weight: 600;
    color: var(--deep-blue);
}

/* Communities Section */
.communities {
    background: var(--white);
}

.communities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
}

.community-card {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    border: 2px solid transparent;
}

.community-card:hover {
    transform: scale(1.05);
    border-color: var(--gold);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.flag-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    display: block;
}

.community-card h3 {
    font-size: 1.6rem;
    margin-bottom: 0.8rem;
    color: var(--deep-blue);
}

.community-card p {
    color: var(--grey);
    font-size: 0.95rem;
    line-height: 1.6;
}

.music-styles {
    margin-top: 0.8rem;
    font-size: 0.85rem;
    font-style: italic;
    color: var(--gold);
    font-weight: 600;
}

/* Expertise Section */
.expertise {
    background: linear-gradient(135deg, var(--deep-blue) 0%, #2d3748 100%);
    color: var(--white);
}

.expertise .section-title,
.expertise .section-subtitle {
    color: var(--white);
}

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
}

.expertise-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.expertise-item:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--gold);
    transform: translateY(-5px);
}

.expertise-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    display: block;
}

.expertise-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--gold);
}

.expertise-item p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
}

/* FAQ Section */
.faq {
    background: var(--light-grey);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    margin-bottom: 1.5rem;
    border-radius: 15px;
    overflow: hidden;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
}

.faq-item:hover {
    border-color: var(--gold);
}

.faq-question {
    padding: 1.5rem 2rem;
    cursor: pointer;
    font-weight: 600;
    color: var(--deep-blue);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.05rem;
}

.faq-question::after {
    content: '+';
    font-size: 2rem;
    color: var(--gold);
    transition: transform 0.3s ease;
    font-weight: 300;
}

.faq-item.active .faq-question::after {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 2rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    color: var(--grey);
}

.faq-item.active .faq-answer {
    padding: 0 2rem 1.5rem;
    max-height: 600px;
}

/* Final CTA */
.final-cta {
    background: linear-gradient(135deg, var(--purple) 0%, var(--deep-blue) 100%);
    color: var(--white);
    text-align: center;
    padding: 6rem 2rem;
}

.final-cta h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1.5rem;
}

.final-cta p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
}

.cta-button-white {
    background: var(--white);
    color: var(--purple);
}

.cta-button-white:hover {
    background: var(--gold);
    color: var(--deep-blue);
}

/* Footer */
footer {
    background: var(--deep-blue);
    color: var(--white);
    padding: 3rem 2rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
}

.footer-section h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--gold);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.6rem;
}

.footer-section a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--gold);
}

.footer-bottom {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.6);
}

/* Sections sémantiques catégorie (moments, nuancier, lieux, matrice, erreurs, villes) */
.category-section-head {
    text-align: center;
    max-width: 48rem;
    margin: 0 auto 2.5rem;
}

.category-kicker {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--purple);
    margin-bottom: 0.75rem;
}

.category-moments,
.category-music-styles,
.category-venues,
.category-matrix,
.category-mistakes,
.category-geo-cities {
    padding: 4rem 0;
    background: var(--light-grey);
}

.category-music-styles,
.category-matrix {
    background: var(--white);
}

.category-moments__intro {
    max-width: 52rem;
    margin: 0 auto 2.5rem;
    text-align: center;
    font-size: 1.05rem;
    line-height: 1.75;
    color: var(--grey);
}

.category-moments__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
}

.category-moment-card {
    background: var(--white);
    border-radius: 1.25rem;
    padding: 1.75rem;
    border: 1px solid rgba(26, 35, 50, 0.08);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    text-align: center;
}

.category-moment-card__emoji {
    font-size: 2rem;
    margin-bottom: 0.75rem;
    display: block;
}

.category-moment-card h3 {
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
    font-family: 'Inter', sans-serif;
}

.category-moment-card p {
    font-size: 0.9rem;
    color: var(--grey);
    line-height: 1.65;
}

.category-music-chips {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
    list-style: none;
    padding: 0;
    margin: 0;
    max-width: 56rem;
    margin-inline: auto;
}

.category-music-chip {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 0.2rem;
    padding: 0.65rem 1.15rem;
    border-radius: 999px;
    background: var(--white);
    border: 1px solid rgba(212, 175, 55, 0.45);
    box-shadow: 0 2px 8px rgba(26, 35, 50, 0.06);
}

.category-music-chip__label {
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--deep-blue);
}

.category-music-chip__context {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--gold);
    font-weight: 600;
}

.category-venues__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
}

.category-venue-card {
    background: var(--white);
    border-radius: 1.25rem;
    padding: 1.75rem;
    border: 1px solid rgba(124, 58, 237, 0.12);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
}

.category-venue-card__emoji {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
    display: block;
}

.category-venue-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.35rem;
    font-family: 'Inter', sans-serif;
}

.category-venue-card__subtitle {
    font-size: 0.85rem;
    color: var(--purple);
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.category-venue-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.category-venue-card li {
    font-size: 0.9rem;
    color: var(--grey);
    padding: 0.35rem 0;
    border-bottom: 1px solid rgba(26, 35, 50, 0.06);
}

.category-venue-card li:last-child {
    border-bottom: none;
}

.category-matrix__wrap {
    overflow-x: auto;
    border-radius: 1rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.category-matrix__table {
    width: 100%;
    min-width: 520px;
    border-collapse: collapse;
    background: var(--white);
    font-size: 0.92rem;
}

.category-matrix__table th,
.category-matrix__table td {
    padding: 1rem 1.25rem;
    text-align: left;
    border-bottom: 1px solid rgba(26, 35, 50, 0.08);
}

.category-matrix__table th {
    background: var(--deep-blue);
    color: var(--white);
    font-weight: 600;
    font-family: 'Inter', sans-serif;
}

.category-matrix__table tbody tr:nth-child(even) {
    background: var(--light-grey);
}

.category-mistakes__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.25rem;
}

.category-mistake-card {
    background: var(--white);
    border-left: 4px solid var(--gold);
    border-radius: 0 1rem 1rem 0;
    padding: 1.5rem;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
}

.category-mistake-card h3 {
    font-size: 1.05rem;
    margin-bottom: 0.5rem;
    font-family: 'Inter', sans-serif;
    color: var(--deep-blue);
}

.category-mistake-card p {
    font-size: 0.9rem;
    color: var(--grey);
    line-height: 1.65;
}

.category-geo-cities__list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem 1.25rem;
    list-style: none;
    padding: 0;
    margin: 0;
    max-width: 56rem;
    margin-inline: auto;
}

.category-geo-cities__list a {
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: 999px;
    background: var(--white);
    color: var(--deep-blue);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    border: 1px solid rgba(124, 58, 237, 0.2);
    transition: background 0.2s ease, color 0.2s ease;
}

.category-geo-cities__list a:hover {
    background: var(--purple);
    color: var(--white);
    border-color: var(--purple);
}

/* Responsive */
@media (max-width: 768px) {
    .hero-cta-box {
        padding: 2rem 1.5rem;
    }

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

    section {
        padding: 3rem 0;
    }
}
