/*
Click nbfs://nbhost/SystemFileSystem/Templates/Licenses/license-default.txt to change this license
Click nbfs://nbhost/SystemFileSystem/Templates/Other/CascadeStyleSheet.css to edit this template
*/
/* 
    Created on : 14 avr. 2026, 14:31:31
    Author     : DucoteWeb
*/

:root {
    --blush-bg: #fcf8f6;
    --blush-white: #ffffff;
    --blush-text: #6f625e;
    --blush-title: #5f4b46;
    --blush-primary: #cfa39c;
    --blush-primary-dark: #b7867e;
    --blush-border: rgba(207, 163, 156, 0.18);
    --blush-shadow: 0 14px 34px rgba(95, 75, 70, 0.10);
    --blush-radius: 24px;
    --blush-container: 1200px;
}

.blush-site {
    background: var(--blush-bg);
    color: var(--blush-text);
    font-family: "Poppins", "Helvetica Neue", Arial, sans-serif;
}

.blush-container {
    width: min(var(--blush-container), calc(100% - 40px));
    margin: 0 auto;
}

.blush-admin-bar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    text-align: center;
    padding: 16px 20px;
    font-weight: 600;
    color: #fff;
}

.blush-admin-bar p {
    margin: 0;
    color: #fff;
}

.blush-admin-bar--draft {
    background: #d9534f;
}

.blush-admin-bar--closed {
    background: #b23b37;
}

.blush-topbar {
    position: sticky;
    top: 0;
    z-index: 200;
    background: rgba(252, 248, 246, 0.92);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--blush-border);
}

