/* ============================================
   RESET & BASE - HÔTEL ATTIELOH PRESTIGE
============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

:root {
    --primary: #C9A96E;
    --primary-dark: #A8884A;
    --primary-light: #E8D5A3;
    --dark: #0F1A2E;
    --dark-light: #1A2A4A;
    --light: #FDF6E3;
    --white: #FFFDF8;
    --shadow: 0 20px 60px rgba(0,0,0,0.06);
    --shadow-hover: 0 40px 80px rgba(0,0,0,0.1);
    --shadow-gold: 0 12px 40px rgba(201, 169, 110, 0.2);
    --radius: 18px;
    --transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --font-primary: 'Cormorant Garamond', serif;
    --font-secondary: 'Inter', sans-serif;
}

html, body {
    width: 100%;
    overflow-x: hidden;
}

body {
    font-family: var(--font-secondary);
    color: #333;
    line-height: 1.7;
    background: var(--light);
    cursor: none;
}

.container-prestige {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ============================================
   CURSOR PERSONNALISÉ
============================================ */
.cursor-prestige {
    position: fixed;
    width: 40px;
    height: 40px;
    border: 2px solid var(--primary);
    border-radius: 50%;
    pointer-events: none;
    z-index: 99999;
    transition: width 0.4s, height 0.4s, opacity 0.4s;
    transform: translate(-50%, -50%);
    opacity: 0;
}

.cursor-prestige.active {
    width: 60px;
    height: 60px;
    opacity: 1;
}

.cursor-prestige-dot {
    position: fixed;
    width: 6px;
    height: 6px;
    background: var(--primary);
    border-radius: 50%;
    pointer-events: none;
    z-index: 99999;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 0.4s;
}

.cursor-prestige-dot.active {
    opacity: 1;
}

@media (max-width: 768px) {
    .cursor-prestige, .cursor-prestige-dot {
        display: none;
    }
    body {
        cursor: auto;
    }
}

/* ============================================
   LOADING PRESTIGE
============================================ */
.loader-prestige {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--dark);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.8s ease;
}

.loader-prestige.fade-out {
    opacity: 0;
    pointer-events: none;
}

.loader-prestige-content {
    text-align: center;
}

.loader-prestige-ring {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto 30px;
}

.loader-prestige-ring-inner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 2px solid rgba(201, 169, 110, 0.1);
    border-radius: 50%;
    animation: ringPulse 2s ease-in-out infinite;
}

.loader-prestige-ring-outer {
    position: absolute;
    top: -10px;
    left: -10px;
    width: calc(100% + 20px);
    height: calc(100% + 20px);
    border: 2px solid transparent;
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: ringSpin 1.5s linear infinite;
}

@keyframes ringPulse {
    0%, 100% { transform: scale(1); opacity: 0.3; }
    50% { transform: scale(1.2); opacity: 0.8; }
}

@keyframes ringSpin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.loader-prestige-text {
    font-family: var(--font-primary);
    font-size: 1.6rem;
    letter-spacing: 6px;
    color: var(--white);
    display: block;
    margin-bottom: 30px;
}

.loader-prestige-bar {
    width: 240px;
    height: 2px;
    background: rgba(255,255,255,0.05);
    border-radius: 2px;
    margin: 0 auto;
    overflow: hidden;
}

.loader-prestige-bar::after {
    content: '';
    display: block;
    width: 30%;
    height: 100%;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    animation: loadingBar 1.2s ease-in-out infinite;
}

@keyframes loadingBar {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(400%); }
}

/* ============================================
   HEADER PRESTIGE
============================================ */
.header-prestige {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 0 2rem;
    z-index: 1000;
    transition: var(--transition);
    background: transparent;
}

.header-prestige.scrolled {
    background: rgba(15, 26, 46, 0.92);
    backdrop-filter: blur(20px);
    box-shadow: 0 2px 40px rgba(0,0,0,0.1);
    border-bottom: 1px solid rgba(201, 169, 110, 0.08);
}

