@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600;700&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&family=JetBrains+Mono:wght@400;500&display=swap');

:root {
    --color-card: rgba(0, 0, 0, 0.5);
    --color-primary: #1e1d1a;
    --color-accent: #c5a059;
    --color-accent-hover: #b48f48;
    --color-border: #e8e6e0;
    --color-success: #4a7055;
    --color-danger: #9e4747;
}

body {
    background-color: #1e1d1a;
    color: var(--color-primary);
    font-family: 'Plus Jakarta Sans', sans-serif;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow-x: hidden;
}

.luxury-title {
    font-family: 'Cinzel', serif;
    letter-spacing: 0.15em;
}

.luxury-input {
    background-color: transparent;
    border-bottom: 1px solid var(--color-border);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.luxury-input:focus {
    border-color: var(--color-accent);
    outline: none;
    padding-left: 8px;
}

.luxury-shadow {
    box-shadow: 0 30px 60px -15px rgba(30, 29, 26, 0.08);
}

/* Boutons radio personnalisés */
.session-radio {
    display: none;
}

.session-label {
    border: 1px solid var(--color-border);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
}

.session-radio:checked + .session-label {
    border-color: var(--color-accent);
    background-color: #1e1d1a;
    color: #fdfdfc;
}

/* Animations */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeOut {
    from { opacity: 1; }
    to { opacity: 0; }
}

.animate-slide-up {
    animation: slideInUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.view-transition {
    transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
