/* ===== Variables & Reset ===== */
:root {
    --pink: #E91E8C;
    --pink-light: #FFB6C1;
    --pink-pale: #FFF0F5;
    --lavender: #E6E6FA;
    --lavender-light: #F3F0FF;
    --gold: #FFD700;
    --gold-light: #FFF8DC;
    --white: #FFFFFF;
    --gray-50: #FAFAFA;
    --gray-100: #F5F5F5;
    --gray-400: #9CA3AF;
    --gray-600: #4B5563;
    --gray-800: #1F2937;
    --radius: 16px;
    --radius-sm: 10px;
    --shadow: 0 4px 24px rgba(233, 30, 140, 0.1);
    --shadow-lg: 0 8px 40px rgba(233, 30, 140, 0.15);
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    color: var(--gray-800);
    background: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: 'Quicksand', sans-serif;
    font-weight: 700;
    line-height: 1.3;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 50px;
    font-family: 'Quicksand', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    justify-content: center;
}

.btn--primary {
    background: linear-gradient(135deg, var(--pink), #C2185B);
    color: var(--white);
    box-shadow: 0 4px 20px rgba(233, 30, 140, 0.35);
}

.btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 28px rgba(233, 30, 140, 0.45);
}

.btn--outline {
    background: transparent;
    color: var(--pink);
    border: 2px solid var(--pink-light);
}

.btn--outline:hover {
    background: var(--pink-pale);
    border-color: var(--pink);
}

.btn--full {
    width: 100%;
}

/* ===== Header ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(233, 30, 140, 0.08);
    transition: var(--transition);
}

.header.scrolled {
    box-shadow: 0 2px 20px rgba(233, 30, 140, 0.1);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.nav__logo {
    font-family: 'Quicksand', sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--pink);
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav__logo-icon {
    font-size: 1.2rem;
}

.nav__menu {
    display: flex;
    list-style: none;
    gap: 8px;
}

.nav__link {
    padding: 8px 20px;
    border-radius: 50px;
    font-family: 'Quicksand', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--gray-600);
    transition: var(--transition);
}

.nav__link:hover,
.nav__link.active {
    color: var(--pink);
    background: var(--pink-pale);
}

.nav__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.nav__toggle span {
    display: block;
    width: 24px;
    height: 2.5px;
    background: var(--pink);
    border-radius: 2px;
    transition: var(--transition);
}

/* ===== Hero ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(165deg, var(--pink-pale) 0%, var(--lavender-light) 40%, var(--white) 70%, var(--gold-light) 100%);
    padding: 120px 0 80px;
    overflow: hidden;
}

.hero__images {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}

.hero__bg-img {
    position: absolute;
    width: 180px;
    height: 220px;
    object-fit: cover;
    border-radius: var(--radius);
    box-shadow: 0 8px 32px rgba(233, 30, 140, 0.18);
    opacity: 0.55;
    animation: floatImg 6s ease-in-out infinite;
}

.hero__bg-img--1 {
    top: 12%;
    left: 5%;
    transform: rotate(-8deg);
    animation-delay: 0s;
}

.hero__bg-img--2 {
    top: 18%;
    right: 4%;
    transform: rotate(6deg);
    animation-delay: 1.5s;
}

.hero__bg-img--3 {
    bottom: 14%;
    left: 8%;
    transform: rotate(5deg);
    animation-delay: 3s;
}

.hero__bg-img--4 {
    bottom: 10%;
    right: 6%;
    transform: rotate(-6deg);
    animation-delay: 4.5s;
}

@keyframes floatImg {
    0%, 100% { transform: translateY(0) rotate(var(--r, 0deg)); }
    50% { transform: translateY(-14px) rotate(var(--r, 0deg)); }
}

.hero__bg-img--1 { --r: -8deg; }
.hero__bg-img--2 { --r: 6deg; }
.hero__bg-img--3 { --r: 5deg; }
.hero__bg-img--4 { --r: -6deg; }

.hero__content {
    text-align: center;
    position: relative;
    z-index: 2;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 24px;
    padding: 48px 40px;
    border: 1px solid rgba(233, 30, 140, 0.08);
    max-width: 720px;
}

.hero__badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--pink-pale), var(--lavender));
    color: var(--pink);
    padding: 8px 24px;
    border-radius: 50px;
    font-family: 'Quicksand', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 24px;
    letter-spacing: 1px;
}

.hero__title {
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    margin-bottom: 20px;
    color: var(--gray-800);
}

.text-gradient {
    background: linear-gradient(135deg, var(--pink), #9C27B0, var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero__description {
    font-size: clamp(1rem, 2vw, 1.15rem);
    color: var(--gray-600);
    max-width: 600px;
    margin: 0 auto 36px;
    line-height: 1.8;
}

.hero__buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

.hero__stats {
    display: flex;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
}

.hero__stat {
    text-align: center;
}

.hero__stat-number {
    display: block;
    font-family: 'Quicksand', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--pink);
}

.hero__stat-label {
    font-size: 0.85rem;
    color: var(--gray-400);
}

/* Animated brush */
.hero__brush {
    position: absolute;
    bottom: 8%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    opacity: 0.6;
    animation: brushPaint 4s ease-in-out infinite;
}