.navbar-prestige {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 75px;
    max-width: 1200px;
    margin: 0 auto;
}

.logo-prestige {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.4rem;
    font-weight: 600;
    font-family: var(--font-primary);
}

.logo-prestige-img {
    height: 45px;
    width: auto;
}

.logo-prestige-text {
    color: var(--white);
}

.logo-prestige-highlight {
    color: var(--primary);
}

.nav-links-prestige {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.nav-links-prestige a {
    font-size: 0.8rem;
    padding: 0.5rem 0;
    color: rgba(255,255,255,0.5);
    transition: var(--transition);
    position: relative;
    display: flex;
    align-items: center;
    gap: 6px;
    letter-spacing: 0.5px;
}

.nav-links-prestige a i {
    color: var(--primary);
    opacity: 0.4;
    font-size: 0.8rem;
}

.nav-links-prestige a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    width: 0;
    height: 1.5px;
    background: var(--primary);
    transition: var(--transition);
    transform: translateX(-50%);
}

.nav-links-prestige a:hover::after,
.nav-links-prestige a.active::after {
    width: 60%;
}

.nav-links-prestige a:hover,
.nav-links-prestige a.active {
    color: var(--white);
}

.nav-links-prestige a:hover i {
    opacity: 1;
}

.nav-actions-prestige {
    display: flex;
    align-items: center;
    gap: 18px;
}

.btn-reserve-prestige {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    padding: 0.6rem 2rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    transition: var(--transition);
    letter-spacing: 1px;
    text-transform: uppercase;
    box-shadow: 0 4px 20px rgba(201, 169, 110, 0.15);
}

.btn-reserve-prestige:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 35px rgba(201, 169, 110, 0.3);
}

.menu-toggle-prestige {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.menu-toggle-prestige .bar {
    width: 28px;
    height: 2px;
    background: var(--white);
    transition: var(--transition);
    border-radius: 2px;
}

.menu-toggle-prestige.active .bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.menu-toggle-prestige.active .bar:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.menu-toggle-prestige.active .bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ============================================
   BOUTON RETOUR EN HAUT
============================================ */
.back-to-top-prestige {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 25px rgba(0,0,0,0.08);
    transition: var(--transition);
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    color: var(--dark);
    opacity: 0;
    visibility: hidden;
    transform: translateY(30px);
}

.back-to-top-prestige.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top-prestige:hover {
    transform: scale(1.1);
}

/* ============================================
   HERO PRESTIGE - EFFET CUBE 3D
============================================ */
.hero-prestige {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    overflow: hidden;
    perspective: 1200px;
}

.hero-prestige-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.particle-gold {
    position: absolute;
    background: rgba(201, 169, 110, 0.2);
    border-radius: 50%;
    pointer-events: none;
    animation: floatParticle linear infinite;
}

@keyframes floatParticle {
    0% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { transform: translateY(-10vh) rotate(720deg); opacity: 0; }
}

/* ===== CUBE 3D SLIDESHOW ===== */
.hero-prestige-slideshow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    transition: transform 1.2s cubic-bezier(0.65, 0, 0.35, 1);
}

.hero-prestige-slideshow .slide-prestige {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    backface-visibility: hidden;
    transform-origin: center center;
}

/* Position des faces du cube */
.hero-prestige-slideshow .slide-prestige:nth-child(1) {
    transform: translateZ(0px);
}

.hero-prestige-slideshow .slide-prestige:nth-child(2) {
    transform: rotateY(90deg) translateZ(0px);
}

.hero-prestige-slideshow .slide-prestige:nth-child(3) {
    transform: rotateY(180deg) translateZ(0px);
}

/* Rotation du cube */
.hero-prestige-slideshow.active-0 {
    transform: rotateY(0deg);
}

.hero-prestige-slideshow.active-1 {
    transform: rotateY(-90deg);
}

.hero-prestige-slideshow.active-2 {
    transform: rotateY(-180deg);
}

