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

body {
    background-color: #FEF9F0;
    color: #1E1E1E;
    font-family: 'Roboto', sans-serif;
    line-height: 1.5;
    font-weight: 400;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem 1.5rem 3rem;
}

/* Header / Logo */
header {
    text-align: center;
    margin-bottom: 2rem;
}

.logo {
    display: inline-block;
}

.logo h1 {
    font-family: 'Sarabun', serif;
    font-size: 3.2rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, #C1121F 0%, #C4A747 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.logo .mirror {
    font-weight: 400;
    opacity: 0.6;
    background: linear-gradient(135deg, #C4A747 0%, #C1121F 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.acronym {
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #C1121F;
    margin-top: 0.5rem;
    font-weight: 500;
}

/* Langue switcher */
.lang-switcher {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 0.5rem 0;
    text-align: center;
}

.lang-switcher a {
    text-decoration: none;
    color: #1E3A5F;
    font-size: 0.85rem;
}

.lang-switcher a:hover {
    color: #C1121F;
}

/* Navigation */
.main-nav {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin: 1.5rem 0 0;
    padding: 1rem 0;
    border-top: 1px solid rgba(196, 167, 71, 0.3);
    border-bottom: 1px solid rgba(196, 167, 71, 0.3);
}

.main-nav a {
    color: #1E3A5F;
    text-decoration: none;
    font-weight: 500;
    font-family: 'Roboto', sans-serif;
    transition: color 0.2s;
}

.main-nav a:hover {
    color: #C1121F;
}

/* Hero */
.hero {
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid rgba(193, 18, 31, 0.2);
}

.hero h2 {
    font-family: 'Sarabun', serif;
    font-size: 3.5rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: #C1121F;
    margin-bottom: 0.5rem;
}

.subtitle {
    font-size: 1.3rem;
    font-weight: 500;
    color: #C4A747;
    margin-bottom: 0.75rem;
}

.slogan {
    font-size: 1.2rem;
    font-weight: 300;
    font-style: italic;
    color: #1E3A5F;
}

/* Sections */
.intro, .audience, .program, .goal, .teaser {
    margin-bottom: 2.5rem;
}

h3 {
    font-family: 'Sarabun', serif;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #C1121F;
    border-left: 4px solid #C4A747;
    padding-left: 1rem;
}

.intro p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #2D2D3A;
}

.audience ul, .program ul {
    list-style: none;
    padding-left: 1.5rem;
}

.audience li, .program li {
    margin-bottom: 0.75rem;
    position: relative;
    line-height: 1.5;
    color: #2D2D3A;
}

.audience li::before {
    content: "🎬";
    position: absolute;
    left: -1.5rem;
    color: #C1121F;
}

.program li::before {
    content: "✨";
    position: absolute;
    left: -1.5rem;
    color: #C1121F;
}

.goal p {
    font-size: 1.05rem;
    line-height: 1.6;
    color: #1E3A5F;
    background: rgba(196, 167, 71, 0.1);
    padding: 1.2rem 1.5rem;
    border-radius: 16px;
    border-left: 4px solid #C4A747;
}

/* Vote teaser */
.vote-teaser {
    text-align: center;
    margin: 3rem 0 2rem;
    padding: 2rem;
    background: #FFFFFF;
    border-radius: 24px;
    border: 1px solid #C4A747;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.vote-teaser h3 {
    font-family: 'Sarabun', serif;
    font-size: 1.6rem;
    color: #C1121F;
    margin-bottom: 1rem;
    border-left: none;
    padding-left: 0;
}

/* Festival vote (soutien) */
.festival-vote {
    text-align: center;
    margin: 3rem 0 2rem;
    padding: 2rem;
    background: #FFFFFF;
    border-radius: 24px;
    border: 1px solid #C4A747;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.festival-vote h3 {
    font-family: 'Sarabun', serif;
    font-size: 1.6rem;
    color: #C1121F;
    margin-bottom: 1rem;
    border-left: none;
    padding-left: 0;
}

.festival-vote p {
    margin-bottom: 1rem;
    color: #1E1E1E;
}

.vote-festival-btn {
    display: inline-block;
    background: #C1121F;
    color: white;
    padding: 0.8rem 1.8rem;
    border-radius: 40px;
    border: none;
    font-family: 'Roboto', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.2s;
    margin-top: 0.5rem;
}

.vote-festival-btn:hover {
    background: #1E3A5F;
}

.vote-counter {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: #1E3A5F;
}

