/* Palette de couleurs Carcassonne.online */
:root {
    --primary-color: #2c3e50; /* Bleu nuit profond */
    --secondary-color: #e74c3c; /* Rouge tuile */
    --light-bg: #ecf0f1; /* Gris très clair */
    --dark-text: #34495e; /* Gris ardoise */
    --light-text: #ffffff;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--light-bg);
    color: var(--dark-text);
}

.navbar-dark {
    background-color: var(--primary-color) !important;
}

.hero-section {
    background: url('../images/hero-bg.jpg') no-repeat center center;
    background-size: cover;
    color: var(--light-text);
    padding: 100px 0;
    text-align: center;
    position: relative;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

.hero-section h1 {
    font-size: 4rem;
    font-weight: 700;
}

.footer {
    background-color: var(--primary-color);
    color: var(--light-text);
}