/* ===== OVERLAY ===== */
.hero-prestige-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(15, 26, 46, 0.7) 0%, rgba(15, 26, 46, 0.2) 100%);
    z-index: 1;
    transform-style: preserve-3d;
    transform: translateZ(1px);
}

/* ===== CONTENU HERO ===== */
.hero-prestige-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}

.hero-prestige-badge {
    display: inline-block;
    padding: 6px 24px;
    border: 1px solid rgba(201, 169, 110, 0.2);
    border-radius: 50px;
    font-size: 0.65rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--primary-light);
    margin-bottom: 24px;
    backdrop-filter: blur(10px);
    background: rgba(201, 169, 110, 0.05);
}

.hero-prestige-title {
    font-family: var(--font-primary);
    font-size: 4.2rem;
    font-weight: 600;
    margin-bottom: 1.2rem;
    line-height: 1.1;
    text-shadow: 0 2px 40px rgba(0,0,0,0.2);
}

.hero-prestige-title::before {
    content: '';
    display: block;
    width: 60px;
    height: 2px;
    background: var(--primary);
    margin: 0 auto 1.2rem;
}

.hero-prestige-desc {
    font-size: 1.2rem;
    font-weight: 300;
    color: rgba(255,255,255,0.7);
    margin-bottom: 2.5rem;
}

.hero-prestige-buttons {
    display: flex;
    gap: 18px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary-prestige {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    padding: 1rem 3rem;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-size: 0.8rem;
    box-shadow: 0 4px 25px rgba(201, 169, 110, 0.2);
}

.btn-primary-prestige:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 45px rgba(201, 169, 110, 0.35);
}

.btn-outline-prestige {
    display: inline-block;
    background: transparent;
    color: var(--white);
    padding: 1rem 3rem;
    border-radius: 50px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: var(--transition);
    border: 1px solid rgba(255,255,255,0.15);
    cursor: pointer;
    font-size: 0.8rem;
}

.btn-outline-prestige:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-3px);
    background: rgba(201, 169, 110, 0.05);
}

.btn-secondary-prestige {
    display: inline-block;
    background: var(--dark);
    color: var(--white);
    padding: 0.6rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
    border: 2px solid var(--dark);
    cursor: pointer;
    font-size: 0.8rem;
}

.btn-secondary-prestige:hover {
    background: transparent;
    color: var(--dark);
    transform: translateY(-2px);
}

.hero-prestige-indicators {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 14px;
    z-index: 2;
}

.hero-prestige-indicators .dot-prestige {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
    cursor: pointer;
    transition: var(--transition);
    border: 1px solid rgba(255,255,255,0.05);
}

.hero-prestige-indicators .dot-prestige.active {
    background: var(--primary);
    transform: scale(1.3);
    border-color: var(--primary);
}

.hero-prestige-scroll {
    position: absolute;
    bottom: 40px;
    right: 40px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    color: rgba(255,255,255,0.2);
    font-size: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    animation: scrollBounce 2s infinite;
}

@keyframes scrollBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(8px); }
}

/* ============================================
   STATS PRESTIGE
============================================ */
.stats-prestige {
    background: var(--white);
    padding: 50px 0;
    border-bottom: 1px solid rgba(201, 169, 110, 0.06);
}

.stats-prestige-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

.stats-prestige-item {
    padding: 10px;
}

.stats-prestige-number {
    display: block;
    font-family: var(--font-primary);
    font-size: 3.2rem;
    font-weight: 600;
    color: var(--primary);
    line-height: 1.1;
}

.stats-prestige-label {
    font-size: 0.85rem;
    color: #888;
    font-weight: 400;
}

/* ============================================
   SECTIONS PRESTIGE
============================================ */
.section-prestige {
    padding: 100px 0;
}

