:root {
    --black: #0a0a0a;
    --off-black: #111111;
    --dark: #1a1a1a;
    --vert: #699388;
    --vert-fonce: #4a6b62;
    --vert-clair: #a8c0bb;
    --brun: #9f8e81;
    --brun-clair: #c4b8af;
    --brun-fonce: #7a6d62;
    --cream: #f0ebe3;
    --white: #fafaf8;
}

a {
    color: var(--cream);
}

a:hover {
    color: var(--brun-fonce);
}

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

html {
    scroll-behavior: smooth;
}

body {
    background: var(--black);
    color: var(--white);
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    overflow-x: hidden;
}

nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 28px 60px;
    transition: background 0.4s;
}

nav.scrolled {
    background: rgba(10, 10, 10, 0.92);
    backdrop-filter: blur(12px);
    padding: 18px 60px;
}

/* .nav-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 300;
    letter-spacing: 0.12em;
    color: var(--vert-clair);
    text-decoration: none;
} */

.nav-logo img {
    display: block;
    height: 80px;
    width: auto;
}

.nav-links {
    display: flex;
    gap: 40px;
    list-style: none;
}

.nav-links a {
    color: var(--brun-clair);
    text-decoration: none;
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--vert-clair);
}

#hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    padding: 0 60px 80px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to top left, #6993886e -60%, #00000000 60%), 
        linear-gradient(to bottom left,  rgba(0, 0, 0, 0.143) 0%, #00000000 60%), 
        linear-gradient(to bottom right, rgba(0, 0, 0, 0.57) 0%, #00000000 60%), 
        linear-gradient(to top, rgb(0 0 0) 0%, rgb(0 0 0 / 64%) 60%, #0000004f 100%);
    z-index: 1;
}

.hero-grid {
    position: absolute;
    inset: 0;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 3px;
    z-index: 0;
}

.hero-grid-cell {
    overflow: hidden;

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-grid-cell:nth-child(1) {
    /* background: #1a1c1b; */
    background-image: url(medias/03-05-26_Confirmation_Lily-97.jpg);
}

.hero-grid-cell:nth-child(2) {
    /* background: #131514; */
    background-image: url(medias/08-02-26_Match-126.jpg);

}

.hero-grid-cell:nth-child(3) {
    /* background: #181a19; */
    background-image: url(medias/13-09-25_Noces_Perles-157.jpg);

    grid-row: span 2;
}

.hero-grid-cell:nth-child(4) {
    /* background: #0e100f; */
    background-image: url(medias/19-04-26_CONFIRMATION_Axelle-029.jpg);
}

.hero-grid-cell:nth-child(5) {
    /* background: #161817; */
    background-image: url(medias/Alpagas_Bleus-139.jpg);

}

.hero-grid-cell::after {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at 40% 50%, rgba(105, 147, 136, 0.07) 0%, transparent 70%);
    animation: shimmer 6s ease-in-out infinite;
}

.hero-grid-cell:nth-child(2)::after {
    animation-delay: 1s;
}

.hero-grid-cell:nth-child(3)::after {
    animation-delay: 2s;
}

.hero-grid-cell:nth-child(4)::after {
    animation-delay: 3s;
}

.hero-grid-cell:nth-child(5)::after {
    animation-delay: 4s;
}

@keyframes shimmer {

    0%,
    100% {
        opacity: 0.4;
    }

    50% {
        opacity: 1;
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 640px;
}

.hero-eyebrow {
    font-size: 0.68rem;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--vert);
    margin-bottom: 1px;
    opacity: 0;
    animation: fadeUp 1s 0.3s forwards;
}

.hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(3.5rem, 7vw, 6rem);
    font-weight: 300;
    line-height: 1.0;
    letter-spacing: -0.01em;
    margin-bottom: 28px;
    opacity: 0;
    animation: fadeUp 1s 0.5s forwards;
}

.hero-title em {
    font-style: italic;
    color: var(--vert-clair);
}

.hero-sub {
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    color: var(--brun-clair);
    line-height: 1.8;
    max-width: 420px;
    margin-bottom: 44px;
    opacity: 0;
    animation: fadeUp 1s 0.7s forwards;
}

.hero-ctas {
    display: flex;
    gap: 20px;
    opacity: 0;
    animation: fadeUp 1s 0.9s forwards;
}

.btn-primary {
    background: var(--vert);
    color: var(--black);
    padding: 14px 36px;
    font-size: 0.72rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    transition: background 0.3s, transform 0.2s;
}

.btn-primary:hover {
    background: var(--vert-clair);
    transform: translateY(-2px);
}

.btn-ghost {
    border: 1px solid rgba(105, 147, 136, 0.4);
    color: var(--vert-clair);
    padding: 14px 36px;
    font-size: 0.72rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    transition: border-color 0.3s, background 0.3s, transform 0.2s;
}

.btn-ghost:hover {
    border-color: var(--vert-clair);
    background: rgba(105, 147, 136, 0.1);
    transform: translateY(-2px);
}

.scroll-hint {
    position: absolute;
    bottom: 40px;
    right: 60px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    opacity: 0;
    animation: fadeUp 1s 1.4s forwards;
}

.scroll-hint span {
    font-size: 0.6rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--brun);
    writing-mode: vertical-rl;
}

