@font-face {
    font-family: 'Roxie-Rossa' ;
    src: url(assets/fonts/Roxie-Rossa.otf) format('truetype');
}

@font-face {
    font-family: 'Dingbats' ;
    src: url(assets/fonts/Karoshi-Dingbats.otf) format('truetype');
}

@font-face {
    font-family: 'Karoshi' ;
    src: url(assets/fonts/Karoshi.otf) format('truetype');
}


:root {
    --pearl: #fdfbfd;
    --cream: #F9F6F3;
    --blush: #F5E8EE;
    --rose: #E8C5D4;
    --rose-deep: #D4A0B8;
    --text: #3A3035;
    --text-soft: #7A6870;

    --Rossa: 'Roxie-Rossa', sans-serif;
    --Karoshi: 'Karoshi', sans-serif;
    --Dingbats: 'Dingbats', sans-serif;
    --Jost: 'Jost', sans-serif;

}

html, body, * {
    cursor: none !important;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--pearl);
    color: var(--text);
    font-family: var(--Jost);
    font-weight: 300;
    overflow-x: hidden;
}

/* ─── CURSOR ─── */
.cursor {
    width: 10px; height: 10px;
    background: var(--rose-deep);
    border-radius: 50%;
    position: fixed; top: 0; left: 0;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: transform 0.1s ease, width 0.3s ease, height 0.3s ease, background 0.3s ease;
    mix-blend-mode: multiply;
}

.cursor-ring {
    width: 36px; height: 36px;
    border: 3px solid var(--rose);
    border-radius: 50%;
    position: fixed; top: 0; left: 0;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    transition: transform 0.18s ease, width 0.3s ease, height 0.3s ease, border-color 0.3s ease;
}

  body.hover-active .cursor {
    width: 18px; height: 18px; background: var(--rose-deep); 
}

  body.hover-active .cursor-ring {
    border-color: var(--rose-deep);
}

@media screen and (pointer: coarse) {
    .cursor, .cursor-ring {
        display: none;
    }
}
 
nav {
    position: fixed; top: 0; left: 0; right: 0;
    z-index: 100;
    padding: 0 5vw;
    height: 72px;
    display: flex; 
    align-items: center; 
    justify-content: space-between;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(20px) saturate(1.4);
    -webkit-backdrop-filter: blur(20px) saturate(1.4);
    border-bottom: 1px solid rgba(232, 197, 212, 0.25);
    transition: box-shadow 0.4s ease;
}

.nav-logo {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 25px;
    color: var(--text);
    letter-spacing: 5px;
    text-decoration: none;
}
.nav-logo span { 
    color: var(--rose-deep); 
}

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

.nav-links a {
    font-family: var(--Jost);
    font-weight: 200;
    font-size: 13px;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--text-soft);
    text-decoration: none;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute; bottom: -4px; left: 0; right: 0;
    height: 1px;
    background: var(--rose-deep);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.3s ease;
}
.nav-links a:hover { 
    color: var(--rose-deep); 
}

.nav-links a:hover::after { 
    transform: scaleX(1); 
}

.home {
    height: 100vh; 
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    position: relative;
    text-align: center;
    overflow: hidden;
}

/* ─── DÉCORATEURS LATÉRAUX ALIGNÉS ─── */

.side-decoration {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px; 
    pointer-events: none;
    z-index: 1;
    margin-top: 0px;
}

.side-decoration.left {
    left: 5vw; 
}

.side-decoration.right {
    right: 5vw;
}

.side-text {
    font-family: var(--Karoshi);
    font-size: 35px;
    font-weight: 400;
    line-height: 1.02;
    color: var(--rose-deep);
    letter-spacing: 2px;
    margin-top: 0px;
    margin-bottom: 15px;
    padding: 0px 10px;
}

.side-decoration .line {
    width: 2px;
    height: 180px; 
    background: var(--rose-deep);
    opacity: 0.5;
}

.side-decoration .line:first-child {
    background: linear-gradient(to top, var(--rose-deep), transparent);
}

.side-decoration .line:last-child {
    background: linear-gradient(to bottom, var(--rose-deep), transparent);
}

@media screen and (max-width: 700px) {
    .side-decoration {
        display: none;
    }
}

.home-site {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: var(--Jost);
    font-weight: 200;
    font-size: 13px;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--rose-deep);
    margin-bottom: 10px;
}

.home-site span {
    font-family: var(--Karoshi);
    font-size: 35px;
    color: var(--rose-deep);
}

.home-title {
    font-family: var(--Rossa);
    font-size: clamp(50px, 8vw, 100px);
    font-weight: 400;
    line-height: 1.02;
    color: var(--text);
    letter-spacing: 2px;
    margin-top: 0;
    margin-bottom: 10px;
}

.home-title em {
    font-style: italic;
    color: var(--rose-deep);
}

.home-info {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: clamp(16px, 2.5vw, 22px);
    color: var(--text-soft);
    margin-top: 19px;
    margin-bottom: 56px;
}

.hero-btn {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-gallery {
    padding: 12px 30px;
    font-family: var(--Jost);
    font-weight: 300;
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--pearl);
    background: var(--rose-deep);
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: 0.3s ease, transform 0.2s ease;
    text-decoration: none;
}

