/* Fichier: css/style.css */
:root {
    --primary: #c9a84c;
    --primary-light: #e8d5b7;
    --primary-dark: #a8893a;
    --secondary: #4a6fa5;
    --gold: #d4af37;
    --cream: #f9f4eb;
    --white: #ffffff;
    --gray: #7a7a7a;
    --text: #3d3d3d;
    --shadow: 0 4px 20px rgba(0,0,0,0.08);
    --radius: 16px;
}

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

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    color: var(--text);
    background: var(--cream);
    line-height: 1.6;
}

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

/* Header */
.header {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 100;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon { font-size: 28px; }
.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-dark);
}

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

.nav-link {
    color: var(--text);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s;
}
.nav-link:hover { color: var(--primary); }

/* Buttons */
.btn-primary {
    background: var(--primary);
    color: var(--white);
    padding: 10px 24px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: background 0.3s, transform 0.2s;
    display: inline-block;
}
.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.btn-hero {
    background: var(--primary);
    color: var(--white);
    padding: 16px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: background 0.3s, transform 0.2s;
    display: inline-block;
    border: none;
    cursor: pointer;
}
.btn-hero:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
}

.btn-secondary {
    background: transparent;
    color: var(--secondary);
    padding: 14px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    border: 2px solid var(--secondary);
    transition: all 0.3s;
    display: inline-block;
}
.btn-secondary:hover {
    background: var(--secondary);
    color: var(--white);
}

/* Hero */
.hero {
    padding: 60px 0 80px;
    background: linear-gradient(135deg, #fdf8f0 0%, #f5ede0 100%);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-badge {
    display: inline-block;
    background: var(--primary-light);
    color: var(--primary-dark);
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    line-height: 1.2;
    font-weight: 700;
    margin-bottom: 16px;
}
.hero-title .highlight {
    color: var(--primary);
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--gray);
    margin-bottom: 32px;
    max-width: 500px;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.hero-info {
    color: var(--gray);
    font-size: 0.9rem;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}
.hero-img {
    max-width: 100%;
    width: 350px;
    height: auto;
}

/* Sections */
.section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 48px;
}

.section-tag {
    display: inline-block;
    background: var(--primary-light);
    color: var(--primary-dark);
    padding: 4px 16px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text);
}
.section-title.text-center { text-align: center; }

/* Grids */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

/* Cards */
.card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 32px;
    box-shadow: var(--shadow);
    transition: transform 0.3s, box-shadow 0.3s;
}
.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.card-audience {
    text-align: center;
}
.card-audience .card-icon {
    font-size: 48px;
    margin-bottom: 16px;
}
.card-audience h3 {
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: var(--primary-dark);
}
.card-audience p {
    color: var(--gray);
    font-size: 0.95rem;
}

/* Gallery */
.section-gallery {
    background: var(--white);
}
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}
.gallery-card {
    text-align: center;
    padding: 24px;
    border-radius: var(--radius);
    background: var(--cream);
    transition: transform 0.3s;
}
.gallery-card:hover { transform: translateY(-4px); }
.gallery-img {
    width: 100%;
    max-height: 180px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 16px;
}
.gallery-card h4 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: var(--primary-dark);
}
.gallery-card p {
    color: var(--gray);
    font-size: 0.9rem;
}

/* Program */
.section-program {
    background: linear-gradient(135deg, #f5ede0 0%, #fdf8f0 100%);
}
.program-grid {
    max-width: 700px;
    margin: 0 auto;
}
.program-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: var(--white);
    border-radius: var(--radius);
    padding: 20px 24px;
    margin-bottom: 12px;
    box-shadow: var(--shadow);
    transition: transform 0.3s;
}
.program-item:hover { transform: translateX(4px); }
.program-time {
    font-weight: 700;
    color: var(--primary);
    white-space: nowrap;
    font-size: 0.9rem;
    min-width: 70px;
    padding-top: 2px;
}
.program-content h4 {
    font-size: 1rem;
    margin-bottom: 4px;
}
.program-content p {
    color: var(--gray);
    font-size: 0.9rem;
    margin: 0;
}

/* FAQ */
.section-faq {
    background: var(--white);
}
.faq-list {
    max-width: 700px;
    margin: 0 auto;
}
.faq-item {
    border-bottom: 1px solid #eee;
    padding: 8px 0;
}
.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    padding: 16px 0;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text);
    cursor: pointer;
    font-family: inherit;
    text-align: left;
    transition: color 0.3s;
}
.faq-question:hover { color: var(--primary); }
.faq-icon {
    font-size: 1.3rem;
    color: var(--primary);
    font-weight: 300;
}
.faq-answer {
    display: none;
    padding: 0 0 20px 0;
    color: var(--gray);
    line-height: 1.7;
}
.faq-answer p { margin: 0; }

/* Footer */
.footer {
    background: var(--text);
    color: var(--cream);
    padding: 40px 0;
    text-align: center;
}
.footer-verse {
    margin-top: 8px;
    font-style: italic;
    opacity: 0.8;
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 992px) {
    .hero-grid { grid-template-columns: 1fr; text-align: center; }
    .hero-subtitle { margin: 0 auto 32px; }
    .hero-actions { justify-content: center; }
    .grid-3 { grid-template-columns: repeat(2, 1fr); }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
    .navbar { flex-direction: column; gap: 12px; }
    .nav-links { flex-wrap: wrap; justify-content: center; }
    .hero-title { font-size: 2rem; }
    .hero { padding: 40px 0 60px; }
    .grid-3 { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: 1fr; }
    .program-item { flex-direction: column; gap: 8px; }
    .section { padding: 50px 0; }
    .section-title { font-size: 1.8rem; }
}