/* --- SECTIONS GLOBALES --- */
section {
    padding: 6rem 5%;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    font-weight: 400;
}

/* --- ABOUT SECTION --- */
.about {
    text-align: center;
    background-color: var(--white);
}

.about h2 {
    font-family: var(--font-serif);
    font-size: 2.2rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
}

.lead-text {
    font-size: 1.15rem;
    color: var(--muted-color);
    max-width: 750px;
    margin: 0 auto;
    font-weight: 300;
}

/* --- GRID 3 COLONNES (CHAMBRES) --- */
.grid-3 {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.card {
    flex: 1;
    min-width: 300px;
    background: var(--white);
    border: 1px solid #EAEAEA;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.05);
}

.card-img {
    height: 240px;
    overflow: hidden;
}

.card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.card:hover .card-img img {
    transform: scale(1.05);
}

.card-content {
    padding: 2rem;
}

.card-content h3 {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    margin-bottom: 0.75rem;
}

.card-content p {
    font-size: 0.9rem;
    color: var(--muted-color);
    margin-bottom: 1.5rem;
}

.features {
    list-style: none;
    display: flex;
    gap: 1rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #EAEAEA;
    margin-bottom: 1.5rem;
    font-size: 0.8rem;
    color: var(--muted-color);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.card-link {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* --- SEMINAIRES --- */
.seminaires {
    background-color: #F2F1ED;
}

.seminaires-wrapper {
    display: flex;
    align-items: center;
    gap: 4rem;
    flex-wrap: wrap;
}

.seminaires-text {
    flex: 1;
    min-width: 320px;
}

.seminaires-text h2 {
    font-family: var(--font-serif);
    font-size: 2.3rem;
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.seminaires-text p {
    color: var(--muted-color);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.stats-grid {
    display: flex;
    gap: 3rem;
    margin-bottom: 2.5rem;
}

.stat-num {
    display: block;
    font-family: var(--font-serif);
    font-size: 2.5rem;
    color: var(--accent-color);
}

.stat-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--muted-color);
}

.seminaires-img {
    flex: 1;
    min-width: 320px;
    height: 400px;
}

.seminaires-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.btn-secondary {
    display: inline-block;
    padding: 1rem 2rem;
    background: var(--text-color);
    color: var(--white);
    text-decoration: none;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: background 0.3s ease;
}

.btn-secondary:hover {
    background: var(--accent-color);
}

/* --- FOOTER --- */
.footer {
    background: #111111;
    color: var(--white);
    padding: 5rem 5% 2rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 3rem;
    flex-wrap: wrap;
    margin-bottom: 4rem;
}

.footer-logo {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    color: var(--white);
    text-decoration: none;
    letter-spacing: 2px;
    display: inline-block;
    margin-bottom: 1rem;
}

.footer-col p {
    color: #888;
    font-size: 0.9rem;
}

.footer-col h4 {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    color: var(--accent-color);
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 0.75rem;
}

.footer-col ul li a {
    color: #888;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: var(--white);
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid #222;
    padding-top: 2rem;
    font-size: 0.8rem;
    color: #666;
}/* --- RESTAURATION --- */
.restaurant {
    background-color: var(--white);
}

.grid-2 {
    display: flex;
    gap: 2.5rem;
    flex-wrap: wrap;
}

.card-resto {
    flex: 1;
    min-width: 320px;
}

.resto-img {
    height: 320px;
    overflow: hidden;
    margin-bottom: 1.5rem;
}

.resto-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.card-resto:hover .resto-img img {
    transform: scale(1.03);
}

.resto-info h3 {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    margin-bottom: 0.5rem;
}

.resto-info p {
    color: var(--muted-color);
    margin-bottom: 1rem;
    font-size: 0.95rem;
}