.scroll-line {
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, var(--vert), transparent);
    animation: scrollDown 2s 2s ease-in-out infinite;
}

@keyframes scrollDown {
    0% {
        transform: scaleY(0);
        transform-origin: top;
    }

    50% {
        transform: scaleY(1);
        transform-origin: top;
    }

    51% {
        transform: scaleY(1);
        transform-origin: bottom;
    }

    100% {
        transform: scaleY(0);
        transform-origin: bottom;
    }
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

section {
    padding: 120px 60px;
}

.section-label {
    font-size: 0.65rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--vert);
    margin-bottom: 16px;
}

.section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.4rem, 4vw, 3.6rem);
    font-weight: 300;
    line-height: 1.1;
    margin-bottom: 24px;
}

.section-title em {
    font-style: italic;
    color: var(--vert-clair);
}

.section-desc {
    font-size: 0.85rem;
    line-height: 1.9;
    color: var(--brun-clair);
    max-width: 520px;
}

.divider {
    width: 60px;
    height: 1px;
    background: linear-gradient(to right, var(--vert), var(--brun-fonce), transparent);
    margin: 32px 0;
}

#galerie {
    background: var(--off-black);
}

.gallery-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 60px;
}

.gallery-filters {
    display: flex;
    gap: 28px;
}

.filter-btn {
    background: none;
    border: none;
    color: var(--brun);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    cursor: pointer;
    padding-bottom: 4px;
    border-bottom: 1px solid transparent;
    transition: color 0.3s, border-color 0.3s;
}

.filter-btn.active,
.filter-btn:hover {
    color: var(--vert-clair);
    border-bottom-color: var(--vert);
}


.gallery-grid {
    width: 100%;
}

.gallery-item {
    width: calc(33.333% - 12px);
    margin-bottom: 12px;
    overflow: hidden;
    transition: opacity .4s ease,
        transform .4s ease;
}

.gallery-item.hidden {
    opacity: 0;
    transform: scale(.9);
    pointer-events: none;
}

.gallery-item img {
    width: 100%;
    display: block;
    border-radius: 4px;
    transition: transform .6s ease;
}

.gallery-item:hover img {
    transform: scale(1.04);
}



.gallery-grid {
    column-count: 3;
    column-gap: 12px;
}

.gallery-item {
    display: inline-block;
    width: 100%;
    margin-bottom: 12px;
    break-inside: avoid;
}

@media (max-width: 900px) {
    .gallery-grid {
        column-count: 2;
    }
}

@media (max-width: 600px) {
    .gallery-grid {
        column-count: 1;
    }
}

.gallery-item:nth-child(1) {
    grid-row: span 2;
}

.gallery-item:nth-child(5) {
    grid-column: span 2;
}

.gallery-placeholder {
    width: 100%;
    background: var(--dark);
    aspect-ratio: 3/4;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.6s ease;
}

.gallery-item:nth-child(1) .gallery-placeholder {
    aspect-ratio: 3/5;
}

