
:root {
    --navy: #001A35;
    --gold: #E5C492;
}

body {
    font-family: 'Montserrat', sans-serif;
}

.font-serif { font-family: 'Playfair Display', serif; }
.font-handwritten { font-family: 'Great Vibes', cursive; }

.gold-gradient {
    background: linear-gradient(45deg, #B8860B, #FFD700, #E5C492, #B8860B);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-blur {
    backdrop-filter: blur(15px);
    background-color: rgba(0, 26, 53, 0.85);
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.animate-ping-slow {
    animation: ping 3s cubic-bezier(0, 0, 0.2, 1) infinite;
}

@keyframes ping {
    75%, 100% { transform: scale(1.5); opacity: 0; }
}

/* Formulaire */
.form-label {
    display: block;
    font-size: 10px;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.3em;
    opacity: 0.6;
    margin-bottom: 8px;
}

.form-input {
    width: 100%;
    background: transparent;
    border-bottom: 2px solid rgba(0, 26, 53, 0.1);
    padding: 12px 0;
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 1.25rem;
    outline: none;
    transition: all 0.3s;
}

.form-input:focus {
    border-color: var(--navy);
}

.check-container {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    background: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: background 0.3s;
}

.check-container:hover { background: rgba(255, 255, 255, 0.4); }

.custom-checkbox {
    appearance: none;
    width: 24px;
    height: 24px;
    border: 2px solid rgba(0, 26, 53, 0.2);
    background: white;
    cursor: pointer;
    position: relative;
    transition: all 0.3s;
}

.custom-checkbox:checked {
    background: var(--navy);
    border-color: var(--navy);
}

.custom-checkbox:checked::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--gold);
    font-size: 14px;
    font-weight: bold;
}

.label { font-size: 9px; text-transform: uppercase; letter-spacing: 0.4em; opacity: 0.4; font-weight: 700; }
.val { font-family: 'Playfair Display', serif; font-style: italic; font-size: 1.5rem; }

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--navy); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 10px; }
