@import url('https://fonts.googleapis.com/css2?family=Great+Vibes&family=Playfair+Display:ital,wght@0,400;0,600;0,700&family=Poppins:wght@300;400;500;600&display=swap');

:root {
    --primary-pink: #ffb6c1; 
    --secondary-pink: #FFF0F5; 
    --hot-pink: #f48fb1; 
    --bordeaux: #7a1b26; 
    --text-color: #4a4a4a;
    --bg-color: #fafafa;
    --white: #ffffff;
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.5);
    --shadow-girly: 0 15px 35px rgba(244, 143, 177, 0.2);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Poppins', sans-serif; background-color: var(--bg-color); color: var(--text-color); overflow-x: hidden; }

body::before, body::after { content: ''; position: fixed; border-radius: 50%; filter: blur(90px); z-index: -1; opacity: 0.4; pointer-events: none;}
body::before { top: -10%; left: -10%; width: 300px; height: 300px; background: var(--hot-pink); }
body::after { bottom: -10%; right: -10%; width: 400px; height: 400px; background: var(--primary-pink); }

h1, h2, h3, h4 { font-family: 'Playfair Display', serif; color: var(--bordeaux); text-align: center; }
h1 { font-size: clamp(2.5rem, 6vw, 4rem); line-height: 1.1; margin-bottom: 15px; }
h2 { font-size: clamp(2rem, 5vw, 3rem); margin-bottom: 30px; position: relative; }

.slogan { font-family: 'Great Vibes', cursive; color: var(--hot-pink); font-size: clamp(2rem, 4vw, 3rem); text-align: center; margin-bottom: 30px; }

/* BRAND FONT UTILITY (Playfair Display pour le menu hamburger) */
.brand-font {
    font-family: 'Playfair Display', serif !important;
    color: var(--bordeaux) !important;
    font-weight: 700 !important;
    font-size: 2.2rem !important;
}

/* BANDEAU DEFILANT (MARQUEE) */
.marquee-wrapper {
    width: 100%; background: var(--bordeaux); padding: 12px 0; overflow: hidden; display: flex; align-items: center;
}
.marquee-content {
    display: flex;
    white-space: nowrap;
    animation: marquee 30s linear infinite;
    will-change: transform;
    align-items: center;
}
.marquee-content span { color: var(--white); font-size: 0.95rem; font-weight: 300; letter-spacing: 3px; text-transform: uppercase; margin: 0 30px; }
.marquee-content i { 
    color: var(--primary-pink); font-size: 0.4rem; margin: 0 30px; 
    vertical-align: middle; display: inline-block; 
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* HEADER & HAMBURGER MENU */
header {
    position: sticky; top: 0; background: var(--glass-bg); backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--glass-border); z-index: 1000; padding: 15px 25px;
    display: flex; justify-content: space-between; align-items: center; box-shadow: 0 4px 30px rgba(0,0,0,0.05);
}

.logo-img { width: 60px; height: 60px; object-fit: contain; border-radius: 50%; border: 2px solid var(--hot-pink); padding: 2px; background: var(--white); animation: pulseLogo 3s infinite; }
.menu-btn { font-size: 1.8rem; color: var(--bordeaux); cursor: pointer; transition: transform 0.3s; }
.menu-btn:hover { transform: scale(1.1); color: var(--hot-pink); }

/* SIDEBAR */
.sidebar {
    position: fixed; top: 0; right: -320px; width: 320px; height: 100vh;
    background: rgba(255, 255, 255, 0.95); backdrop-filter: blur(25px);
    box-shadow: -10px 0 40px rgba(244, 143, 177, 0.3);
    transition: right 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 2000; padding: 40px 30px; display: flex; flex-direction: column;
}
.sidebar.active { right: 0; }
.sidebar-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 40px; }
.close-btn { font-size: 2rem; color: var(--bordeaux); cursor: pointer; }
.side-nav a { display: block; font-size: 1.2rem; color: var(--bordeaux); text-decoration: none; font-weight: 500; text-transform: uppercase; padding: 15px 0; border-bottom: 1px dashed var(--primary-pink); transition: 0.3s; }
.side-nav a:hover, .side-nav a.active { color: var(--hot-pink); padding-left: 15px; border-bottom: 1px solid var(--hot-pink); }
.overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100vh; background: rgba(0,0,0,0.4); backdrop-filter: blur(3px); z-index: 1999; opacity: 0; visibility: hidden; transition: 0.4s; }
.overlay.active { opacity: 1; visibility: visible; }

/* CONTAINER - Elargi pour que les 4 colonnes tarifs respirent */
.container { width: 95%; max-width: 1400px; margin: 50px auto; }

/* PHOTOS GALLERIES */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-top: 30px;
}
@media (min-width: 768px) {
    .gallery-grid { grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 25px; }
}

.photo-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-girly);
    background: #fff;
    cursor: pointer;
    aspect-ratio: 4/5;
}
.photo-card img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1); }
.photo-card:hover img { transform: scale(1.08); }