.logo-sample {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin: 1.5rem 0;
}

.logo-sample img {
    max-width: 100px;
    height: auto;
    background: white;
    padding: 0.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: transform 0.2s;
}

.logo-sample img:hover {
    transform: scale(1.05);
}

.vote-button {
    display: inline-block;
    background: #C1121F;
    color: white !important;
    padding: 0.8rem 1.8rem;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    margin-top: 0.5rem;
    transition: background 0.2s;
}

.vote-button:hover {
    background: #1E3A5F;
}

/* Formulaire */
.teaser h3 {
    border-left-color: #C4A747;
}

.teaser p {
    margin-bottom: 1.2rem;
    color: #1E1E1E;
}

.form-group {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: flex-start;
}

.form-group input {
    flex: 1;
    min-width: 220px;
    padding: 1rem;
    background: #FFFFFF;
    border: 1px solid #C4A747;
    border-radius: 12px;
    color: #1E1E1E;
    font-family: 'Roboto', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: #C1121F;
    box-shadow: 0 0 0 3px rgba(193, 18, 31, 0.1);
}

.form-group button {
    padding: 1rem 2rem;
    background: #C1121F;
    border: none;
    border-radius: 12px;
    color: white;
    font-family: 'Roboto', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.form-group button:hover {
    background: #1E3A5F;
    transform: translateY(-2px);
    box-shadow: 0 6px 14px rgba(30, 58, 95, 0.3);
}

.form-group button:active {
    transform: translateY(0);
}

.form-message {
    margin-top: 1rem;
    padding: 0.75rem;
    border-radius: 12px;
    font-size: 0.9rem;
    text-align: center;
}

.form-message.success {
    background: rgba(196, 167, 71, 0.1);
    border: 1px solid #C4A747;
    color: #C4A747;
}

.form-message.error {
    background: rgba(193, 18, 31, 0.1);
    border: 1px solid #C1121F;
    color: #C1121F;
}

/* Footer */
footer {
    margin-top: 3rem;
    padding-top: 2rem;
    text-align: center;
    font-size: 0.8rem;
    color: #8A8A9A;
    border-top: 1px solid rgba(193, 18, 31, 0.2);
}

footer a {
    color: #C1121F;
    text-decoration: none;
    transition: color 0.2s;
}

footer a:hover {
    color: #C4A747;
}

footer p {
    margin-bottom: 0.5rem;
}



/* Responsive général */
@media (max-width: 640px) {
    .container {
        padding: 1.5rem 1rem;
    }
    
    .hero h2 {
        font-size: 2.2rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    .slogan {
        font-size: 1rem;
    }
    
    h3 {
        font-size: 1.2rem;
    }
    
    .form-group {
        flex-direction: column;
    }
    
    .form-group button {
        width: 100%;
    }
    
    .logo h1 {
        font-size: 2.2rem;
    }
    
    .main-nav {
        gap: 1rem;
        font-size: 0.85rem;
    }
    
    .logo-sample img {
        max-width: 70px;
    }
	
	/* FORCE LES STYLES DU TABLEAU - À GARDER À LA FIN */
.schedule-table {
    border-collapse: collapse !important;
    width: 100% !important;
    background: #FFFFFF !important;
    border: 2px solid #C4A747 !important;
    border-radius: 20px !important;
    overflow: hidden !important;
}

.schedule-table th,
.schedule-table td {
    border: 1px solid #E0D5B5 !important;
    padding: 1rem !important;
}

.schedule-table th {
    background: #C1121F !important;
    color: white !important;
}

.schedule-table .day-cell {
    background: #FEF9F0 !important;
    text-align: center !important;
}

.schedule-table .activities-cell {
    background: #FFFFFF !important;
}

@media (max-width: 768px) {
    .schedule-table,
    .schedule-table thead,
    .schedule-table tbody,
    .schedule-table tr,
    .schedule-table th,
    .schedule-table td {
        display: block !important;
    }
    .schedule-table thead {
        display: none !important;
    }
    .schedule-table tr {
        margin-bottom: 1.5rem !important;
        border: 2px solid #C4A747 !important;
        border-radius: 20px !important;
        background: #FFFFFF !important;
    }
    .schedule-table td {
        display: block !important;
        width: 100% !important;
        border: none !important;
        border-bottom: 1px solid #E0D5B5 !important;
    }
    .schedule-table td:last-child {
        border-bottom: none !important;
    }
    .schedule-table .day-cell {
        border-bottom: 2px solid #C4A747 !important;
    }

}