.gallery-item:nth-child(5) .gallery-placeholder {
    aspect-ratio: 16/9;
}

.gallery-item:hover .gallery-placeholder {
    transform: scale(1.04);
}

.gallery-placeholder-inner {
    text-align: center;
    opacity: 0.2;
}

.gallery-placeholder-inner .ph-icon {
    font-size: 2rem;
    display: block;
    margin-bottom: 8px;
}

.gallery-placeholder-inner span {
    font-size: 0.6rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--brun-clair);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.75) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.4s;
    display: flex;
    align-items: flex-end;
    padding: 24px;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    font-style: italic;
    color: var(--vert-clair);
}

.gallery-item:nth-child(1) .gallery-placeholder {
    background: #181c1b;
}

.gallery-item:nth-child(2) .gallery-placeholder {
    background: #151918;
}

.gallery-item:nth-child(3) .gallery-placeholder {
    background: #121614;
}

.gallery-item:nth-child(4) .gallery-placeholder {
    background: #161a19;
}

.gallery-item:nth-child(5) .gallery-placeholder {
    background: #141817;
}

.gallery-item:nth-child(6) .gallery-placeholder {
    background: #111514;
}

.gallery-item img {
    width: 100%;
    display: block;
    border-radius: 4px;
    transition: transform .4s ease;
}

.gallery-item:hover img {
    transform: scale(1.03);
}

.gallery-item {
    position: relative;
    overflow: hidden;
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
            rgba(0, 0, 0, .75),
            transparent);
    opacity: 0;
    transition: .3s;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

#photobooth {
    background: var(--black);
    position: relative;
    overflow: hidden;
}

#photobooth::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(105, 147, 136, 0.07) 0%, transparent 70%);
    pointer-events: none;
}

#photobooth::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, #9f8e810d 0%, transparent 70%);
    pointer-events: none;
}

.photobooth-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.photobooth-frame {
    /* background: var(--dark); */
    /* border: 1px solid #e2b7672e; */
    padding: 32px;
    position: relative;
    background: radial-gradient(ellipse at 0% 100%, #69938833 0%, transparent 70%);
}

        /* BORDER GOLD */
        /* .photobooth-frame::before {
        content: '';
        position: absolute;
        inset: 0;
        border-radius: 6px;
        padding: 1px;

        background: linear-gradient(105deg,
            rgba(226, 183, 103, 0.15) 0%,
            rgba(255, 245, 200, 0.9)  50%,
            rgba(226, 183, 103, 0.15) 100%
        );
        background-size: 300% 300%;
        animation: shimmer 20s linear infinite;

        -webkit-mask:
            linear-gradient(#fff 0 0) content-box,
            linear-gradient(#fff 0 0);
        } */
        /* 
        @keyframes shimmer {
        0%   { background-position: 200% center; }
        100% { background-position: -200% center; }
        } */
        /* 
        .photobooth-frame::after {
        content: '';
        position: absolute;
        inset: 0;
        border-radius: 6px;
        box-shadow:
            0 0 8px 1px rgba(236, 208, 140, 0.08),
            0 0 20px 4px rgba(236, 208, 140, 0.05),
            0 0 45px 10px rgba(236, 208, 140, 0.03);
        animation: halo 20s linear infinite;
        } */
        /* 
        @keyframes halo {
        0%, 100% { opacity: 0.4; }
        50%       { opacity: 1; }
        } */

.photo-strip {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px;
}

.photo-strip-item {
    aspect-ratio: 4/3;
    overflow: hidden;
}

.photo-strip-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}


.photo-strip-item::after {
    content: '';
    position: absolute;
    inset: 0;
}

.photo-strip-item:nth-child(odd) {
    background: #181c1b;
}

.photo-strip-item:nth-child(even) {
    background: #141817;
}

.feature-list {
    list-style: none;
    margin: 40px 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    font-size: 0.82rem;
    color: var(--brun-clair);
    line-height: 1.6;
}

.feature-list li::before {
    content: '—';
    color: var(--vert);
    flex-shrink: 0;
    margin-top: 1px;
}

.pricing-block {
    display: flex;
    gap: 20px;
    margin-top: 40px;
}

