@import url('https://fonts.googleapis.com/css2?family=Lato:wght@400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700&display=swap');
@import url('https://api.fontshare.com/v2/css?f[]=the-seasons@400&display=swap');

body {
    margin: 0;
    font-family: 'Lato', sans-serif;
    background-color: #eae6df; /* Teinte douce inspirée papier */
    color: #2c2c2c;
    line-height: 1.6;
}

/* Header */
header {
    background-color: #2f2f2f;
    color: #fff;
    padding: 2rem 1rem;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    border-bottom: 2px solid #b49c73; /* Accent doré */
}

.menu-centre ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 2rem;
    padding: 0;
    margin-top: 1rem;
}

.menu-centre a {
    text-decoration: none;
    font-size: 1.1rem;
    color: #fff;
    font-weight: 600;
    position: relative;
    transition: color 0.3s ease;
}

.menu-centre a::after {
    content: "";
    position: absolute;
    bottom: -4px;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: #b49c73;
    transition: width 0.3s ease, left 0.3s ease;
}

.menu-centre a:hover {
    color: #fff;
}

.menu-centre a:hover::after {
    width: 100%;
    left: 0;
}

/* Section sombre */
.section-dark {
    background-color: #2f2f2f;
    color: #f0f0f0;
}

.section-dark h2 {
    color: #b49c73;
}

/* Rectangles présentation */
.rectangle-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    padding: 60px 20px;
}

.rectangle {
    background-color: #fdfdfd;
    color: #2c2c2c;
    padding: 30px;
    width: 45%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-radius: 12px;
}

.rectangle h2 {
    font-family: 'Playfair Display', serif;
    color: #b49c73;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.rectangle p {
    font-size: 1.15rem;
    color: #444;
    line-height: 1.7;
}

/* Intro */
.intro-section {
    padding: 60px 20px;
    text-align: center;
    background-color: #f8f7f5;
}

.intro-text h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    color: #222;
    margin-bottom: 20px;
}

.intro-box {
    background-color: #fff;
    padding: 30px;
    margin-bottom: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.08);
}

.intro-box h2 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 15px;
}

.intro-box p {
    font-size: 1.15rem;
    color: #555;
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto;
}

/* Photos */
.photo-preview {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
}

.photo-preview img {
    width: 250px;
    height: 150px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.photo-preview img:hover {
    transform: scale(1.05);
}

/* Bouton */
.btn-principal {
    display: inline-block;
    background-color: #b49c73;
    color: #fff;
    padding: 14px 35px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-family: 'Playfair Display', serif;
    transition: background-color 0.3s ease;
}

.btn-principal:hover {
    background-color: #a08864;
}

/* Bloc CTA sombre */
.dark-block {
    background-color: #2f2f2f;
    color: #f5f5f5;
    padding: 60px 20px;
    text-align: center;
}

.dark-block h1,
.dark-block h2,
.dark-block p {
    color: #f5f5f5;
}

.dark-block h2 {
    color: #b49c73;
}

/* Citations */
.phrase-passion,
.phrase-creativite {
    font-family: 'The Seasons', serif;
    font-size: 1.4rem;
    font-style: italic;
    color: #222;
    text-align: center;
    margin-bottom: 20px;
}

/* Footer */
footer {
    background-color: #2f2f2f;
    color: #f0f0f0;
    padding: 30px 20px;
    text-align: center;
    font-size: 0.9rem;
}

.footer-content {
    max-width: 800px;
    margin: 0 auto;
}

.social-links {
    margin-top: 15px;
}

.social-links a {
    color: #b49c73;
    text-decoration: none;
    margin: 0 10px;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #fff;
}
