/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Sigmar&display=swap');

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #fff;
    background: #1a1a1a;
    font-size: 17px;
}

/* Header avec dégradé de blur */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0.75rem 3rem;
}

header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: -15px;
    background: rgba(26, 26, 26, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: -1;
    mask-image: linear-gradient(to bottom, 
        black 0%, 
        black calc(100% - 15px), 
        transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, 
        black 0%, 
        black calc(100% - 15px), 
        transparent 100%);
}

/* Espacement pour le contenu sous le header */
main {
    margin-top: 80px;
    padding-bottom: 4rem;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.logo {
    font-family: "Sigmar", sans-serif;
    font-size: 1.5rem;
    font-weight: 50;
    font-style: normal;
    letter-spacing: 0.5px;
    color: #fff;
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: #fff;
    font-size: 0.875rem;
    transition: opacity 0.3s;
    font-weight: 300;
}

.nav-links a:hover {
    opacity: 0.7;
}

.nav-icons {
    display: flex;
    gap: 1.5rem;
}

.nav-icon {
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0.8;
    transition: opacity 0.3s;
    text-decoration: none;
    color: #fff;
}

.nav-icon:hover {
    opacity: 1;
}

.cart-icon {
    position: relative;
    display: inline-block;
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #fff;
    color: #000;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 600;
}

/* Hero Section avec image */
.hero-image {
    height: 100vh;
    margin-top: 0;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    position: relative;
    padding: 4rem 3rem;
}

.hero-overlay {
    text-align: left;
    color: white;
    z-index: 2;
    max-width: 700px;
}

.hero-overlay h1 {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.1;
    letter-spacing: -1px;
}

.hero-overlay p {
    font-size: 1.2rem;
    font-weight: 300;
    opacity: 0.95;
    line-height: 1.7;
}

.scroll-indicator {
    position: fixed;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 50px;
    border: 2px solid rgba(255,255,255,0.5);
    border-radius: 25px;
    cursor: pointer;
    z-index: 100;
    transition: opacity 0.3s;
}

.scroll-indicator.hidden {
    opacity: 0;
    pointer-events: none;
}

.scroll-indicator::after {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: rgba(255,255,255,0.5);
    border-radius: 2px;
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0%, 100% { opacity: 0; transform: translateX(-50%) translateY(0); }
    50% { opacity: 1; transform: translateX(-50%) translateY(10px); }
}

/* Sections sombres */
.section-dark {
    background: #1a1a1a;
    padding: 6rem 3rem;
}

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

.section-dark h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 400;
    letter-spacing: -0.5px;
}

.subtitle {
    text-align: center;
    color: #aaa;
    margin-bottom: 4rem;
    font-size: 1.15rem;
    font-weight: 300;
    line-height: 1.8;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 4rem;
}

.feature-card {
    background: #202020;
    border: 1px solid #2a2a2a;
    border-radius: 8px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: border-color 0.3s;
}

.feature-card:hover {
    border-color: #3a3a3a;
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    filter: grayscale(20%);
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    font-weight: 500;
    letter-spacing: -0.3px;
}

.feature-card p {
    font-size: 1.05rem;
    color: #aaa;
    line-height: 1.7;
    font-weight: 300;
}

/* Cartes de types */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 4rem;
}

.card-type {
    background: #202020;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s;
}

.card-type:hover {
    transform: translateY(-4px);
}

.card-type.highlighted {
    background: linear-gradient(135deg, #1a2332 0%, #2a3a52 100%);
    box-shadow: 0 8px 30px rgba(42, 74, 124, 0.3);
}

.card-image {
    width: 100%;
    height: 280px;
    overflow: hidden;
}

.placeholder-img {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.card-content {
    padding: 2rem;
    text-align: center;
}

.card-type h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 500;
    letter-spacing: -0.5px;
}

.card-type p {
    font-size: 1.05rem;
    color: #bbb;
    line-height: 1.8;
    margin-bottom: 2rem;
    font-weight: 300;
}

/* Boutons */
.btn {
    display: inline-block;
    padding: 0.875rem 2.5rem;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 500;
    font-size: 0.8rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: #fff;
    color: #000;
}

.btn-primary:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: #fff;
    border: 1px solid #fff;
}

.btn-secondary:hover {
    background: rgba(255,255,255,0.1);
}

.btn-light {
    background: #fff;
    color: #000;
    width: 100%;
    font-weight: 600;
}

.btn-light:hover {
    background: #f5f5f5;
    transform: translateY(-2px);
}

/* Lieux populaires */
.popular-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.popular-header h2 {
    text-align: left;
    margin: 0;
}

.carousel-nav {
    display: flex;
    gap: 1rem;
}