.section-prestige-head {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-prestige-tag {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 6px;
    color: var(--primary);
    font-weight: 400;
    display: block;
    margin-bottom: 10px;
}

.section-prestige-title {
    font-family: var(--font-primary);
    font-size: 3rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 12px;
    line-height: 1.1;
}

.section-prestige-title span {
    color: var(--primary);
}

.section-prestige-desc {
    color: #888;
    font-size: 1rem;
    font-weight: 300;
}

.alt-bg-prestige {
    background: var(--light);
    padding: 100px 0;
    border-radius: 60px 60px 0 0;
}

/* ============================================
   CHAMBRES PRESTIGE
============================================ */
.cards-prestige-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.card-prestige {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.card-prestige:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-hover);
}

.card-prestige-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.card-prestige-image img {
    transition: var(--transition);
}

.card-prestige:hover .card-prestige-image img {
    transform: scale(1.06);
}

.card-prestige-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    padding: 4px 16px;
    border-radius: 50px;
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(201, 169, 110, 0.3);
}

.card-prestige-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 60%, rgba(15, 26, 46, 0.2));
    opacity: 0;
    transition: var(--transition);
}

.card-prestige:hover .card-prestige-overlay {
    opacity: 1;
}

.card-prestige-content {
    padding: 1.5rem 1.8rem 1.8rem;
}

.card-prestige-content h3 {
    font-size: 1.2rem;
    margin-bottom: 0.4rem;
    color: var(--dark);
    font-family: var(--font-primary);
}

.card-prestige-content p {
    color: #777;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.card-prestige-prix {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 1.2rem;
}

.card-prestige-prix span {
    font-size: 0.85rem;
    color: #888;
}

.card-prestige-prix strong {
    color: var(--primary-dark);
}

/* ============================================
   SERVICES PRESTIGE
============================================ */
.services-prestige-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    text-align: center;
}

.service-prestige-item {
    background: var(--white);
    padding: 2.5rem 1.8rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.service-prestige-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.service-prestige-icon {
    font-size: 2.8rem;
    color: var(--primary);
    margin-bottom: 1.2rem;
}

.service-prestige-item h3 {
    font-size: 1.1rem;
    margin-bottom: 0.6rem;
    color: var(--dark);
    font-family: var(--font-primary);
}

.service-prestige-item p {
    color: #777;
    font-size: 0.9rem;
}

/* ============================================
   RÉSERVATION PRESTIGE
============================================ */
.reservation-prestige {
    background: var(--white);
    padding: 100px 0;
}

.reservation-prestige-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: flex-start;
    max-width: 1100px;
    margin: 0 auto;
}

.reservation-prestige-form {
    flex: 2;
    min-width: 320px;
    background: var(--light);
    padding: 2.5rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.reservation-prestige-form:hover {
    box-shadow: var(--shadow-hover);
}

.reservation-prestige-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.reservation-prestige-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.reservation-prestige-group label {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--dark);
    display: flex;
    align-items: center;
    gap: 8px;
}

.reservation-prestige-group label i {
    color: var(--primary);
    font-size: 0.9rem;
}

.reservation-prestige-group input,
.reservation-prestige-group select {
    padding: 0.9rem 1.2rem;
    border: 2px solid rgba(0,0,0,0.04);
    border-radius: 12px;
    font-size: 0.95rem;
    font-family: var(--font-secondary);
    background: var(--white);
    transition: var(--transition);
}

.reservation-prestige-group input:focus,
.reservation-prestige-group select:focus {
    border-color: var(--primary);
    outline: none;
    box-shadow: 0 0 0 4px rgba(201, 169, 110, 0.06);
}

.reservation-prestige-submit {
    grid-column: span 2;
    display: flex;
    align-items: flex-end;
}

.reservation-prestige-submit .btn-primary-prestige {
    width: 100%;
    text-align: center;
    box-shadow: 0 4px 25px rgba(201, 169, 110, 0.2);
}

.reservation-prestige-submit .btn-primary-prestige i {
    margin-right: 10px;
}

.reservation-prestige-result {
    margin-top: 1.5rem;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    display: none;
    font-weight: 500;
    text-align: center;
}