.hero__brush .brush-paint {
    animation: paintDrip 3s ease-in-out infinite;
}

@keyframes brushPaint {
    0%, 100% { transform: translateX(-50%) rotate(-5deg); }
    25% { transform: translateX(-40%) rotate(5deg); }
    50% { transform: translateX(-50%) rotate(-3deg); }
    75% { transform: translateX(-60%) rotate(3deg); }
}

@keyframes paintDrip {
    0%, 100% { opacity: 0.4; }
    50% { opacity: 0.8; }
}

/* Floating stars decoration */
.floating-star {
    position: absolute;
    left: var(--x);
    top: var(--y);
    font-size: 1.5rem;
    opacity: 0.3;
    animation: float 4s ease-in-out infinite;
    animation-delay: var(--delay);
    pointer-events: none;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0.3; }
    50% { transform: translateY(-20px) rotate(15deg); opacity: 0.6; }
}

/* ===== Section commons ===== */
.section__subtitle {
    display: block;
    text-align: center;
    color: var(--pink);
    font-family: 'Quicksand', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

.section__title {
    text-align: center;
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    margin-bottom: 16px;
    color: var(--gray-800);
}

.section__description {
    text-align: center;
    color: var(--gray-600);
    max-width: 560px;
    margin: 0 auto 48px;
    font-size: 1rem;
}

/* ===== About ===== */
.about {
    padding: 100px 0;
    background: var(--white);
}

.about__content {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 48px;
    align-items: center;
    max-width: 900px;
    margin: 0 auto;
}

.about__image {
    position: relative;
}

.about__photo {
    width: 100%;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    object-fit: cover;
    aspect-ratio: 3 / 4;
}

.about__text {
    text-align: left;
}

.about__text .section__subtitle,
.about__text .section__title {
    text-align: left;
}

.about__text p {
    color: var(--gray-600);
    margin-bottom: 16px;
    font-size: 1.05rem;
}

.about__features {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-top: 36px;
    flex-wrap: wrap;
}

.about__feature {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: var(--pink-pale);
    border-radius: 50px;
    font-family: 'Quicksand', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--pink);
}

.about__feature-icon {
    font-size: 1.3rem;
}

/* ===== Galerie ===== */
.galerie {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--gray-50), var(--lavender-light));
}

.galerie__filter {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.galerie__filter-btn {
    padding: 8px 22px;
    border: 2px solid var(--pink-light);
    border-radius: 50px;
    background: var(--white);
    font-family: 'Quicksand', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--gray-600);
    cursor: pointer;
    transition: var(--transition);
}

.galerie__filter-btn:hover,
.galerie__filter-btn.active {
    background: var(--pink);
    color: var(--white);
    border-color: var(--pink);
}

.galerie__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 20px;
}

.galerie__item {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 4 / 5;
    transition: var(--transition);
}

.galerie__item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.galerie__item.hidden {
    display: none;
}

.galerie__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.galerie__item:hover .galerie__img {
    transform: scale(1.05);
}

.galerie__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(233, 30, 140, 0.85), transparent 60%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px;
    opacity: 0;
    transition: var(--transition);
}

.galerie__item:hover .galerie__overlay {
    opacity: 1;
}

.galerie__overlay h3 {
    color: var(--white);
    font-size: 1.15rem;
    margin-bottom: 4px;
}

.galerie__overlay p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.85rem;
}

/* ===== Temoignages ===== */
.temoignages {
    padding: 100px 0;
    background: var(--white);
}

.temoignages__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin-top: 48px;
}

.temoignage__card {
    background: var(--pink-pale);
    border-radius: var(--radius);
    padding: 32px;
    transition: var(--transition);
    border: 1px solid rgba(233, 30, 140, 0.06);
}

.temoignage__card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.temoignage__stars {
    color: var(--gold);
    font-size: 1.2rem;
    margin-bottom: 16px;
    letter-spacing: 2px;
}

.temoignage__text {
    color: var(--gray-600);
    font-size: 0.95rem;
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.8;
}

.temoignage__author {
    display: flex;
    flex-direction: column;
}

.temoignage__name {
    font-family: 'Quicksand', sans-serif;
    font-weight: 700;
    color: var(--pink);
}

.temoignage__event {
    font-size: 0.8rem;
    color: var(--gray-400);
}