.carousel-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #1a1a1a;
    border: 1px solid #2a2a2a;
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.carousel-btn:hover {
    background: #2a2a2a;
    border-color: #3a3a3a;
}

.popular-places {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.place-card {
    background: #151515;
    border-radius: 12px;
    overflow: visible;
    transition: all 0.2s ease-out;
    position: relative;
    z-index: 1;
    filter: blur(0px);
}

.place-card:hover {
    transform: scale(1.25) translateY(-30px);
    z-index: 100;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.6);
    filter: blur(0px) drop-shadow(0 0 20px rgba(0, 0, 0, 0.5));
}

/* Backdrop blur effect derrière la carte agrandie */
.place-card::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0);
    backdrop-filter: blur(0px);
    -webkit-backdrop-filter: blur(0px);
    pointer-events: none;
    transition: all 0.2s ease-out;
    opacity: 0;
    z-index: -1;
}

.place-card:hover::before {
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    opacity: 1;
}

/* Appliquer le blur aux cartes non survolées */
.popular-places:has(.place-card:hover) .place-card:not(:hover) {
    filter: blur(3px);
    opacity: 0.7;
    transition: all 0.2s ease-out;
}

/* Appliquer le blur au titre et aux boutons quand une carte est survolée */
.section-dark:has(.place-card:hover) .section-header,
.section-dark:has(.place-card:hover) .carousel-button {
    filter: blur(3px);
    opacity: 0.7;
    transition: all 0.2s ease-out;
}

/* === SYSTÈME D'IMAGES OVERLAY === */
.place-image {
    width: 100%;
    height: 250px;
    position: relative;
    overflow: hidden;
    border-radius: 12px 12px 0 0;
    background: transparent;
}

/* Overlay "Bientôt" */
.bientot-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    pointer-events: none;
}

.bientot-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

/* Flouter les images quand statut = bientot */
.place-card[data-statut="bientot"] .place-image-slide img {
    filter: blur(8px) grayscale(0.5);
}

/* Désactiver le carrousel sur les cartes "bientot" */
.place-card[data-statut="bientot"] {
    cursor: not-allowed;
}

.place-card[data-statut="bientot"]:hover {
    transform: none !important;
}

/* Style du texte "Bientôt disponible" */
.place-status-bientot {
    color: #ff9800;
    font-weight: 600;
    font-size: 1.1rem;
    margin: 1rem 0;
}

.place-image-slider {
    position: relative;
    width: 100%;
    height: 100%;
    background: transparent;
}

.place-image-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.place-image-slide:first-child {
    opacity: 1;
}

.place-image-slide.active {
    opacity: 1;
    z-index: 2;
}

.place-image-slide img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

/* Fallback pour place-layer si utilisé directement */
.place-layer {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.place-layer:first-child {
    opacity: 1;
}

.place-layer.active {
    opacity: 1;
    z-index: 2;
}

.place-card-content {
    padding: 1.5rem;
}

.place-card h4 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    font-weight: 500;
    letter-spacing: -0.3px;
}

.place-card h4 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    font-weight: 500;
    letter-spacing: -0.3px;
}

.place-card p {
    font-size: 1.05rem;
    color: #999;
    margin-bottom: 0.5rem;
}

.place-price {
    font-size: 1.15rem;
    font-weight: 400;
    margin: 1rem 0 1.5rem 0;
    color: #fff !important;
}

/* Footer */
footer {
    background: #1a1a1a;
    border-top: 1px solid #2a2a2a;
    padding: 4rem 3rem 2rem;
}

/* === PAGE À PROPOS === */
.about-section {
    background: #1f1f1f;
    border-radius: 12px;
    padding: 2.5rem;
    margin-bottom: 2.5rem;
    border: 1px solid #2a2a2a;
}

/* === AUTHENTIFICATION === */
.auth-box {
    background: #1f1f1f;
    border-radius: 12px;
    padding: 2.5rem;
    border: 1px solid #2a2a2a;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #e0e0e0;
    font-weight: 500;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.75rem 1rem;
    background: #151515;
    border: 1px solid #3a3a3a;
    border-radius: 8px;
    color: #fff;
    font-size: 1rem;
    transition: border-color 0.2s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #6ba3c0;
}

.form-group small {
    display: block;
    margin-top: 0.25rem;
    font-size: 0.85rem;
}

.btn-block {
    width: 100%;
}

.alert {
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.alert-success {
    background: rgba(76, 175, 80, 0.1);
    border: 1px solid rgba(76, 175, 80, 0.3);
    color: #81c784;
}

.alert-error {
    background: rgba(244, 67, 54, 0.1);
    border: 1px solid rgba(244, 67, 54, 0.3);
    color: #e57373;
}

/* === TOGGLE SWITCH === */
.toggle-switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 30px;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #3a3a3a;
    transition: 0.3s;
    border-radius: 30px;
}