.reservation-prestige-result.success {
    display: block;
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.reservation-prestige-result.error {
    display: block;
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.reservation-prestige-result.info {
    display: block;
    background: #d1ecf1;
    color: #0c5464;
    border: 1px solid #bee5eb;
}

/* ===== INFOS RÉSERVATION ===== */
.reservation-prestige-infos {
    flex: 1;
    min-width: 240px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.reservation-prestige-card {
    background: var(--white);
    padding: 1.8rem 1.5rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
}

.reservation-prestige-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.reservation-prestige-card i {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 0.8rem;
}

.reservation-prestige-card h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 4px;
}

.reservation-prestige-card p {
    font-size: 0.85rem;
    color: #777;
    line-height: 1.5;
}

/* ============================================
   GALERIE PRESTIGE
============================================ */
.gallery-prestige-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.gallery-prestige-item {
    border-radius: var(--radius);
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    aspect-ratio: 4/3;
}

.gallery-prestige-item img {
    transition: var(--transition);
}

.gallery-prestige-item:hover img {
    transform: scale(1.06);
}

.gallery-prestige-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 26, 46, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
    backdrop-filter: blur(2px);
}

.gallery-prestige-item:hover .gallery-prestige-overlay {
    opacity: 1;
}

.gallery-prestige-overlay i {
    color: var(--white);
    font-size: 2rem;
    transform: scale(0.8);
    transition: var(--transition);
}

.gallery-prestige-item:hover .gallery-prestige-overlay i {
    transform: scale(1);
}

/* LIGHTBOX PRESTIGE */
.lightbox-prestige {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.95);
    z-index: 99999;
    justify-content: center;
    align-items: center;
    padding: 40px;
}

.lightbox-prestige.active {
    display: flex;
}

.lightbox-prestige img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    border-radius: 12px;
}

.close-btn-prestige {
    position: absolute;
    top: 30px;
    right: 40px;
    color: var(--white);
    font-size: 3.5rem;
    cursor: pointer;
    transition: var(--transition);
}

.close-btn-prestige:hover {
    transform: rotate(90deg);
}

/* ============================================
   NEWSLETTER PRESTIGE - ANIMATION 3D
============================================ */
.newsletter-prestige {
    background: linear-gradient(135deg, var(--dark), var(--dark-light));
    color: var(--white);
    border-radius: 60px;
    padding: 80px 0 !important;
    margin: 40px auto;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.newsletter-prestige-box {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    perspective: 1000px;
}

/* Conteneur 3D */
.hotel-3d-container {
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 1200px;
    padding: 40px 0;
    position: relative;
}

.hotel-3d-wrapper {
    width: 500px;
    height: 120px;
    position: relative;
    transform-style: preserve-3d;
    animation: rotate3D 12s infinite linear;
}

/* Faces du cube 3D */
.hotel-3d-face {
    position: absolute;
    width: 500px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-primary);
    font-size: 2.2rem;
    font-weight: 700;
    letter-spacing: 10px;
    color: var(--primary);
    background: rgba(201, 169, 110, 0.05);
    border: 2px solid rgba(201, 169, 110, 0.15);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    text-shadow: 
        0 0 20px rgba(201, 169, 110, 0.2),
        0 0 60px rgba(201, 169, 110, 0.05);
    box-shadow: 
        inset 0 0 60px rgba(201, 169, 110, 0.03),
        0 20px 60px rgba(0, 0, 0, 0.3);
}

/* Position des faces du cube */
.hotel-3d-face.front {
    transform: translateZ(60px);
    background: rgba(201, 169, 110, 0.08);
    border-color: rgba(201, 169, 110, 0.25);
}

.hotel-3d-face.back {
    transform: rotateY(180deg) translateZ(60px);
    background: rgba(201, 169, 110, 0.04);
    border-color: rgba(201, 169, 110, 0.1);
}

.hotel-3d-face.left {
    transform: rotateY(-90deg) translateZ(60px);
    background: rgba(201, 169, 110, 0.06);
    border-color: rgba(201, 169, 110, 0.15);
}

