:root {
    --rose: #f8d4e3;
    --rose-fonce: #e8b4cb;
    --dore: #d4af9c;
    --blanc: #ffffff;
    --noir: #333333;
    --font-title: 'Great Vibes', cursive;
    --font-text: 'Montserrat', sans-serif;
}

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

body {
    font-family: var(--font-text);
    background-color: var(--blanc);
    color: var(--noir);
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.header {
    background: linear-gradient(135deg, var(--rose) 0%, var(--rose-fonce) 100%);
    padding: 20px 0 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
    clip-path: polygon(0 0, 100% 0, 100% 90%, 0 100%);
}

.logo-container {
    position: relative;
    margin: 0 auto;
    width: 100%;
    max-width: 400px;
    z-index: 2;
    display: flex;
    justify-content: center;
}

.logo-image {
    width: 100%;
    max-width: 400px;
    height: auto;
    filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.1));
    transition: transform 0.3s ease;
}

.logo-image:hover {
    transform: scale(1.02);
}

.section {
    padding: 3rem 0;
}

.section-title {
    text-align: center;
    font-family: var(--font-title);
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--rose-fonce);
}

.about-text p,
.pricing-note {
    text-align: justify;
    margin-bottom: 1.2em;
    hyphens: auto;
    line-height: 1.7;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.about-img {
    flex: 1;
    min-width: 300px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.about-img img {
    width: 100%;
    height: auto;
    display: block;
}

.about-text {
    flex: 1;
    min-width: 300px;
    background-color: var(--rose);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.gallery-item {
    background-color: var(--blanc);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
    cursor: pointer;
}

.gallery-item:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.gallery-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.gallery-caption {
    padding: 15px;
    text-align: center;
    background-color: var(--rose);
    margin-top: 0;
    font-size: 0.95rem;
    line-height: 1.5;
}

.pricing-table {
    background-color: var(--rose);
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    margin: 0 auto;
    max-width: 1200px;
}

.pricing-table table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    margin: 1.5em auto;
}

.pricing-table th,
.pricing-table td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid var(--dore);
    vertical-align: middle;
}

.pricing-table th {
    background-color: var(--dore);
    color: var(--blanc);
}

/* Vignettes réseaux sociaux */
.social-vignettes {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.social-vignette {
    width: 120px;
    height: 120px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    background-color: var(--blanc);
}

.social-vignette:hover {
    transform: translateY(-5px);
}

.social-vignette img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.social-vignette a {
    display: block;
    height: 100%;
}

.footer {
    background-color: var(--rose-fonce);
    color: var(--blanc);
    text-align: center;
    padding: 20px 0;
    margin-top: 40px;
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 1000;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    border-radius: 5px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

.lightbox-caption {
    color: var(--blanc);
    text-align: center;
    margin-top: 15px;
    font-size: 1.1rem;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: var(--blanc);
    font-size: 2.5rem;
    cursor: pointer;
    transition: color 0.3s;
}

.lightbox-close:hover {
    color: var(--dore);
}

/* Responsive */
@media (max-width: 768px) {
    .header {
        padding: 15px 0 30px;
    }

    .logo-image {
        max-width: 280px;
    }

    .about-content {
        flex-direction: column;
    }

    .pricing-table th,
    .pricing-table td {
        padding: 10px 5px;
        font-size: 0.9rem;
    }

    .gallery-item img {
        height: 180px;
    }

    .social-vignettes {
        gap: 20px;
    }

    .social-vignette {
        width: 100px;
        height: 100px;
    }
}

