body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(to bottom right, #FFFBF0, #E0F7FF); /* pastel solaire */
    color: #333;
    margin: 0;
    min-height: 100vh;
    overflow-x: hidden;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background: transparent;
    position: relative;
    z-index: 10;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
}

nav {
    display: flex;
    align-items: center;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 15px;
    margin-right: 20px;
}

.nav-links a {
    background: #F7CFE3;
    color: #2B2B2B;
    padding: 10px 16px;
    border-radius: 999px;
    font-size: 0.9rem;
    text-decoration: none;
    display: inline-block;
    transition: all 0.25s ease;
}

.nav-links a:hover {
    transform: translateY(-2px);
    background: #D6E8FF;
}

.cta {
    background: linear-gradient(135deg, #FFF2B3, #F7CFE3);
    color: #2B2B2B;
    padding: 10px 22px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 8px 20px rgba(247, 207, 227, 0.35);
    transition: all 0.25s ease;
}

.cta:hover {
    transform: translateY(-2px);
}

.light-rays {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
}

.ray {
    position: absolute;
    top: -150%;
    width: 2px;
    height: 400%;
    background: linear-gradient(
            to bottom,
            rgba(255, 192, 203, 0),
            rgba(255, 192, 203, 0.4),
            rgba(255, 182, 193, 0.7),
            rgba(255, 192, 203, 0.4),
            rgba(255, 192, 203, 0)
    );
    filter: blur(2px);
    animation: animateRay 8s linear infinite;
    transform: rotate(25deg);
}

@keyframes animateRay {
    0% { top: -150%; }
    100% { top: 100%; }
}

.contact-page {
    max-width: 1000px;
    margin: 100px auto 50px;
    padding: 0 20px;
    text-align: center;
}

.contact-intro h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: #FFB6C1;
    margin-bottom: 10px;
}

.contact-intro p {
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 50px;
}

.contact-infos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
}

.info-card {
    background: #FFF5BA; /* jaune pastel */
    padding: 30px 20px;
    border-radius: 20px;
    width: 250px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.info-card:hover {
    transform: translateY(-5px);
}

.info-card img {
    width: 100%;
    margin-bottom: 15px;
}

.info-card h2 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #FFB6C1;
}

.info-card a {
    color: #333;
    text-decoration: none;
    font-weight: 500;
}

.info-card a:hover {
    text-decoration: underline;
}

footer {
    margin-top: 80px;
    padding: 20px;
    text-align: center;
    color: #555;
}

.logo img {
    width: 90px;
    height: auto;
    display: block;
}