.hotel-3d-face.right {
    transform: rotateY(90deg) translateZ(60px);
    background: rgba(201, 169, 110, 0.06);
    border-color: rgba(201, 169, 110, 0.15);
}

.hotel-3d-face.top {
    transform: rotateX(90deg) translateZ(60px);
    background: rgba(201, 169, 110, 0.05);
    border-color: rgba(201, 169, 110, 0.12);
}

.hotel-3d-face.bottom {
    transform: rotateX(-90deg) translateZ(60px);
    background: rgba(201, 169, 110, 0.05);
    border-color: rgba(201, 169, 110, 0.12);
}

/* Animation de rotation 3D */
@keyframes rotate3D {
    0% {
        transform: rotateX(0deg) rotateY(0deg);
    }
    25% {
        transform: rotateX(5deg) rotateY(90deg);
    }
    50% {
        transform: rotateX(0deg) rotateY(180deg);
    }
    75% {
        transform: rotateX(-5deg) rotateY(270deg);
    }
    100% {
        transform: rotateX(0deg) rotateY(360deg);
    }
}

/* Effet de brillance */
.hotel-3d-wrapper::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(
        ellipse at center,
        rgba(201, 169, 110, 0.05) 0%,
        transparent 70%
    );
    pointer-events: none;
    z-index: 10;
    border-radius: 50%;
}

/* Effet de particules lumineuses autour */
.hotel-3d-container::before,
.hotel-3d-container::after {
    content: '✦';
    position: absolute;
    font-size: 3rem;
    color: var(--primary);
    opacity: 0.15;
    animation: sparkle 3s ease-in-out infinite;
}

.hotel-3d-container::before {
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.hotel-3d-container::after {
    bottom: 10%;
    right: 5%;
    animation-delay: 1.5s;
}

@keyframes sparkle {
    0%, 100% {
        opacity: 0.1;
        transform: scale(0.8) rotate(0deg);
    }
    50% {
        opacity: 0.4;
        transform: scale(1.2) rotate(180deg);
    }
}

/* ============================================
   OVERLAY MENU MOBILE
============================================ */
.nav-overlay-prestige {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 999;
    backdrop-filter: blur(4px);
}

.nav-overlay-prestige.active {
    display: block;
}

/* ============================================
   À PROPOS PRESTIGE
============================================ */
.apropos-prestige-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.apropos-prestige-content p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.9;
    margin-bottom: 1.2rem;
}

.apropos-prestige-content strong {
    color: var(--primary-dark);
}

/* ============================================
   CONTACT PRESTIGE
============================================ */
.contact-prestige-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
    align-items: flex-start;
    margin-bottom: 40px;
}

.contact-prestige-info {
    flex: 1 1 320px;
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.contact-prestige-info:hover {
    box-shadow: var(--shadow-hover);
}

.contact-prestige-info h3 {
    color: var(--dark);
    margin-bottom: 1.5rem;
    font-family: var(--font-primary);
    font-size: 1.4rem;
}

.contact-prestige-info p {
    margin-bottom: 1rem;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 14px;
    color: #555;
}

.contact-prestige-info i {
    width: 24px;
    color: var(--primary);
}

.contact-prestige-form {
    flex: 1 1 360px;
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    transition: var(--transition);
}

.contact-prestige-form:hover {
    box-shadow: var(--shadow-hover);
}

.contact-prestige-form h3 {
    color: var(--dark);
    margin-bottom: 0.5rem;
    font-family: var(--font-primary);
    font-size: 1.4rem;
}

.contact-prestige-form input,
.contact-prestige-form textarea {
    padding: 0.9rem 1.2rem;
    border: 2px solid rgba(0,0,0,0.04);
    border-radius: 12px;
    font-size: 0.95rem;
    font-family: var(--font-secondary);
    transition: var(--transition);
}

.contact-prestige-form input:focus,
.contact-prestige-form textarea:focus {
    border-color: var(--primary);
    outline: none;
    box-shadow: 0 0 0 4px rgba(201, 169, 110, 0.05);
}

.contact-prestige-form textarea {
    resize: vertical;
}

.contact-prestige-form .btn-primary-prestige {
    align-self: flex-start;
    box-shadow: none;
}

.social-prestige-icons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.social-prestige-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--dark);
    color: var(--white);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    transition: var(--transition);
}