.temoignages__more {
    text-align: center;
    margin-top: 40px;
}

/* ===== Contact ===== */
.contact {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--lavender-light), var(--pink-pale));
}

.contact__wrapper {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 40px;
    align-items: start;
}

.contact__form {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.form__group {
    margin-bottom: 20px;
}

.form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form__label {
    display: block;
    font-family: 'Quicksand', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--gray-800);
    margin-bottom: 6px;
}

.form__input {
    width: 100%;
    padding: 12px 18px;
    border: 2px solid var(--lavender);
    border-radius: var(--radius-sm);
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    color: var(--gray-800);
    background: var(--white);
    transition: var(--transition);
    outline: none;
}

.form__input:focus {
    border-color: var(--pink-light);
    box-shadow: 0 0 0 4px rgba(233, 30, 140, 0.1);
}

.form__input::placeholder {
    color: var(--gray-400);
}

.form__select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%239CA3AF' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

.form__textarea {
    resize: vertical;
    min-height: 100px;
}

.form__success {
    display: none;
    margin-top: 20px;
    padding: 16px 24px;
    background: #E8F5E9;
    color: #2E7D32;
    border-radius: var(--radius-sm);
    font-family: 'Quicksand', sans-serif;
    font-weight: 600;
    text-align: center;
}

.form__success.show {
    display: block;
    animation: slideIn 0.4s ease;
}

.contact__info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact__card {
    background: var(--white);
    padding: 24px;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: 0 2px 12px rgba(233, 30, 140, 0.06);
    transition: var(--transition);
}

.contact__card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.contact__card-icon {
    font-size: 2rem;
    display: block;
    margin-bottom: 8px;
}

.contact__card-svg {
    display: block;
    margin: 0 auto 8px;
}

.contact__card h3 {
    font-size: 1rem;
    color: var(--pink);
    margin-bottom: 4px;
}

.contact__card p {
    color: var(--gray-600);
    font-size: 0.9rem;
}

.contact__card a {
    color: var(--gray-600);
    transition: var(--transition);
}

.contact__card a:hover {
    color: var(--pink);
}

.contact__socials {
    display: flex;
    justify-content: center;
    gap: 16px;
    padding-top: 8px;
}

.contact__social {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--pink-pale);
    color: var(--pink);
    transition: var(--transition);
}

.contact__social:hover {
    background: var(--pink);
    color: var(--white);
    transform: translateY(-2px);
}

/* ===== Footer ===== */
.footer {
    background: var(--gray-800);
    color: var(--white);
    padding: 48px 0 24px;
}

.footer__content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 24px;
}

.footer__logo {
    font-family: 'Quicksand', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--pink-light);
    display: block;
    margin-bottom: 8px;
}

.footer__brand p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
}

.footer__links {
    display: flex;
    gap: 24px;
}

.footer__links a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer__links a:hover {
    color: var(--pink-light);
}

.footer__bottom {
    text-align: center;
}

.footer__bottom p {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.8rem;
}

/* ===== Animations ===== */
.fade-in {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

@keyframes slideIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ===== Responsive ===== */
@media (max-width: 900px) {
    .contact__wrapper {
        grid-template-columns: 1fr;
    }

    .contact__info {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .contact__card {
        flex: 1;
        min-width: 160px;
    }
}

@media (max-width: 768px) {
    .nav__menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        padding: 100px 40px 40px;
        gap: 8px;
        box-shadow: -4px 0 24px rgba(0, 0, 0, 0.1);
        transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 999;
    }

    .nav__menu.open {
        right: 0;
    }

    .nav__link {
        font-size: 1.1rem;
        padding: 12px 20px;
    }

    .nav__toggle {
        display: flex;
        z-index: 1001;
    }

    .nav__toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .nav__toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .nav__toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    .hero {
        padding: 100px 0 60px;
        min-height: auto;
    }

    .hero__bg-img {
        width: 120px;
        height: 150px;
        opacity: 0.35;
    }

    .hero__content {
        padding: 32px 20px;
        margin: 0 8px;
    }

    .hero__stats {
        gap: 24px;
    }

    .hero__buttons {
        flex-direction: column;
        align-items: center;
    }

    .form__row {
        grid-template-columns: 1fr;
    }

    .contact__form {
        padding: 28px;
    }

    .temoignages__grid {
        grid-template-columns: 1fr;
    }

    .footer__content {
        flex-direction: column;
        text-align: center;
        gap: 24px;
    }

    .about__content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .about__photo {
        max-width: 260px;
        margin: 0 auto;
    }

    .about__text,
    .about__text .section__subtitle,
    .about__text .section__title {
        text-align: center;
    }

    .about__features {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .galerie__grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .hero__title {
        font-size: 1.8rem;
    }

    .contact__info {
        flex-direction: column;
    }
}