.blush-topbar__inner {
    min-height: 82px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.blush-logo img {
    max-height: 54px;
    width: auto;
    display: block;
}

.blush-nav {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.blush-nav ul {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.blush-nav ul li a {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    padding: 0 16px;
    border-radius: 999px;
    color: var(--blush-title);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.25s ease;
}

.blush-nav ul li a:hover {
    background: #fff;
    color: var(--blush-primary-dark);
    box-shadow: 0 8px 20px rgba(95, 75, 70, 0.08);
}

.responsive-menu-toggle {
    display: none;
    color: var(--blush-title);
    font-size: 22px;
}

.blush-hero {
    position: relative;
    min-height: 680px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #efe3df;
}

.blush-hero__image,
.blush-hero__overlay {
    position: absolute;
    inset: 0;
}

.blush-hero__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blush-hero__overlay {
    background:
        linear-gradient(180deg, rgba(60, 40, 36, 0.18) 0%, rgba(60, 40, 36, 0.42) 100%);
}

.blush-hero .blush-container {
    position: relative;
    z-index: 2;
}

.blush-hero__content {
    max-width: 760px;
    padding: 90px 0;
    text-align: center;
    margin: 0 auto;
}

.blush-badge {
    display: inline-flex;
    align-items: center;
    margin-bottom: 18px;
    padding: 10px 18px;
    border-radius: 999px;
    background: rgba(255,255,255,0.18);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    backdrop-filter: blur(5px);
}

.blush-hero__content h1 {
    margin: 0 0 18px 0;
    color: #fff;
    font-size: clamp(38px, 7vw, 74px);
    line-height: 1.05;
    font-weight: 700;
    text-shadow: 0 6px 18px rgba(0,0,0,0.16);
}

.blush-hero__content p {
    margin: 0;
    color: rgba(255,255,255,0.95);
    font-size: 18px;
    line-height: 1.9;
    max-width: 720px;
}

@media (max-width: 900px) {
    .blush-nav {
        display: none;
    }

    .responsive-menu-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .blush-hero {
        min-height: 560px;
    }
}

@media (max-width: 640px) {
    .blush-container {
        width: min(var(--blush-container), calc(100% - 24px));
    }

    .blush-topbar__inner {
        min-height: 72px;
    }

    .blush-logo img {
        max-height: 46px;
    }

    .blush-hero__content {
        padding: 60px 0;
    }

    .blush-hero__content p {
        font-size: 16px;
    }
}



/*  PRESENTATION  */
.blush-main {
    display: block;
}

.blush-alert-wrap {
    padding-top: 24px;
}

.blush-alert {
    padding: 18px 22px;
    border-radius: 18px;
    font-weight: 600;
    box-shadow: 0 8px 24px rgba(95, 75, 70, 0.08);
}

.blush-alert--success {
    background: #eef8f1;
    border: 1px solid #d5ebdb;
    color: #2e6e45;
}

.blush-alert--error {
    background: #fff1f1;
    border: 1px solid #f1d3d3;
    color: #a04a4a;
}

.blush-section {
    padding: 90px 0;
}

.blush-section--soft {
    background: linear-gradient(180deg, #fcf8f6 0%, #f8f1ee 100%);
}

.blush-grid {
    display: grid;
    gap: 34px;
}

.blush-grid--2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: center;
}

.blush-card {
    background: #fff;
    border-radius: 24px;
    box-shadow: 0 14px 34px rgba(95, 75, 70, 0.10);
    overflow: hidden;
}

.blush-card--image img {
    width: 100%;
    height: 100%;
    min-height: 480px;
    object-fit: cover;
    display: block;
}

.blush-card--text {
    padding: 42px;
}

.blush-kicker {
    display: inline-block;
    margin-bottom: 14px;
    color: #b7867e;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.blush-card--text h2 {
    margin-bottom: 20px;
    color: #5f4b46;
    font-size: clamp(30px, 4vw, 46px);
    line-height: 1.15;
}

.blush-text {
    color: #6f625e;
    font-size: 17px;
    line-height: 1.9;
}

@media (max-width: 900px) {
    .blush-grid--2 {
        grid-template-columns: 1fr;
    }

    .blush-card--image img {
        min-height: 340px;
    }

    .blush-card--text {
        padding: 28px;
    }
}

@media (max-width: 640px) {
    .blush-section {
        padding: 64px 0;
    }

    .blush-card--text {
        padding: 22px;
    }
}


/*   compte à rebours   */
.blush-section--countdown {
    background:
        radial-gradient(circle at top left, rgba(207, 163, 156, 0.14), transparent 30%),
        radial-gradient(circle at bottom right, rgba(183, 134, 126, 0.12), transparent 28%),
        #fff;
    padding-top: 90px;
    padding-bottom: 90px;
}

.blush-countdown-date {
    margin-top: 12px;
    color: var(--blush-primary-dark);
    font-size: 18px;
    font-weight: 600;
}

.blush-countdown {
    margin-top: 36px;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}

.blush-countdown__item {
    background: #fff;
    border-radius: 24px;
    padding: 28px 18px;
    text-align: center;
    box-shadow: 0 10px 24px rgba(95, 75, 70, 0.08);
    border: 1px solid rgba(207, 163, 156, 0.16);
}

.blush-countdown__item .number {
    color: var(--blush-primary-dark);
    font-size: 46px;
    line-height: 1;
    font-weight: 800;
    margin-bottom: 10px;
}

.blush-countdown__item .title {
    color: var(--blush-title);
    font-size: 16px;
    font-weight: 600;
}

@media (max-width: 900px) {
    .blush-countdown {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .blush-countdown {
        grid-template-columns: 1fr;
    }
}




/*   DIAPORAM */
.blush-section-title {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
}

.blush-section-title h2 {
    margin-bottom: 16px;
    font-size: clamp(30px, 4vw, 48px);
    color: var(--blush-title);
}

.blush-kicker {
    display: inline-block;
    margin-bottom: 14px;
    color: var(--blush-primary-dark);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.blush-text {
    color: var(--blush-text);
    font-size: 17px;
    line-height: 1.9;
}

.blush-text--center {
    text-align: center;
}

.blush-mt-md {
    margin-top: 40px;
}

.blush-card--gallery,
.blush-card--text {
    padding: 34px;
}

.blush-featured-image {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
    border-radius: 20px;
    box-shadow: 0 10px 24px rgba(95, 75, 70, 0.08);
}

.blush-upload-box {
    margin-top: 26px;
    padding: 24px;
    border-radius: 22px;
    background: #fbf3f1;
    border: 1px solid rgba(207, 163, 156, 0.18);
}

.blush-upload-box h3 {
    margin-bottom: 16px;
    font-size: 22px;
    color: var(--blush-title);
}

.blush-gallery {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -8px;
}

.blush-gallery .gallery-item {
    width: 50%;
    padding: 8px;
    margin: 0;
    box-sizing: border-box;
}

.blush-gallery .gallery-icon {
    margin: 0;
}

.blush-gallery .gallery-icon > a {
    display: block;
    overflow: hidden;
    border-radius: 20px;
    background: #f7efec;
    box-shadow: 0 8px 22px rgba(95, 75, 70, 0.08);
}

.blush-gallery .gallery-icon > a img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.35s ease;
}

.blush-gallery .gallery-icon > a:hover img {
    transform: scale(1.05);
}

.hidden-images {
    display: none !important;
}

@media (max-width: 900px) {
    .blush-card--gallery,
    .blush-card--text {
        padding: 28px;
    }

    .blush-featured-image {
        height: 340px;
    }
}

@media (max-width: 767px) {
    .blush-gallery .gallery-item {
        width: 100%;
    }

    .blush-gallery .gallery-icon > a img {
        height: 220px;
    }
}
.blush-gallery-note{
    width: 100%;
    margin: 0 0 18px 0;
    color: var(--blush-primary-dark);
    font-size: 15px;
    font-weight: 600;
}



/* CAGNOTTE    */
.blush-section--accent {
    background: linear-gradient(180deg, #f9f3f1 0%, #fff 100%);
}

.blush-grid--reverse > :first-child {
    order: 2;
}

.blush-grid--reverse > :last-child {
    order: 1;
}

.blush-card--form {
    padding: 42px;
}

.blush-card--form h2 {
    margin-bottom: 18px;
    color: var(--blush-title);
    font-size: clamp(30px, 4vw, 46px);
    line-height: 1.15;
}

.blush-amount {
    margin: 28px 0;
    padding: 22px 24px;
    border-radius: 20px;
    background: linear-gradient(135deg, #fff 0%, #fcf4f2 100%);
    border: 1px solid rgba(207, 163, 156, 0.18);
}

.blush-amount__label {
    display: block;
    margin-bottom: 10px;
    color: #9a8a85;
    font-size: 14px;
    font-weight: 600;
}

.blush-amount strong {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--blush-title);
    font-size: clamp(28px, 4vw, 40px);
    line-height: 1.1;
}

.blush-amount strong i {
    color: var(--blush-primary);
}

.blush-form__row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.blush-form__group {
    margin-bottom: 18px;
}

.blush-form label {
    display: block;
    margin-bottom: 8px;
    color: var(--blush-title);
    font-size: 14px;
    font-weight: 600;
}

.blush-form input[type="text"],
.blush-form input[type="number"],
.inputSommeCagnotte {
    width: 100%;
    min-height: 54px;
    padding: 0 16px;
    border: 1px solid rgba(207, 163, 156, 0.20);
    border-radius: 16px;
    background: #fff;
    color: var(--blush-text);
    font-size: 15px;
    transition: 0.25s ease;
    box-sizing: border-box;
}

.blush-form input:focus,
.inputSommeCagnotte:focus {
    outline: none;
    border-color: var(--blush-primary);
    box-shadow: 0 0 0 4px rgba(207, 163, 156, 0.14);
}

.blush-form__hint {
    margin: 8px 0 10px 0;
    color: #9a8a85;
    font-size: 13px;
}

.blush-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    padding: 0 24px;
    border: none;
    border-radius: 999px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.25s ease;
    text-align: center;
}

.blush-btn--primary,
.btnCagnotte.blush-btn--primary {
    width: 100%;
    background: linear-gradient(135deg, var(--blush-primary) 0%, #ddb3ab 100%);
    color: #fff !important;
    box-shadow: 0 14px 28px rgba(207, 163, 156, 0.24);
}

.blush-btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 32px rgba(207, 163, 156, 0.30);
}

.blush-btn--primary:disabled,
.blush-btn--primary[disabled] {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

@media (max-width: 900px) {
    .blush-card--form {
        padding: 28px;
    }

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

    .blush-grid--reverse > :first-child,
    .blush-grid--reverse > :last-child {
        order: initial;
    }
}

@media (max-width: 640px) {
    .blush-card--form {
        padding: 22px;
    }
}

/*echobox*/
.blush-card--messages {
    padding: 42px;
}

.blush-card--messages h3,
.blush-card--form h3 {
    margin-bottom: 20px;
    color: var(--blush-title);
    font-size: 28px;
}

.blush-form textarea {
    width: 100%;
    min-height: 140px;
    padding: 16px;
    border: 1px solid rgba(207, 163, 156, 0.20);
    border-radius: 16px;
    background: #fff;
    color: var(--blush-text);
    font-size: 15px;
    line-height: 1.7;
    resize: vertical;
    box-sizing: border-box;
    transition: 0.25s ease;
}

.blush-form textarea:focus {
    outline: none;
    border-color: var(--blush-primary);
    box-shadow: 0 0 0 4px rgba(207, 163, 156, 0.14);
}

.blush-btn--dark {
    width: 100%;
    background: linear-gradient(135deg, var(--blush-title) 0%, #8d7069 100%);
    color: #fff !important;
    box-shadow: 0 14px 28px rgba(95, 75, 70, 0.20);
}

.blush-btn--dark:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 32px rgba(95, 75, 70, 0.26);
}

.blush-btn--dark:disabled,
.blush-btn--dark[disabled] {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.blush-testimonials {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.blush-message {
    padding: 24px;
    border-radius: 22px;
    background: #fffaf9;
    border: 1px solid rgba(207, 163, 156, 0.14);
    box-shadow: 0 8px 22px rgba(95, 75, 70, 0.06);
}

.blush-message .author {
    margin-bottom: 14px;
}

.blush-message .author h3 {
    margin: 0 0 6px 0;
    font-size: 22px;
    color: var(--blush-title);
}

.blush-message .author span {
    color: #9a8a85;
    font-size: 14px;
    font-weight: 600;
}

.blush-message blockquote {
    margin: 0;
    padding: 0;
    border: 0;
}

.blush-message blockquote p {
    margin: 0;
    color: var(--blush-text);
    font-size: 16px;
    line-height: 1.85;
}

.video-container {
    margin-top: 16px;
}

.video-container video {
    width: 100%;
    border-radius: 18px;
    box-shadow: 0 8px 20px rgba(95, 75, 70, 0.08);
}

@media (max-width: 900px) {
    .blush-card--messages {
        padding: 28px;
    }
}

@media (max-width: 640px) {
    .blush-card--messages {
        padding: 22px;
    }

    .blush-message {
        padding: 20px;
    }
}
.blush-testimonials {
    margin-top: 10px;
}

.blush-testimonials .testimonials_slider_ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.blush-testimonials .blush-message-slide {
    padding: 24px;
    border-radius: 22px;
    background: #fffaf9;
    border: 1px solid rgba(207, 163, 156, 0.14);
    box-shadow: 0 8px 22px rgba(95, 75, 70, 0.06);
    text-align: left;
    box-sizing: border-box;
}

.blush-testimonials .single-photo-img {
    margin-bottom: 18px;
}

.blush-quote-icon {
    width: 58px;
    height: 58px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f3d8d2 0%, #e7b8b0 100%);
    color: #fff;
    font-size: 20px;
    box-shadow: 0 10px 20px rgba(207, 163, 156, 0.22);
}

.blush-testimonials .author {
    margin-bottom: 14px;
}

.blush-testimonials .author h3 {
    margin: 0 0 6px 0;
    color: var(--blush-title);
    font-size: 24px;
}

.blush-testimonials .author span {
    color: #9a8a85;
    font-size: 14px;
    font-weight: 600;
}

.blush-testimonials .bq_wrapper blockquote {
    margin: 0;
    padding: 0;
    border: 0;
}

.blush-testimonials .bq_wrapper blockquote p {
    margin: 0;
    color: var(--blush-text);
    font-size: 16px;
    line-height: 1.85;
}

.blush-testimonials .slider_pager {
    margin-top: 20px;
    text-align: center;
}

.blush-testimonials .video-container {
    margin-top: 16px;
}

.blush-testimonials .video-container video {
    width: 100%;
    border-radius: 18px;
    box-shadow: 0 8px 20px rgba(95, 75, 70, 0.08);
}






/* maps  */
.blush-card--info,
.blush-card--map {
    padding: 42px;
}

.blush-card--info h3 {
    margin-bottom: 18px;
    color: var(--blush-title);
    font-size: 28px;
}

.blush-address {
    margin-bottom: 22px;
    color: var(--blush-text);
    font-size: 17px;
    line-height: 1.9;
}

.blush-card--map iframe {
    width: 100%;
    min-height: 420px;
    border: 0;
    border-radius: 20px;
    box-shadow: 0 10px 24px rgba(95, 75, 70, 0.08);
}

.blush-btn--inline {
    width: auto;
    display: inline-flex;
}

@media (max-width: 900px) {
    .blush-card--info,
    .blush-card--map {
        padding: 28px;
    }

    .blush-card--map iframe {
        min-height: 320px;
    }
}

@media (max-width: 640px) {
    .blush-card--info,
    .blush-card--map {
        padding: 22px;
    }

    .blush-btn--inline {
        width: 100%;
        justify-content: center;
    }
}


/*footer */
.blush-footer {
    background: linear-gradient(180deg, #f7efec 0%, #f1e4e0 100%);
    border-top: 1px solid rgba(207, 163, 156, 0.18);
    padding: 28px 0;
}

.blush-footer__inner {
    text-align: center;
}

.blush-footer__inner p {
    margin: 0;
    color: var(--blush-text);
    font-size: 14px;
    line-height: 1.8;
}

.blush-footer__inner a {
    color: var(--blush-primary-dark);
    font-weight: 600;
    text-decoration: none;
    transition: 0.25s ease;
}

.blush-footer__inner a:hover {
    color: var(--blush-title);
}


/*menu responsive   */
/* =========================
   MENU MOBILE BLUSH
   ========================= */

.blush-menu-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    padding: 0 !important;
    margin: 0;
    border-radius: 999px;
    background: #ffffff;
    color: var(--blush-title);
    box-shadow: 0 8px 20px rgba(95, 75, 70, 0.10);
    text-decoration: none;
    font-size: 20px;
    line-height: 1 !important;
    box-sizing: border-box;
    position: relative;
    z-index: 10001;
}

.blush-menu-toggle i {
    display: block;
    margin: 0;
    padding: 0;
    line-height: 1 !important;
    pointer-events: none;
}

.blush-nav.is-open {
    display: block !important;
}

@media (max-width: 900px) {
    .blush-topbar {
        position: sticky;
        top: 0;
        z-index: 300;
        overflow: visible !important;
    }

    .blush-topbar .blush-container,
    .blush-topbar__inner {
        position: relative;
        overflow: visible !important;
    }

    .blush-menu-toggle {
        display: inline-flex;
    }

    .blush-nav {
        display: none;
        position: absolute;
        top: calc(100% + 12px);
        left: 0;
        right: 0;
        width: 100%;
        background: #ffffff;
        border-radius: 22px;
        box-shadow: 0 18px 40px rgba(95, 75, 70, 0.12);
        padding: 14px;
        z-index: 9999;
    }

    .blush-nav ul {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 8px;
        margin: 0;
        padding: 0;
        list-style: none;
    }

    .blush-nav ul li {
        width: 100%;
        margin: 0;
    }

    .blush-nav ul li a {
        display: flex;
        align-items: center;
        width: 100%;
        min-height: 48px;
        padding: 12px 16px;
        border-radius: 14px;
        background: #fcf6f4;
        color: var(--blush-title);
        font-size: 15px;
        font-weight: 600;
        box-sizing: border-box;
    }

    .blush-nav ul li a:hover {
        background: #f6ece9;
        color: var(--blush-primary-dark);
        box-shadow: none;
    }
}