.social-prestige-icons a:hover {
    background: var(--primary);
    color: var(--dark);
    transform: translateY(-3px);
}

.directions-prestige {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(0,0,0,0.04);
}

#directions-result {
    margin-top: 1rem;
    padding: 1rem;
    background: var(--light);
    border-radius: 12px;
}

/* ============================================
   MAPS PRESTIGE
============================================ */
.map-prestige-container {
    max-width: 1200px;
    margin: 0 auto;
}

.map-prestige-container h3 {
    text-align: center;
    color: var(--dark);
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
    font-family: var(--font-primary);
}

.map-prestige-container iframe {
    border-radius: 18px;
    transition: var(--transition);
}

.map-prestige-container iframe:hover {
    box-shadow: var(--shadow-hover);
}

/* ============================================
   FOOTER PRESTIGE
============================================ */
.footer-prestige {
    background: var(--dark);
    color: rgba(255,255,255,0.6);
    padding: 3rem 0 1.5rem;
    margin-top: 3rem;
}

.footer-prestige-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255,255,255,0.04);
}

.footer-prestige-brand h3 {
    font-family: var(--font-primary);
    color: var(--white);
    font-size: 1.4rem;
}

.footer-prestige-brand p {
    margin: 6px 0 12px;
}

.footer-prestige-stars {
    color: var(--primary);
    font-size: 0.8rem;
    letter-spacing: 3px;
}

.footer-prestige-links h4,
.footer-prestige-social h4 {
    color: var(--white);
    font-size: 1rem;
    margin-bottom: 1rem;
}

.footer-prestige-links a {
    display: block;
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
    transition: var(--transition);
}

.footer-prestige-links a:hover {
    color: var(--primary);
    padding-left: 4px;
}

.footer-prestige-bottom {
    text-align: center;
    padding-top: 1.5rem;
    font-size: 0.8rem;
}

.footer-prestige-bottom i {
    color: #ff4757;
}