.price-card {
    flex: 1;
    border: 1px solid rgba(105, 147, 136, 0.2);
    padding: 28px 24px;
    position: relative;
    transition: border-color 0.3s;
}

.price-card:hover {
    border-color: rgba(105, 147, 136, 0.5);
}

.price-card.featured {
    border-color: var(--vert);
    background: rgba(105, 147, 136, 0.05);
}

.price-card.featured::before {
    content: 'Populaire';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--vert);
    color: var(--black);
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 3px 14px;
}

.price-duration {
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--vert);
    margin-bottom: 10px;
}

.price-amount {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.4rem;
    font-weight: 300;
    line-height: 1;
    margin-bottom: 12px;
}

.price-amount sup {
    font-size: 1rem;
    vertical-align: super;
    margin-right: 2px;
}

.price-desc {
    font-size: 0.75rem;
    color: var(--brun);
    line-height: 1.6;
}

#contact {
    background: var(--off-black);
}

.contact-inner {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 100px;
    align-items: start;
}

.contact-detail {
    margin-top: 48px;
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.contact-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.contact-item-label {
    font-size: 0.6rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--vert);
}

.contact-item-value {
    font-size: 0.9rem;
    color: var(--brun-clair);
}

.contact-socials {
    margin-top: 48px;
    display: flex;
    gap: 20px;
}

.social-link {
    width: 42px;
    height: 42px;
    border: 1px solid rgba(105, 147, 136, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: var(--brun);
    font-size: 0.65rem;
    letter-spacing: 0.1em;
    transition: border-color 0.3s, color 0.3s;
}

.social-link:hover {
    border-color: var(--vert);
    color: var(--vert-clair);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.form-group label {
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--brun);
}

.form-group input,
.form-group select,
.form-group textarea {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(105, 147, 136, 0.15);
    color: var(--white);
    padding: 14px 18px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.82rem;
    outline: none;
    transition: border-color 0.3s;
    appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: rgba(105, 147, 136, 0.6);
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.form-group select option {
    background: var(--dark);
}

.form-submit {
    display: flex;
    align-items: center;
    gap: 24px;
}

footer {
    background: var(--black);
    border-top: 1px solid rgba(105, 147, 136, 0.12);
    padding: 48px 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    font-weight: 300;
    color: var(--vert-clair);
    letter-spacing: 0.1em;
}

.footer-copy {
    font-size: 0.7rem;
    color: var(--brun-fonce);
    letter-spacing: 0.1em;
}

.footer-links {
    display: flex;
    gap: 32px;
    list-style: none;
}

.footer-links a {
    color: var(--brun);
    text-decoration: none;
    font-size: 0.68rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--vert-clair);
}

.reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 {
    transition-delay: 0.1s;
}

.reveal-delay-2 {
    transition-delay: 0.2s;
}

.reveal-delay-3 {
    transition-delay: 0.3s;
}

@media (max-width: 900px) {
    nav {
        padding: 24px;
    }

    nav.scrolled {
        padding: 16px 24px;
    }

    .nav-links {
        display: none;
    }

    section {
        padding: 80px 24px;
    }

    #hero {
        padding: 0 24px 60px;
    }

    .gallery-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
    }

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

    .gallery-item:nth-child(1) {
        grid-row: span 1;
    }

    .gallery-item:nth-child(5) {
        grid-column: span 1;
    }

    .photobooth-inner {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .contact-inner {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

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

    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
    }
}






/* mentions-legales.html */

.legal-page {
    background: var(--off-black);
    min-height: 100vh;
    padding: 140px 24px 80px;
}

.legal-container {
    max-width: 900px;
    margin: 0 auto;
}

.legal-container h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 300;
    margin-bottom: 60px;
    color: var(--vert-clair);
}

.legal-container h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 300;
    margin-top: 50px;
    margin-bottom: 20px;
    color: var(--vert-clair);
}

.legal-container p {
    color: var(--brun-clair);
    line-height: 1.9;
    margin-bottom: 20px;
}

.legal-container a {
    color: var(--vert);
    text-decoration: none;
}

.legal-container a:hover {
    color: var(--vert-clair);
}