.toggle-slider:before {
    position: absolute;
    content: "";
    height: 22px;
    width: 22px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: 0.3s;
    border-radius: 50%;
}

.toggle-switch input:checked + .toggle-slider {
    background-color: #6ba3c0;
}

.toggle-switch input:checked + .toggle-slider:before {
    transform: translateX(30px);
}

/* === POSITION GRID === */
.position-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
    max-width: 200px;
    margin: 1rem 0;
}

.position-grid input[type="radio"] {
    display: none;
}

.position-box {
    aspect-ratio: 1;
    border: 2px solid #3a3a3a;
    border-radius: 8px;
    background: #2a2a2a;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s;
    user-select: none;
    text-align: center;
    line-height: 1;
}

.position-box:hover {
    border-color: #6ba3c0;
    background: #333;
}

.position-grid input[type="radio"]:checked + .position-box {
    border-color: #6ba3c0;
    background: rgba(107, 163, 192, 0.2);
    color: #6ba3c0;
    font-weight: bold;
}

/* === COMPTE UTILISATEUR === */
.account-section {
    background: #1f1f1f;
    border-radius: 12px;
    padding: 2rem;
    border: 1px solid #2a2a2a;
}

.account-section h2 {
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    color: #fff;
    border-bottom: 2px solid #3a5a6c;
    padding-bottom: 0.75rem;
}

.info-box {
    padding: 1.5rem;
    background: #151515;
    border-radius: 8px;
    border: 1px solid #2a2a2a;
}

.info-box p {
    margin-bottom: 0.75rem;
    color: #b0b0b0;
}

.info-box p:last-child {
    margin-bottom: 0;
}

.about-section h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: #fff;
    border-bottom: 2px solid #3a5a6c;
    padding-bottom: 0.75rem;
}

.about-section h3 {
    font-size: 1.3rem;
    margin: 1.5rem 0 1rem 0;
    color: #e0e0e0;
}

.about-content p {
    line-height: 1.8;
    color: #b0b0b0;
    margin-bottom: 1rem;
}

.about-content ul, .about-content ol {
    margin-left: 2rem;
    color: #b0b0b0;
    line-height: 1.8;
}

.about-content li {
    margin-bottom: 0.5rem;
}

.about-content a {
    color: #6ba3c0;
    text-decoration: none;
}

.about-content a:hover {
    text-decoration: underline;
}

.timing-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1rem;
}

.timing-table thead {
    background: #2a2a2a;
}

.timing-table th, .timing-table td {
    padding: 1rem;
    text-align: left;
    border: 1px solid #3a3a3a;
}

.timing-table th {
    font-weight: 600;
    color: #fff;
}

.timing-table td {
    color: #b0b0b0;
}

.timing-table tbody tr:hover {
    background: #252525;
}


.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-col h4 {
    margin-bottom: 1.5rem;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #fff;
}

.footer-col p {
    font-size: 0.95rem;
    line-height: 1.8;
    color: #999;
    font-weight: 300;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 0.75rem;
}

.footer-col ul li a {
    color: #999;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 300;
    transition: color 0.3s;
}

.footer-col ul li a:hover {
    color: #fff;
}

.newsletter-form {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
}

.newsletter-form input {
    flex: 1;
    padding: 0.75rem 1rem;
    border: 1px solid #3a3a3a;
    background: #202020;
    color: #fff;
    border-radius: 6px;
    font-size: 1.05rem;
}

.newsletter-form input::placeholder {
    color: #555;
}

.newsletter-form button {
    padding: 0.75rem 2rem;
    font-size: 0.875rem;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid #2a2a2a;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.95rem;
    color: #777;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: #777;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #999;
}

/* Formulaires */
.form-container {
    max-width: 1400px;
    margin: 2rem auto;
    margin-top: 100px;
    padding: 2rem 3rem;
    background: #1a1a1a;
    min-height: 100vh;
}

.form-container h1 {
    color: #fff;
    margin-bottom: 0.5rem;
}

.form-container > p {
    color: #999;
    margin-bottom: 2rem;
    font-size: 1.05rem;
}

.form-section {
    background: #202020;
    padding: 2rem;
    margin-bottom: 2rem;
    border-radius: 12px;
    border: 1px solid #2a2a2a;
}

.form-section h2 {
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    font-weight: 500;
    color: #fff;
}

.form-group {
    margin-bottom: 1.5rem;
}

label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 400;
    color: #ccc;
    font-size: 1rem;
}