/* ============================================
   RESPONSIVE PRESTIGE
============================================ */
@media (max-width: 1024px) {
    .cards-prestige-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gallery-prestige-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .services-prestige-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stats-prestige-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .navbar-prestige {
        height: 60px;
    }
    
    .menu-toggle-prestige {
        display: flex !important;
    }

    .nav-links-prestige {
        position: fixed;
        top: 0;
        left: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background: var(--dark);
        flex-direction: column;
        align-items: flex-start;
        padding: 80px 30px 30px;
        gap: 1.5rem;
        transition: left 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        z-index: 1000;
        box-shadow: 4px 0 40px rgba(0,0,0,0.3);
        overflow-y: auto;
    }

    .nav-links-prestige.active {
        left: 0;
    }

    .nav-links-prestige a {
        font-size: 1rem;
        padding: 8px 0;
        color: rgba(255,255,255,0.7);
    }

    .nav-links-prestige a i {
        font-size: 1rem;
        width: 24px;
        text-align: center;
    }

    .nav-actions-prestige {
        gap: 12px;
    }

    .btn-reserve-prestige {
        font-size: 0.65rem;
        padding: 0.4rem 1.2rem;
    }
    
    .hero-prestige-title {
        font-size: 2.8rem;
    }
    
    .hero-prestige-desc {
        font-size: 1rem;
    }
    
    .section-prestige-title {
        font-size: 2.2rem;
    }
    
    .cards-prestige-grid {
        grid-template-columns: 1fr;
        max-width: 420px;
        margin: 0 auto;
    }
    
    .services-prestige-grid {
        grid-template-columns: 1fr;
        max-width: 420px;
        margin: 0 auto;
    }
    
    .gallery-prestige-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .footer-prestige-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .social-prestige-icons {
        justify-content: center;
    }
    
    .contact-prestige-wrapper {
        flex-direction: column;
    }
    
    .contact-prestige-form .btn-primary-prestige {
        align-self: center;
        width: 100%;
    }
    
    .back-to-top-prestige {
        width: 40px;
        height: 40px;
        font-size: 1rem;
        bottom: 15px;
        right: 10px;
    }
    
    .hero-prestige-scroll {
        display: none;
    }
    
    /* Réservation responsive */
    .reservation-prestige-grid {
        grid-template-columns: 1fr;
    }

    .reservation-prestige-submit {
        grid-column: span 1;
    }

    .reservation-prestige-wrapper {
        flex-direction: column;
    }

    .reservation-prestige-form {
        padding: 1.5rem;
        min-width: unset;
    }

    .reservation-prestige-infos {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }

    .reservation-prestige-card {
        flex: 1;
        min-width: 160px;
        max-width: 220px;
    }

    /* Animation 3D responsive tablette */
    .hotel-3d-wrapper {
        width: 320px;
        height: 90px;
    }
    
    .hotel-3d-face {
        width: 320px;
        height: 90px;
        font-size: 1.4rem;
        letter-spacing: 6px;
    }
    
    .hotel-3d-face.front {
        transform: translateZ(45px);
    }
    
    .hotel-3d-face.back {
        transform: rotateY(180deg) translateZ(45px);
    }
    
    .hotel-3d-face.left {
        transform: rotateY(-90deg) translateZ(45px);
    }
    
    .hotel-3d-face.right {
        transform: rotateY(90deg) translateZ(45px);
    }
    
    .hotel-3d-face.top {
        transform: rotateX(90deg) translateZ(45px);
    }
    
    .hotel-3d-face.bottom {
        transform: rotateX(-90deg) translateZ(45px);
    }
    
    .hotel-3d-container::before,
    .hotel-3d-container::after {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-prestige-title {
        font-size: 2.2rem;
    }
    
    .hero-prestige-badge {
        font-size: 0.55rem;
        padding: 4px 16px;
        letter-spacing: 3px;
    }
    
    .section-prestige-title {
        font-size: 1.8rem;
    }
    
    .gallery-prestige-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }
    
    .gallery-prestige-item {
        aspect-ratio: 4/3;
    }
    
    .newsletter-prestige-box form {
        flex-direction: column;
    }
    
    .newsletter-prestige-box input {
        min-width: unset;
    }
    
    .stats-prestige-grid {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }
    
    .stats-prestige-number {
        font-size: 2rem;
    }
    
    .stats-prestige-label {
        font-size: 0.75rem;
    }
    
    .reservation-prestige-infos {
        flex-direction: column;
        align-items: center;
    }

    .reservation-prestige-card {
        max-width: 100%;
        width: 100%;
    }

    /* Animation 3D responsive mobile */
    .hotel-3d-wrapper {
        width: 260px;
        height: 70px;
    }
    
    .hotel-3d-face {
        width: 260px;
        height: 70px;
        font-size: 1rem;
        letter-spacing: 4px;
        border-width: 1.5px;
    }
    
    .hotel-3d-face.front {
        transform: translateZ(35px);
    }
    
    .hotel-3d-face.back {
        transform: rotateY(180deg) translateZ(35px);
    }
    
    .hotel-3d-face.left {
        transform: rotateY(-90deg) translateZ(35px);
    }
    
    .hotel-3d-face.right {
        transform: rotateY(90deg) translateZ(35px);
    }
    
    .hotel-3d-face.top {
        transform: rotateX(90deg) translateZ(35px);
    }
    
    .hotel-3d-face.bottom {
        transform: rotateX(-90deg) translateZ(35px);
    }
    
    .hotel-3d-container::before,
    .hotel-3d-container::after {
        display: none;
    }
}