.photo-overlay {
    position: absolute; bottom: 0; left: 0; width: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.4) 60%, transparent 100%);
    padding: 30px 15px 15px 15px; color: #fff; text-align: left; transition: opacity 0.3s;
}
.photo-overlay h4 { color: #fff; font-size: 1.1rem; margin: 0 0 4px 0; text-align: left; text-shadow: 1px 1px 3px rgba(0,0,0,0.6); }
.photo-overlay p { font-size: 0.8rem; color: var(--primary-pink); margin: 0; font-weight: 300; }
@media (max-width: 400px) {
    .photo-overlay h4 { font-size: 0.95rem; }
    .photo-overlay p { font-size: 0.7rem; }
}

/* CARDS CLASSIQUES & GRIDS */
.card { background: var(--glass-bg); backdrop-filter: blur(10px); border: 1px solid var(--glass-border); border-radius: 24px; padding: 40px 25px; box-shadow: var(--shadow-girly); margin-bottom: 30px; height: 100%; }
.grid { display: grid; grid-template-columns: 1fr; gap: 30px; }
@media (min-width: 768px) { .grid { grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); } }

/* PAGE TARIFS : 4 colonnes desktop (Tout sur la même ligne) */
@media (min-width: 1024px) { 
    .pricing-grid { grid-template-columns: repeat(4, 1fr); align-items: stretch; } 
}

.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 20px; margin-top: 40px; }
.feature-box { text-align: center; padding: 30px 20px; background: var(--white); border-radius: 20px; box-shadow: var(--shadow-girly); border-bottom: 4px solid var(--hot-pink); }
.feature-box i { font-size: 3rem; color: var(--hot-pink); margin-bottom: 15px; }

/* BOUTONS */
.btn { display: inline-block; background: linear-gradient(135deg, var(--bordeaux), var(--hot-pink)); color: var(--white); padding: 15px 40px; border-radius: 50px; text-decoration: none; font-weight: 600; letter-spacing: 1.5px; font-size: 1.1rem; box-shadow: 0 10px 25px rgba(122, 27, 38, 0.3); transition: 0.4s; border: none; text-transform: uppercase; }
.btn:hover { transform: translateY(-5px); box-shadow: 0 15px 35px rgba(244, 143, 177, 0.6); }

/* LISTES TARIFS */
.price-list { list-style: none; }
.price-list li { display: flex; justify-content: space-between; padding: 15px 0; border-bottom: 1px dashed var(--primary-pink); font-size: 0.95rem; }
.price-list li span:last-child { font-weight: 600; color: var(--bordeaux); background: var(--secondary-pink); padding: 5px 12px; border-radius: 20px; font-size: 0.9rem;}

/* VRAI FOOTER GLOBAL */
.site-footer {
    background: var(--white); border-top: 1px solid var(--glass-border);
    padding: 80px 20px 20px; margin-top: 120px; box-shadow: 0 -10px 40px rgba(0,0,0,0.02);
}
.footer-grid {
    display: grid; grid-template-columns: 1fr; gap: 50px; max-width: 1200px; margin: 0 auto; text-align: center;
}
.footer-brand h3 { 
    font-family: 'Playfair Display', serif !important; 
    color: var(--bordeaux) !important; 
    font-size: 2.8rem; 
    margin: 0 0 15px 0; 
    text-align: center; 
    font-weight: 700;
}
.footer-brand p { color: #888; font-size: 1rem; line-height: 1.6; max-width: 300px; margin: 0 auto; }
.footer-links h4, .footer-contact h4 { font-family: 'Playfair Display', serif; color: var(--bordeaux); font-size: 1.2rem; margin-bottom: 25px; text-transform: uppercase; letter-spacing: 1px; }
.footer-links ul { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 15px; }
.footer-links a { color: #666; text-decoration: none; transition: 0.3s; font-size: 1rem; }
.footer-links a:hover { color: var(--hot-pink); padding-left: 8px; }
.footer-contact p { color: #666; margin-bottom: 12px; font-size: 1rem; display: flex; align-items: center; justify-content: center; gap: 10px; }
.footer-socials { display: flex; gap: 15px; justify-content: center; margin-top: 25px; }
.footer-socials a { width: 45px; height: 45px; border-radius: 50%; background: var(--secondary-pink); color: var(--bordeaux); display: flex; align-items: center; justify-content: center; text-decoration: none; transition: 0.3s; font-size: 1.2rem; }
.footer-socials a:hover { background: var(--bordeaux); color: var(--white); transform: translateY(-5px); box-shadow: 0 10px 20px rgba(122, 27, 38, 0.2); }
.footer-bottom { text-align: center; padding-top: 30px; margin-top: 60px; border-top: 1px solid rgba(0,0,0,0.05); color: #aaa; font-size: 0.9rem; }

@media (min-width: 992px) {
    .footer-grid { grid-template-columns: 2fr 1fr 1fr; text-align: left; }
    .footer-brand h3 { text-align: left; margin: 0 0 15px -5px; }
    .footer-brand p { margin: 0; }
    .footer-contact p { justify-content: flex-start; }
    .footer-socials { justify-content: flex-start; }
}

@keyframes float { 0%, 100% { transform: translateY(0px); } 50% { transform: translateY(-10px); } }
@keyframes pulseLogo { 0%, 100% { box-shadow: 0 0 0 0 rgba(244, 143, 177, 0); } 50% { box-shadow: 0 0 0 10px rgba(244, 143, 177, 0.4); } }