/* Style pour Cylmea - Prothésiste Ongulaire et Ciliaire */

body {
    font-family: 'Lato', sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    color: #f0e8f2;
    background: linear-gradient(180deg, #070b16 0%, #101628 45%, #0a0f1e 100%);
}

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

header {
    position: relative;
    background-color: #0b0f1f;
    background-image: url('../images/burgundy-bg.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 60px 0 80px;
    text-align: center;
    overflow: hidden;
}

header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(5, 9, 18, 0.45), rgba(8, 10, 18, 0.72));
    pointer-events: none;
}

.overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top center, rgba(255,255,255,0.04), transparent 30%);
    pointer-events: none;
}

.hero-card {
    position: relative;
    display: inline-flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 25px;
    background: rgba(10, 14, 28, 0.48);
    border: 1px solid rgba(170, 178, 211, 0.12);
    border-radius: 28px;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.72);
    padding: 28px 34px;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
}

.logo {
    max-width: 180px;
    height: auto;
    display: block;
}

.logo-container {
    background: rgba(34, 40, 64, 0.94);
    border: 1px solid rgba(171, 179, 206, 0.20);
    padding: 22px;
    border-radius: 24px;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.04), 0 16px 30px rgba(0,0,0,0.20);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.logo {
    max-width: 186px;
    height: auto;
    display: block;
    filter: drop-shadow(0 0 14px rgba(255,255,255,0.72));
}

.hero-text {
    color: #7A001F;
}


.hero-text h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3em;
    margin: 0;
    letter-spacing: 0.04em;
}

.hero-text p {
    font-size: 1.1em;
    margin: 10px 0 0;
    opacity: 0.92;
}


main {
    padding: 40px 0;
}

section {
    margin-bottom: 40px;
    text-align: center;
}

section .container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

#gallery p {
    margin-bottom: 15px;
}


h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2em;
    color: #7A001F;
    text-align: center;
    margin-bottom: 20px;
}

ul {
    list-style-type: none;
    padding: 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

ul li {
    background: rgba(16, 22, 42, 0.88);
    margin: 10px 0;
    padding: 18px;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.22);
    border: 1px solid rgba(115, 122, 169, 0.16);
    max-width: 400px;
    width: 100%;
}

.tarifs-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
    margin-top: 30px;
    justify-items: center;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.tarif-item {
    background: rgba(16, 22, 42, 0.90);
    padding: 20px;
    border-radius: 18px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.22);
    border: 1px solid rgba(115, 122, 169, 0.16);
    text-align: center;
    overflow: hidden;
    width: 100%;
    max-width: 450px;
}

.tarif-item h3 {
    color: #d9b8cf;
    font-family: 'Playfair Display', serif;
    font-size: 1.5em;
    margin-bottom: 15px;
}

.tarif-image {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.30);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tarif-image:hover {
    transform: scale(1.02);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35);
}

.btn {
    display: inline-block;
    background-color: #800020;
    color: white;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 5px;
    margin: 12px;
    transition: background-color 0.3s;
}

.btn:hover {
    background-color: #a0002a;
}

#contact {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

#contact .container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

#contact p {
    margin-bottom: 20px;
}

footer {
    background-color: #800020;
    color: white;
    text-align: center;
    padding: 20px 0;
}

footer p {
    margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
    header {
        padding: 40px 0 60px;
    }
    .hero-card {
        flex-direction: column;
        padding: 24px 20px;
    }
    .hero-text h1 {
        font-size: 2.2em;
    }
    .logo {
        max-width: 140px;
    }
    .logo-container {
        padding: 12px;
    }
    .pdf-container {
        padding: 16px;
    }
    embed {
        height: 360px;
    }
    .tarifs-gallery {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 10px;
    }
    .tarif-item {
        padding: 16px;
        max-width: 100%;
    }
    ul li {
        max-width: 100%;
    }
}