input[type="text"],
input[type="email"],
input[type="password"],
input[type="tel"],
input[type="number"],
textarea,
select {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 1px solid #3a3a3a;
    background: #252525;
    color: #fff;
    border-radius: 6px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

input:focus,
textarea:focus,
select:focus {
    outline: none;
    border-color: #4a4a4a;
}

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

small {
    color: #888;
    font-size: 0.9rem;
    display: block;
    margin-top: 0.25rem;
}

.options-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.option-card {
    border: 2px solid #2a2a2a;
    background: #252525;
    border-radius: 8px;
    padding: 1.5rem 1rem;
    cursor: pointer;
    transition: all 0.3s;
    text-align: center;
}

.option-card:hover {
    border-color: #3a3a3a;
}

.option-card input[type="radio"] {
    display: none;
}

.option-card input[type="radio"]:checked + div {
    background: transparent;
}
.option-card:has(input:checked) {
    border-color: #fff;
    background: #0a0a0a;
}

.checkbox-option {
    display: flex;
    align-items: flex-start;
    padding: 1.25rem;
    border: 1px solid #2a2a2a;
    background: #252525;
    border-radius: 8px;
    margin-bottom: 0.75rem;
    cursor: pointer;
    transition: all 0.3s;
}

.checkbox-option:hover {
    border-color: #3a3a3a;
    background: #2a2a2a;
}

.checkbox-option input[type="checkbox"] {
    margin-right: 1rem;
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.preview-container {
    background: #202020;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #2a2a2a;
    position: sticky;
    top: 100px;
}

.preview-container h3 {
    color: #fff;
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
}

.map-preview {
    width: 100%;
    aspect-ratio: 3/4;
    background: #252525;
    border: 2px solid #3a3a3a;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.map-preview p {
    color: #888;
}

.price-summary {
    text-align: center;
    padding: 1.5rem;
    background: #252525;
    border-radius: 8px;
    margin-top: 1rem;
}

.price-summary p {
    color: #999;
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.price-summary .total {
    font-size: 2.5rem;
    font-weight: 600;
    color: #fff;
    margin: 1rem 0;
}

.two-column {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 3rem;
}

/* Dashboard */
.dashboard {
    max-width: 1400px;
    margin: 2rem auto;
    margin-top: 100px;
    padding: 2rem 3rem;
    background: #1a1a1a;
    min-height: 100vh;
}

.dashboard h1 {
    color: #fff;
    margin-bottom: 2rem;
}

.dashboard-grid {
    display: grid;
    gap: 2rem;
}

.card {
    background: #202020;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #2a2a2a;
}

.card h2 {
    color: #fff;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.status {
    display: inline-block;
    padding: 0.375rem 0.875rem;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.status-en_attente, .status-nouveau {
    background: rgba(255, 193, 7, 0.15);
    color: #ffc107;
}

.status-en_production, .status-en_cours {
    background: rgba(33, 150, 243, 0.15);
    color: #2196f3;
}

.status-expedie, .status-envoye {
    background: rgba(76, 175, 80, 0.15);
    color: #4caf50;
}

.status-termine, .status-accepte {
    background: rgba(156, 39, 176, 0.15);
    color: #9c27b0;
}

.status-annule, .status-refuse {
    background: rgba(244, 67, 54, 0.15);
    color: #f44336;
}

.status-rembourse {
    background: rgba(255, 152, 0, 0.15);
    color: #ff9800;
}

.status-litige {
    background: rgba(255, 61, 61, 0.2);
    color: #ff3d3d;
    animation: pulse-litige 2s infinite;
}

@keyframes pulse-litige {
    0%, 100% { opacity: 1; }
    50%       { opacity: 0.6; }
}

table {
    width: 100%;
    border-collapse: collapse;
}

th, td {
    padding: 1rem 0.75rem;
    text-align: left;
    border-bottom: 1px solid #1a1a1a;
}

th {
    font-weight: 500;
    background: #0a0a0a;
    color: #999;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

td {
    color: #ccc;
    font-size: 0.95rem;
}

.auth-container {
    max-width: 420px;
    margin: 6rem auto;
    padding: 2rem;
    background: #1a1a1a;
    min-height: 100vh;
}

.auth-container .card {
    padding: 2.5rem;
}

.auth-container h1 {
    margin-bottom: 2rem;
    font-size: 1.75rem;
}

.error {
    background: rgba(244, 67, 54, 0.15);
    color: #f44336;
    padding: 0.875rem;
    border-radius: 6px;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(244, 67, 54, 0.3);
}

.success {
    background: rgba(76, 175, 80, 0.15);
    color: #4caf50;
    padding: 0.875rem;
    border-radius: 6px;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(76, 175, 80, 0.3);
}

/* Responsive */
@media (max-width: 1024px) {
    .two-column {
        grid-template-columns: 1fr;
    }
    
    .preview-container {
        position: static;
    }
    
    .features-grid,
    .cards-grid,
    .popular-places {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .hero-overlay h1 {
        font-size: 2.5rem;
    }
}