.btn-contact {
    padding: 12px 30px;
    font-family: var(--Jost);
    text-decoration: none;
    font-weight: 300;
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--rose-deep);
    background: var(--pearl);
    border: 2px solid var(--rose-deep);
    border-radius: 50px;
    cursor: pointer;
    transition: 0.3s ease, transform 0.2s ease;
}

.btn-gallery:hover, .btn-contact:hover {
    transform: scale(1.07);
}

.about {
    height: 100vh;
    padding-top: 75px;
}

/* ─── GALLERY SECTION ─── */

.gallery {
    min-height: 100vh;
    padding: 120px 5vw 80px;
    height: auto;
}

.gallery-header {
    text-align: center;
    margin-bottom: 60px;
}

.gallery-header .section-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--Jost);
    font-weight: 200;
    font-size: 13px;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--rose-deep);
    margin-bottom: 10px;
}

.gallery-header .section-label span {
    font-family: var(--Karoshi);
    font-size: 35px;
}

.gallery-title {
    font-family: var(--Rossa);
    font-size: clamp(36px, 5vw, 64px);
    font-weight: 400;
    color: var(--text);
    letter-spacing: 2px;
    margin: 0 0 8px;
}

.gallery-title em {
    font-style: italic;
    color: var(--rose-deep);
}

/* ─── FILTER ─── */

.gallery-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 50px;
}

.filter-btn {
    padding: 9px 24px;
    font-family: var(--Jost);
    font-weight: 300;
    font-size: 12px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--text-soft);
    background: transparent;
    border: 1px solid var(--rose);
    border-radius: 50px;
    transition: all 0.5s ease;
    position: relative;
    overflow: hidden;
}

.filter-btn span {
    position: relative;
    z-index: 1;
}

.filter-btn:hover {
    color: var(--pearl);
    border-color: var(--rose-deep);
    background: var(--rose-deep);
}

.filter-btn.active {
    background: var(--rose-deep);
    color: var(--pearl);
    box-shadow: 0 5px 15px rgba(212, 160, 184, 0.5);
    transform: scale(1.05);
}

/* ─── GALLERY GRID ─── */

.gallery-grid {
    display: block;
    column-count: 3; 
    column-gap: 20px; 
    width: 100%;
}

/* Tablettes */
@media screen and (max-width: 900px) {
    .gallery-grid {
        column-count: 2;
    }
}

/* Mobiles */
@media screen and (max-width: 550px) {
    .gallery-grid {
        column-count: 1;
    }
}

.gallery-item {
    display: inline-block; 
    width: 100%;
    margin-bottom: 20px; 
    break-inside: avoid;
    overflow: hidden;
    position: relative;
    background: var(--pearl); 
    border: 2px solid rgba(232, 197, 212, 0.3); 
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(58, 48, 53, 0.05); 
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.gallery-item.hidden {
    display: none;
}

.gallery-item:not(.hidden) {
    animation: fadeInUp 0.6s ease forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.gallery-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.8s ease;
}

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

/* ─── OVERLAY ─── */

.gallery-item-info {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: auto;
    background: linear-gradient(to top, rgba(212, 160, 184, 0.95), transparent);
    padding: 40px 0px 10px 30px;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.35s ease, transform 0.35s ease;
}

.gallery-item:hover .gallery-item-info {
    opacity: 1;
    transform: translateY(0);
}

.gallery-item-info h3 {
    font-family: var(--Rossa);
    font-size: 18px;
    font-weight: 400;
    color: var(--pearl);
    margin: 0 0 4px;
    letter-spacing: 1px;
}

.gallery-item-info .item-category {
    font-family: var(--Jost);
    font-weight: 200;
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--cream);
}

/* ─── EMPTY STATE FINAL ─── */

.gallery-empty {
    display: none;
    justify-content: center;
    align-items: center;
    min-height: 300px;
    width: 100%;
}

.gallery-empty.visible {
    display: flex;
}

.gallery-empty p {
    justify-content: center;
    text-align: center; 
    align-items: center;
    display: flex;
    gap: 20px;
    font-family: var(--Jost);
    font-style: italic;
    font-size: clamp(14px, 2vw, 22px);
    color: var(--text-soft);
    white-space: nowrap; 
}

.empty-content {
    display: flex;
    align-items: center; 
    gap: 10px;
}

.gallery-empty .line-gallery {
    height: 2px;
    width: clamp(50px, 10vw, 150px);
    background: var(--rose-deep);
    opacity: 0.4;
    border-radius: 50px;
    flex-shrink: 0;
}

.gallery-empty .line-gallery:first-child {
    background: linear-gradient(to left, var(--rose-deep), transparent);
}

.gallery-empty .line-gallery:last-child {
    background: linear-gradient(to right, var(--rose-deep), transparent);
}

.gallery-empty .symbol-gallery {
    font-family: var(--Karoshi);
    font-size: 35px;
    color: var(--rose-deep);
    vertical-align: middle;
}

.contact {
    height: 100vh;
    padding-top: 75px;
}