/* ============================================
   Hôtel Congo Palace - Styles Modernes
   Design 4 étoiles international
   ============================================ */

:root {
    /* Palette luxe - tons or/cuivre sur fond neutre */
    --color-primary: #b8860b;
    --color-primary-dark: #8b6914;
    --color-primary-light: #d4a84b;
    --color-accent: #1a1a1a;
    --color-bg: #faf8f5;
    --color-bg-dark: #2c2c2c;
    --color-text: #333;
    --color-text-muted: #666;
    
    /* Typography */
    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Outfit', -apple-system, sans-serif;
    
    /* Spacing */
    --container: min(90vw, 1200px);
    --section-padding: clamp(4rem, 8vw, 8rem);
    
    /* Transitions */
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
    --shadow-md: 0 8px 24px rgba(0,0,0,0.08);
    --shadow-lg: 0 16px 48px rgba(0,0,0,0.12);
}

/* Reset & Base */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-text);
    background: var(--color-bg);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

/* Container */
.container {
    width: var(--container);
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Buttons */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 1.75rem;
    background: var(--color-primary);
    color: white;
    font-weight: 500;
    font-family: var(--font-body);
    border: none;
    cursor: pointer;
    transition: var(--transition);
    border-radius: 4px;
}

.btn-primary:hover {
    background: var(--color-primary-dark);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 1.75rem;
    background: transparent;
    color: var(--color-accent);
    font-weight: 500;
    font-family: var(--font-body);
    border: 2px solid var(--color-accent);
    cursor: pointer;
    transition: var(--transition);
    border-radius: 4px;
}

.btn-outline:hover {
    background: var(--color-accent);
    color: white;
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1rem;
}

.btn-outline--light {
    border-color: white;
    color: white;
}

.btn-outline--light:hover {
    background: white;
    color: var(--color-accent);
}

.text-center--spaced {
    margin-top: 2rem;
}

.section--bg {
    background: var(--color-bg);
}

.hidden {
    display: none !important;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ============================================
   Header & Navigation
   ============================================ */

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 0;
    transition: var(--transition);
}

/* Nav claire sur hero sombre */
.header:not(.scrolled) .nav__link {
    color: rgba(255,255,255,0.95);
}

.header:not(.scrolled) .logo-text {
    color: rgba(255,255,255,0.95);
}

.header:not(.scrolled) .logo-stars {
    color: var(--color-primary-light);
}

/* Logo sur fond sombre - léger éclaircissement pour meilleure visibilité */
.header:not(.scrolled) .nav__logo-img {
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}

.header:not(.scrolled) .nav__link::after {
    background: var(--color-primary-light);
}

.header:not(.scrolled) .nav__link:hover,
.header:not(.scrolled) .nav__link.active {
    color: var(--color-primary-light);
}

.header:not(.scrolled) .nav__cta {
    background: var(--color-primary);
    color: white;
}

.header:not(.scrolled) .nav__toggle span {
    background: white;
}

.header.scrolled {
    background: rgba(250, 248, 245, 0.98);
    box-shadow: var(--shadow-sm);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.nav__logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav__logo-img {
    height: 48px;
    width: auto;
    object-fit: contain;
    transition: var(--transition);
}

.header.scrolled .nav__logo-img {
    height: 44px;
    /* Harmonisation avec la palette or du site */
    filter: drop-shadow(0 1px 2px rgba(0,0,0,0.08));
}

/* Logo texte (fallback) */
.logo-text {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-accent);
}

.logo-stars {
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    color: var(--color-primary);
}

.header.scrolled .logo-stars {
    color: var(--color-primary);
}

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

.nav__link {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--color-text);
    position: relative;
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-primary);
    transition: var(--transition);
}

.nav__link:hover::after,
.nav__link.active::after {
    width: 100%;
}

.nav__link:hover,
.nav__link.active {
    color: var(--color-primary);
}

.nav__cta {
    white-space: nowrap;
}

.nav__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.nav__toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-accent);
}

/* ============================================
   Hero Section
   ============================================ */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    animation: kenburns 20s ease-in-out infinite alternate;
}

/* Hero Slider */
.hero--slider .hero__slider {
    position: absolute;
    inset: 0;
}

.hero__slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.hero__slide.active {
    opacity: 1;
    z-index: 1;
}

/* Hero slider backgrounds (index) - Images Congo Palace */
.hero__slide--1 { background-image: url('../images/hero/hero-1.webp'); }
.hero__slide--2 { background-image: url('../images/hero/hero-2.webp'); }
.hero__slide--3 { background-image: url('../images/hero/hero-3.webp'); }
.hero__slide--4 { background-image: url('../images/hero/hero-4.webp'); }
.hero__slide--5 { background-image: url('../images/hero/hero-5.webp'); }

.hero__slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 50px;
    height: 50px;
    border: none;
    background: rgba(255,255,255,0.2);
    color: white;
    font-size: 2rem;
    cursor: pointer;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.hero__slider-btn:hover {
    background: rgba(255,255,255,0.4);
}

.hero__slider-btn--prev {
    left: 1.5rem;
}

.hero__slider-btn--next {
    right: 1.5rem;
}

.hero__slider-dots {
    position: absolute;
    bottom: 6rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 0.5rem;
}

.hero__slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: var(--transition);
}

.hero__slider-dot.active {
    background: var(--color-primary);
    transform: scale(1.2);
}

.hero__slider-dot:hover {
    background: rgba(255,255,255,0.8);
}

@keyframes kenburns {
    0% { transform: scale(1); }
    100% { transform: scale(1.05); }
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(26,26,26,0.7) 0%, rgba(26,26,26,0.4) 50%, rgba(26,26,26,0.6) 100%);
}

.hero__content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 8rem 1rem 4rem;
}

.hero__subtitle {
    font-size: 0.9rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--color-primary-light);
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.hero__title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 700;
    color: white;
    line-height: 1.15;
    margin-bottom: 1rem;
}

.hero__desc {
    color: rgba(255,255,255,0.9);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 3rem;
}

.hero__actions .btn-outline {
    border-color: white;
    color: white;
}

.hero__actions .btn-outline:hover {
    background: white;
    color: var(--color-accent);
}

/* Booking Widget */
.hero__booking-widget {
    margin-top: 2rem;
}

.booking-widget {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(255,255,255,0.95);
    border-radius: 8px;
    max-width: 900px;
    margin: 0 auto;
    box-shadow: var(--shadow-lg);
    align-items: flex-end;
}

.booking-widget__field {
    flex: 1;
    min-width: 140px;
}

.booking-widget__field label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.25rem;
    color: var(--color-text-muted);
}

.booking-widget__field input,
.booking-widget__field select {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: var(--font-body);
}

.hero__scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255,255,255,0.8);
    font-size: 0.75rem;
    letter-spacing: 0.2em;
}

.hero__scroll-icon {
    width: 24px;
    height: 40px;
    border: 2px solid rgba(255,255,255,0.5);
    border-radius: 12px;
    position: relative;
    animation: scrollBounce 2s ease-in-out infinite;
}

.hero__scroll-icon::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: rgba(255,255,255,0.8);
    border-radius: 2px;
}

@keyframes scrollBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
}

/* ============================================
   Section Styles
   ============================================ */

.section {
    padding: var(--section-padding) 0;
}

.section-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-primary);
    margin-bottom: 0.5rem;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--color-accent);
    margin-bottom: 1rem;
}

.section-desc {
    max-width: 600px;
    color: var(--color-text-muted);
    margin-bottom: 2rem;
}

/* ============================================
   About Section
   ============================================ */

.about__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about__text {
    margin-bottom: 1rem;
    color: var(--color-text);
}

.about__features {
    margin-top: 1.5rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
}

.about__features li {
    color: var(--color-text-muted);
    font-size: 0.95rem;
}

.about__image {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about__image img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
}

.about__badge {
    position: absolute;
    bottom: 1.5rem;
    right: 1.5rem;
    width: 80px;
    height: 80px;
    background: var(--color-primary);
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.about__badge-num {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
}

.about__badge span:last-child {
    font-size: 0.7rem;
}

/* ============================================
   Rooms Section
   ============================================ */

.rooms__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.room-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.room-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.room-card__image {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
}

.room-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.room-card:hover .room-card__image img {
    transform: scale(1.05);
}

.room-card__price {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    background: rgba(0,0,0,0.7);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    font-weight: 600;
}

.room-card__content {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.room-card__title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.room-card__desc {
    color: var(--color-text-muted);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    flex: 1;
}

.room-card__actions {
    display: flex;
    gap: 0.75rem;
}

.room-card__actions .btn-primary {
    flex: 1;
}

/* ============================================
   Services Section
   ============================================ */

.services {
    background: var(--color-bg-dark);
    color: white;
}

.services .section-tag {
    color: var(--color-primary-light);
}

.services .section-title {
    color: white;
}

.services__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.service-card {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255,255,255,0.05);
    border-radius: 8px;
    transition: var(--transition);
}

.service-card:hover {
    background: rgba(255,255,255,0.1);
    transform: translateY(-4px);
}

.service-card__icon {
    font-size: 2rem;
    margin-bottom: 0.75rem;
}

.service-card h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.service-card p {
    font-size: 0.85rem;
    opacity: 0.8;
}

.service-card--link {
    color: inherit;
    text-decoration: none;
}

/* ============================================
   Restaurant Section
   ============================================ */

.restaurant__wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 500px;
}

.restaurant__image {
    position: relative;
}

.restaurant__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.restaurant__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent 0%, var(--color-bg) 100%);
}

.restaurant__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 3rem;
}

.restaurant__desc {
    margin-bottom: 1.5rem;
    color: var(--color-text);
}

.restaurant__info {
    margin-bottom: 1.5rem;
}

.restaurant__hours,
.restaurant__service {
    margin-bottom: 0.5rem;
}

/* ============================================
   Gallery Preview
   ============================================ */

.gallery-preview__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.gallery-preview__item {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 8px;
}

.gallery-preview__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.gallery-preview__item span {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1rem;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: white;
    font-weight: 600;
    transform: translateY(100%);
    transition: var(--transition);
}

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

.gallery-preview__item:hover span {
    transform: translateY(0);
}

/* ============================================
   Contact Section
   ============================================ */

.contact__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 2rem;
}

.contact__item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact__icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.contact__item h4 {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.contact__item a {
    color: var(--color-primary);
}

.contact__item a:hover {
    text-decoration: underline;
}

.contact__map {
    margin-top: 2rem;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.contact__map iframe {
    display: block;
    border: 0;
}

.contact__grid--single {
    grid-template-columns: 1fr;
    max-width: 500px;
}

/* ============================================
   Newsletter
   ============================================ */

.newsletter {
    background: var(--color-accent);
    color: white;
    text-align: center;
}

.newsletter__content h2 {
    font-family: var(--font-display);
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.newsletter__content p {
    opacity: 0.9;
    margin-bottom: 1.5rem;
}

.newsletter__form {
    display: flex;
    max-width: 450px;
    margin: 0 auto;
    gap: 0.5rem;
}

.newsletter__form input {
    flex: 1;
    padding: 1rem;
    border: none;
    border-radius: 4px;
    font-family: var(--font-body);
}

.newsletter__form .btn-primary {
    background: var(--color-primary);
}

/* ============================================
   Best Price - Style Biskajer
   ============================================ */

.best-price {
    background: linear-gradient(135deg, #1a3a1a 0%, #0d1f0d 100%);
    color: white;
}

.best-price .section-tag {
    color: var(--color-primary-light);
}

.best-price .section-title {
    color: white;
    font-size: clamp(1.5rem, 3vw, 2rem);
}

.best-price__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0 1rem;
}

.best-price__item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1rem;
    background: rgba(255,255,255,0.08);
    border-radius: 8px;
}

.best-price__icon {
    color: var(--color-primary-light);
    font-weight: bold;
    flex-shrink: 0;
}

.best-price__note {
    font-size: 0.9rem;
    opacity: 0.9;
    margin: 1rem 0 1.5rem;
}

.best-price .btn-primary {
    background: var(--color-primary);
}

/* ============================================
   Explorons - Style Biskajer
   ============================================ */

.explore {
    background: var(--color-bg);
}

.explore__desc {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--color-text-muted);
}

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

.explore__slide {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
    border-radius: 8px;
}

.explore__slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.explore__slide:hover img {
    transform: scale(1.08);
}

.explore__slide span {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1rem;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: white;
    font-weight: 600;
    transform: translateY(100%);
    transition: var(--transition);
}

.explore__slide:hover span {
    transform: translateY(0);
}

.explore .btn-outline {
    display: block;
    margin: 0 auto;
}

/* About welcome - Style Biskajer */
.about--welcome .about__lead {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 2rem;
    font-size: 1.1rem;
}

.about__subtitle {
    font-size: 1rem;
    margin: 1rem 0 0.5rem;
}

.about__features--grid {
    grid-template-columns: 1fr 1fr;
}

.section-title--centered {
    text-align: center;
}

/* ============================================
   Salles de conférence
   ============================================ */

.salles-grid {
    display: grid;
    gap: 3rem;
    margin-top: 2rem;
}

.salle-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.salle-card__image {
    position: relative;
    aspect-ratio: 4/3;
}

.salle-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.salle-card__type {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--color-primary);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    font-size: 0.85rem;
}

.salle-card__content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
}

.salle-card__content h3 {
    font-family: var(--font-display);
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
}

.salle-card__features {
    margin: 1rem 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.25rem;
}

.salle-card__features li {
    font-size: 0.9rem;
    color: var(--color-text-muted);
}

.salle-card__content .btn-primary {
    margin-top: auto;
}

.salles-cta {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #eee;
}

/* ============================================
   Formulaire de réservation
   ============================================ */

.reservation-wrapper {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 2rem;
    align-items: start;
}

.reservation-form-card {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow-md);
}

.reservation-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.reservation-form .form-group {
    margin-bottom: 1.25rem;
}

.reservation-form label {
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 0.35rem;
}

.reservation-form input,
.reservation-form select,
.reservation-form textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: var(--font-body);
}

.reservation-form textarea {
    resize: vertical;
}

.reservation-form .btn-primary {
    width: 100%;
    margin-top: 0.5rem;
}

.reservation-success {
    text-align: center;
    padding: 2rem;
}

.reservation-success__icon {
    width: 60px;
    height: 60px;
    background: #22c55e;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 1rem;
}

.reservation-success h3 {
    margin-bottom: 0.5rem;
}

.reservation-success__ref {
    margin-top: 1rem;
    padding: 0.75rem;
    background: var(--color-bg);
    border-radius: 4px;
}

.reservation-info {
    position: sticky;
    top: 6rem;
}

.reservation-info__block {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
    margin-bottom: 1rem;
}

.reservation-info__block h3 {
    font-size: 1rem;
    margin-bottom: 0.75rem;
}

/* ============================================
   Footer - Style guangzhoutophotels
   ============================================ */

.footer {
    background: #1a1a1a;
    color: rgba(255,255,255,0.9);
}

.footer__main {
    padding: 3rem 0 2rem;
}

.footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 2rem;
}

.footer__col h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: white;
}

.footer__brand-col .footer__brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.footer__logo-img {
    height: 52px;
    width: auto;
    object-fit: contain;
    display: block;
    flex-shrink: 0;
}

.footer .logo-stars {
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    color: var(--color-primary-light);
    line-height: 1;
}


.footer__tagline {
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
    color: var(--color-primary-light);
}

.footer__address {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    opacity: 0.9;
}

.footer__brand-col a {
    color: var(--color-primary-light);
}

.footer__brand-col a:hover {
    text-decoration: underline;
}

.footer__links {
    list-style: none;
}

.footer__links li {
    margin-bottom: 0.5rem;
}

.footer__links a {
    color: rgba(255,255,255,0.8);
}

.footer__links a:hover {
    color: var(--color-primary-light);
}

.footer__newsletter-col p {
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
    opacity: 0.9;
}

.footer__newsletter {
    display: flex;
    gap: 0.5rem;
}

.footer__newsletter input {
    flex: 1;
    padding: 0.75rem;
    border: 1px solid rgba(255,255,255,0.2);
    background: rgba(255,255,255,0.1);
    border-radius: 4px;
    color: white;
    font-family: var(--font-body);
}

.footer__newsletter input::placeholder {
    color: rgba(255,255,255,0.5);
}

.footer__bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 1.5rem 0;
}

.footer__bottom-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.footer__copy {
    font-size: 0.85rem;
    opacity: 0.8;
}

.footer__legal {
    display: flex;
    gap: 1.5rem;
}

.footer__legal a {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.7);
}

.footer__legal a:hover {
    color: var(--color-primary-light);
}

.footer__payments {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer__payment-icon {
    font-size: 1.5rem;
}

.footer__payment-badge {
    font-size: 0.75rem;
    opacity: 0.7;
    margin-left: 0.5rem;
}

/* ============================================
   Page Hero (pages internes)
   ============================================ */

.page-hero {
    position: relative;
    min-height: 40vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8rem 0 4rem;
    overflow: hidden;
}

.page-hero__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
}

/* Page hero backgrounds by page - Images Congo Palace */
.page-hero__bg--l-hotel { background-image: url('../images/galerie/hall/salon-vip-hotel.webp'); }
.page-hero__bg--chambres { background-image: url('../images/chambres/suite-presidentiel-stanley.webp'); }
.page-hero__bg--services { background-image: url('../images/galerie/fitness/salle-sport-fitness.webp'); }
.page-hero__bg--restaurant { background-image: url('../images/restaurant/restaurant-principale.webp'); }
.page-hero__bg--bar { background-image: url('../images/bar/longebar-hotel-congo-palace.webp'); }
.page-hero__bg--reservation,
.page-hero__bg--contact { background-image: url('../images/hero/hero-1.webp'); }
.page-hero__bg--salles { background-image: url('../images/salles/salle-conference.png'); }

.page-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(26,26,26,0.75) 0%, rgba(26,26,26,0.5) 100%);
}

.page-hero__content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
}

.page-hero__content h1 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 0.5rem;
}

.page-hero__content p {
    opacity: 0.9;
}

/* Info cards (L'Hôtel) */
.info-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.info-card {
    padding: 2rem;
    background: white;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.info-card:hover {
    box-shadow: var(--shadow-md);
}

.info-card__icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 1rem;
}

.info-card h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

/* Restaurant page layout */
.restaurant-page {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.restaurant-page__image img {
    border-radius: 8px;
    box-shadow: var(--shadow-md);
}

.restaurant-page__info {
    display: grid;
    gap: 1rem;
    margin: 1.5rem 0;
}

.restaurant-page__block h3 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

/* Content page (Bar, etc.) */
.content-page {
    max-width: 700px;
    margin: 0 auto;
}

.content-page .btn-primary {
    margin-top: 1rem;
}

/* ============================================
   Bulle WhatsApp
   ============================================ */

.whatsapp-bubble {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 999;
    width: 56px;
    height: 56px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
    transition: var(--transition);
}

.whatsapp-bubble:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.6);
}

.whatsapp-bubble svg {
    width: 32px;
    height: 32px;
}

/* Utilitaires */
.text-center {
    text-align: center;
}

/* Services page - grille étendue */
.services__grid--extended .service-card {
    padding: 2rem;
}

.rooms-intro {
    margin-bottom: 2rem;
}

.rooms-intro p {
    margin-bottom: 0.5rem;
}

/* ============================================
   Gallery Page
   ============================================ */

.gallery-hero {
    background: linear-gradient(135deg, var(--color-bg-dark) 0%, #1a1a1a 100%);
    padding: 10rem 0 4rem;
    text-align: center;
    color: white;
}

.gallery-hero h1 {
    font-family: var(--font-display);
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.gallery-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    margin-top: 1rem;
}

.gallery-categories button {
    padding: 0.5rem 1rem;
    border: 1px solid rgba(255,255,255,0.3);
    background: transparent;
    color: white;
    cursor: pointer;
    border-radius: 4px;
    font-family: var(--font-body);
    transition: var(--transition);
}

.gallery-categories button:hover,
.gallery-categories button.active {
    background: var(--color-primary);
    border-color: var(--color-primary);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1rem;
    padding: 2rem 0;
}

.gallery-item {
    aspect-ratio: 4/3;
    overflow: hidden;
    border-radius: 8px;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

/* Gallery animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.95);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.lightbox.active {
    display: flex;
}

.lightbox img {
    max-width: 90vw;
    max-height: 90vh;
    object-fit: contain;
}

.lightbox-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
}

/* ============================================
   Page Événements
   ============================================ */

.events-hero {
    background: linear-gradient(135deg, var(--color-bg-dark) 0%, #1a1a1a 100%);
    padding: 10rem 0 4rem;
    text-align: center;
    color: white;
}

.events-hero h1 {
    font-family: var(--font-display);
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.events-hero p {
    opacity: 0.9;
}

.events-loading {
    text-align: center;
    padding: 3rem;
    color: var(--color-text-muted);
}

.events-loading.hidden,
.events-empty.hidden {
    display: none !important;
}

.events-empty {
    text-align: center;
    padding: 4rem 2rem;
    color: var(--color-text-muted);
}

.events-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.events-section__title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    margin: 2rem 0 1rem;
    color: var(--color-primary-dark);
}

.events-section__title:first-child {
    margin-top: 0;
}

.events-section__title--past {
    color: var(--color-text-muted);
    font-size: 1.25rem;
}

.event-card {
    display: flex;
    gap: 2rem;
    padding: 1.5rem;
    background: white;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0,0,0,0.06);
    align-items: flex-start;
}

.event-card__poster {
    flex-shrink: 0;
    width: 140px;
    height: 100px;
    border-radius: 8px;
    overflow: hidden;
}

.event-card__poster img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.event-card--past {
    opacity: 0.85;
}

.event-card__date {
    flex-shrink: 0;
    width: 70px;
    text-align: center;
    padding: 0.75rem;
    background: var(--color-primary);
    color: white;
    border-radius: 8px;
}

.event-card__date-day {
    display: block;
    font-size: 1.75rem;
    font-weight: 700;
    line-height: 1.2;
}

.event-card__date-month {
    font-size: 0.85rem;
    text-transform: uppercase;
}

.event-card__content {
    flex: 1;
}

.event-card__title {
    font-family: var(--font-display);
    font-size: 1.35rem;
    margin-bottom: 0.35rem;
}

.event-card__meta {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    margin-bottom: 0.5rem;
}

.event-card__location {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.event-card__desc {
    font-size: 0.95rem;
    line-height: 1.6;
}

.event-card {
    cursor: pointer;
    transition: opacity 0.2s, transform 0.2s;
}
.event-card:hover {
    opacity: 0.95;
}
.event-card:focus {
    outline: 2px solid var(--color-primary);
    outline-offset: 2px;
}

/* Modal détail événement */
.event-detail-modal {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}
.event-detail-modal.hidden {
    display: none !important;
}
.event-detail-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.5);
    cursor: pointer;
}
.event-detail-modal__content {
    position: relative;
    background: white;
    border-radius: 8px;
    max-width: 560px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}
.event-detail-modal__close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 36px;
    height: 36px;
    border: none;
    background: rgba(0,0,0,0.05);
    border-radius: 50%;
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
    z-index: 2;
    color: #333;
}
.event-detail-modal__close:hover {
    background: #e0e0e0;
}
.event-detail-modal__poster {
    width: 100%;
    max-height: 280px;
    overflow: hidden;
    border-radius: 8px 8px 0 0;
}
.event-detail-modal__poster img {
    width: 100%;
    height: auto;
    display: block;
}
.event-detail-modal__info {
    padding: 1.5rem;
}
.event-detail-modal__date {
    display: block;
    font-size: 0.9rem;
    color: var(--color-text-muted);
    margin-bottom: 0.25rem;
}
.event-detail-modal__title {
    font-family: var(--font-display);
    font-size: 1.75rem;
    margin: 0 0 0.75rem;
}
.event-detail-modal__location {
    font-size: 0.95rem;
    margin-bottom: 1rem;
}
.event-detail-modal__desc {
    font-size: 1rem;
    line-height: 1.7;
    white-space: pre-wrap;
}
.event-detail-modal__no-desc {
    color: var(--color-text-muted);
    font-style: italic;
}

/* ============================================
   Admin Événements
   ============================================ */

.admin-events {
    min-height: 100vh;
    background: var(--color-bg);
}

.admin-events__header {
    background: var(--color-bg-dark);
    color: white;
    padding: 1.5rem 0;
}

.admin-events__header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.admin-events__title {
    font-family: var(--font-display);
    font-size: 1.5rem;
}

.admin-events__main {
    padding: 2rem 0;
}

.admin-events__form {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
    margin-bottom: 2rem;
}

.admin-events__form h3 {
    font-family: var(--font-display);
    margin-bottom: 1rem;
}

.admin-events__grid {
    display: grid;
    gap: 1rem;
    margin-bottom: 1rem;
}

.admin-events__grid label {
    font-weight: 500;
    font-size: 0.9rem;
}

.admin-events__grid input,
.admin-events__grid textarea {
    width: 100%;
    padding: 0.5rem 0.75rem;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.admin-events__list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.admin-event-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    background: white;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
    flex-wrap: wrap;
    gap: 1rem;
}

.admin-event-card__info h4 {
    margin-bottom: 0.25rem;
}

.admin-event-card__meta {
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

.admin-event-card__actions {
    display: flex;
    gap: 0.5rem;
}

.admin-event-card__actions .btn-outline {
    padding: 0.4rem 0.75rem;
    font-size: 0.85rem;
}

.admin-events__header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.admin-events__subtitle {
    margin: 0.25rem 0 0;
    font-size: 0.9rem;
    opacity: 0.9;
}

.admin-events__header-actions {
    display: flex;
    gap: 0.75rem;
    align-items: center;
}

.admin-events__install-info {
    width: 100%;
    margin-top: 1rem;
    padding: 1rem 1.25rem;
    background: rgba(255,255,255,0.08);
    border-radius: 8px;
    font-size: 0.9rem;
    line-height: 1.5;
    color: rgba(255,255,255,0.95);
}

.admin-events__install-info strong {
    color: white;
}

.admin-events__install-info em {
    display: block;
    margin-top: 0.5rem;
    font-size: 0.85rem;
    opacity: 0.85;
}

.admin-events__api-error {
    background: #fee;
    border: 1px solid #fcc;
    color: #c00;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.admin-events__api-error code {
    background: rgba(0,0,0,0.08);
    padding: 0.2rem 0.4rem;
    border-radius: 4px;
    font-size: 0.9em;
}

.admin-events__form-title {
    font-family: var(--font-display);
    margin-bottom: 1rem;
}

.admin-events__hint {
    font-size: 0.8rem;
    color: var(--color-text-muted);
    margin-top: 0.25rem;
}

.admin-events__form-actions {
    display: flex;
    gap: 0.75rem;
    margin-top: 1rem;
}

.admin-events__cancel-btn--hidden {
    display: none !important;
}

.admin-events__form-status {
    margin-top: 0.75rem;
    font-size: 0.9rem;
    color: var(--color-text-muted);
}

.admin-events__form-status--error {
    color: #c00;
}

.admin-events__list-title {
    font-family: var(--font-display);
    margin-bottom: 1rem;
}

.admin-event-card {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.admin-event-card__poster {
    width: 80px;
    height: 60px;
    object-fit: cover;
    border-radius: 6px;
    flex-shrink: 0;
}

#installBtn.admin-events__install-hidden {
    display: none;
}

.admin-events__separator {
    margin: 2.5rem 0;
    border: none;
    border-top: 1px solid #e0e0e0;
}

.admin-events__subtitle--muted {
    color: var(--color-text-muted);
    margin-bottom: 1rem;
}

.admin-events__form--gallery {
    margin-bottom: 1rem;
}

.admin-events__list-title--mt {
    margin-top: 2rem;
}

.admin-events__delete-past {
    margin-bottom: 1rem;
}

.admin-events__gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.admin-events__gallery-card {
    position: relative;
    aspect-ratio: 4/3;
    border-radius: 8px;
    overflow: hidden;
    background: #f0f0f0;
}

.admin-events__gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.admin-events__gallery-card-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 0.5rem 0.75rem;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    color: white;
    font-size: 0.8rem;
    display: flex;
    justify-content: space-between;
}

.admin-events__gallery-card-delete {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    width: 28px;
    height: 28px;
    border: none;
    background: rgba(0,0,0,0.6);
    color: white;
    font-size: 1.25rem;
    cursor: pointer;
    border-radius: 4px;
    line-height: 1;
}

.admin-events__gallery-card-delete:hover {
    background: #c00;
}

/* Lien réception Galerie - externe (conservé si réutilisé) */
.reception-gallery__events-link {
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
}

.reception-gallery__events-link a {
    color: var(--color-primary);
}

/* ============================================
   Responsive
   ============================================ */

@media (max-width: 968px) {
    .salle-card {
        grid-template-columns: 1fr;
    }
    
    .salle-card__image {
        order: -1;
        aspect-ratio: 16/9;
    }
    
    .salle-card__features {
        grid-template-columns: 1fr;
    }
    
    .reservation-wrapper {
        grid-template-columns: 1fr;
    }
    
    .reservation-info {
        position: static;
    }
    
    .reservation-form .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer__grid {
        grid-template-columns: 1fr 1fr;
    }
    
.footer__brand-col {
    grid-column: 1 / -1;
    text-align: center;
}

.footer__brand-col .footer__brand {
    justify-content: center;
    align-items: center;
}

.footer__brand-col .footer__logo-img {
    margin: 0;
}
    
    .footer__bottom-content {
        flex-direction: column;
        text-align: center;
    }
    
    .explore__carousel {
        grid-template-columns: 1fr;
    }
    
    .restaurant-page {
        grid-template-columns: 1fr;
    }
    
    .restaurant-page__image {
        order: -1;
    }
    .nav__menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background: white;
        flex-direction: column;
        align-items: flex-start;
        padding: 5rem 2rem 2rem;
        box-shadow: -10px 0 30px rgba(0,0,0,0.1);
        transition: var(--transition);
        z-index: 1002;
    }
    
    .nav__menu.active {
        right: 0;
    }
    
    /* Liens du menu mobile toujours visibles sur fond blanc */
    .nav__menu .nav__link {
        color: var(--color-text) !important;
    }
    .nav__menu .nav__link::after {
        background: var(--color-primary) !important;
    }
    .nav__menu .nav__link:hover,
    .nav__menu .nav__link.active {
        color: var(--color-primary) !important;
    }
    
    .nav__menu-overlay {
        display: none;
        position: fixed;
        inset: 0;
        background: rgba(0,0,0,0.4);
        z-index: 1001;
    }
    
    .nav__menu-overlay.active {
        display: block;
    }
    
    .nav__toggle {
        display: flex;
        z-index: 1003;
    }
    
    .nav__cta {
        display: none;
    }
    
    .about__grid,
    .restaurant__wrapper,
    .contact__grid {
        grid-template-columns: 1fr;
    }
    
    .restaurant__wrapper {
        grid-template-rows: auto 1fr;
    }
    
    .restaurant__content {
        order: 1;
    }
    
    .restaurant__image {
        order: 2;
    }
    
    .restaurant__overlay {
        background: linear-gradient(180deg, transparent 0%, var(--color-bg) 100%);
    }
    
    .gallery-preview__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .booking-widget {
        flex-direction: column;
    }
    
    .booking-widget__field {
        min-width: 100%;
    }
    
    .about__features {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .hero__content {
        padding: 5rem 0.75rem 2rem;
    }
    
    .hero__subtitle {
        font-size: 0.75rem;
        letter-spacing: 0.2em;
    }
    
    .hero__title {
        font-size: clamp(1.75rem, 8vw, 2.5rem);
        margin-bottom: 0.5rem;
    }
    
    .hero__desc {
        font-size: 0.95rem;
        margin-bottom: 1.25rem;
    }
    
    .hero__actions {
        margin-bottom: 1.5rem;
    }
    
    .hero__booking-widget {
        margin-top: 1.25rem;
    }
    
    .booking-widget {
        padding: 1rem;
    }
    
    .hero__slider-btn {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }
    
    .hero__slider-btn--prev {
        left: 0.5rem;
    }
    
    .hero__slider-btn--next {
        right: 0.5rem;
    }
    
    .hero__slider-dots {
        bottom: 5rem;
    }
    
    .footer__grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer__newsletter {
        flex-direction: column;
    }
    
    .hero__actions {
        flex-direction: column;
    }
    
    .hero__actions .btn-primary,
    .hero__actions .btn-outline {
        width: 100%;
    }
    
    .services__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .newsletter__form {
        flex-direction: column;
    }
}

/* ============================================
   Espace Réception
   ============================================ */

.reception-body {
    background: var(--color-bg);
}

.reception__header {
    background: var(--color-bg-dark);
    color: white;
    padding: 2rem 0;
    margin-bottom: 2rem;
}

.reception__back {
    display: inline-block;
    color: rgba(255,255,255,0.8);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.reception__back:hover {
    color: white;
}

.reception__back--events {
    margin-left: 1.5rem;
}

.reception__brand {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.reception__logo {
    height: 48px;
    width: auto;
}

.reception__brand h1 {
    font-family: var(--font-display);
    font-size: 1.75rem;
    margin: 0 0 0.25rem 0;
}

.reception__brand p {
    margin: 0;
    opacity: 0.8;
    font-size: 0.9rem;
}

.reception__user {
    margin-top: 0.5rem;
}

.reception__user label {
    font-size: 0.8rem;
    opacity: 0.9;
    margin-right: 0.4rem;
}

.reception__user input {
    padding: 0.25rem 0.5rem;
    font-size: 0.85rem;
    border: 1px solid rgba(255,255,255,0.3);
    background: rgba(255,255,255,0.1);
    border-radius: 4px;
    color: white;
    width: 140px;
}

.reception__user input::placeholder {
    color: rgba(255,255,255,0.5);
}

.reception__toolbar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 2rem;
}

.reception__filters {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.75rem;
    flex: 1;
    min-width: 200px;
}

.reception__search {
    padding: 0.5rem 1rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    min-width: 200px;
}

.reception__filter-select {
    padding: 0.5rem 0.75rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: var(--font-body);
    font-size: 0.9rem;
}

.reception__actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
}

.reception__alerts {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    cursor: pointer;
    -webkit-user-select: none;
    user-select: none;
}

.reception__alerts input {
    cursor: pointer;
}

#installBtn.reception__install-hidden {
    display: none;
}

.reception__stop-alert {
    background: #c00;
    border-color: #c00;
    color: white;
}

.reception__stop-alert:hover {
    background: #a00;
    border-color: #a00;
}

.reception__stop-alert-hidden {
    display: none !important;
}

.reception__loading {
    text-align: center;
    padding: 3rem;
    color: var(--color-text-muted);
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

.reception__count {
    color: var(--color-text-muted);
    font-size: 0.9rem;
}

.reception__install-info {
    background: rgba(26,26,26,0.06);
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 8px;
    padding: 1rem 1.25rem;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    line-height: 1.5;
    color: var(--color-text);
}

.reception__install-info strong {
    color: var(--color-accent);
}

.reception__install-info em {
    display: block;
    margin-top: 0.5rem;
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

.reception__error {
    background: #fee;
    border: 1px solid #fcc;
    color: #c00;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.reception__empty {
    text-align: center;
    padding: 4rem 2rem;
    color: var(--color-text-muted);
}

.reception__list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.reception-card {
    background: white;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.06);
}

.reception-card__header {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    background: #f8f8f8;
    border-bottom: 1px solid #eee;
}

.reception-card__ref {
    font-weight: 700;
    font-family: monospace;
    color: var(--color-primary-dark);
}

.reception-card__status {
    font-size: 0.8rem;
    padding: 0.25rem 0.6rem;
    border-radius: 4px;
    font-weight: 500;
}

.reception-card__status--pending {
    background: #fff3cd;
    color: #856404;
}

.reception-card__status--contacted {
    background: #cce5ff;
    color: #004085;
}

.reception-card__status--confirmed {
    background: #d4edda;
    color: #155724;
}

.reception-card__status--cancelled {
    background: #f8d7da;
    color: #721c24;
}

.reception-card__date {
    margin-left: auto;
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

.reception-card__body {
    padding: 1.5rem;
}

.reception-card__row {
    margin-bottom: 0.5rem;
}

.reception-card__row:last-of-type {
    margin-bottom: 0;
}

.reception-card__sep {
    margin: 0 0.5rem;
    color: var(--color-text-muted);
}

.reception-card__row a {
    color: var(--color-primary-dark);
}

.reception-card__row a:hover {
    text-decoration: underline;
}

.reception-card__message {
    margin-top: 1rem;
    padding: 0.75rem;
    background: #f8f8f8;
    border-radius: 4px;
    font-size: 0.9rem;
}

.reception-card__notes {
    margin-top: 0.75rem;
    padding: 0.75rem;
    background: #f0f7ff;
    border-radius: 4px;
    font-size: 0.9rem;
    border-left: 3px solid var(--color-primary-light);
}

.reception-card__btn-notes {
    flex-shrink: 0;
}

.reception-card__actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    border-top: 1px solid #eee;
    background: #fafafa;
}

.reception-card__btn {
    text-decoration: none;
}

.reception-card__status-select {
    margin-left: auto;
}

.reception-card__select {
    padding: 0.4rem 0.75rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: var(--font-body);
    font-size: 0.9rem;
}

/* Onglets réception */
.reception__tabs {
    display: flex;
    gap: 0;
    padding: 0 1.5rem;
    background: #f5f5f5;
    border-bottom: 1px solid #e0e0e0;
    position: relative;
    z-index: 10;
}

.reception__tab {
    padding: 0.875rem 1.5rem;
    border: none;
    background: transparent;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--color-text-muted);
    cursor: pointer;
    pointer-events: auto;
    border-bottom: 3px solid transparent;
    transition: var(--transition);
}

.reception__tab:hover {
    color: var(--color-text);
}

.reception__tab.active {
    color: var(--color-primary-dark);
    background: white;
    border-bottom-color: var(--color-primary);
}

.reception__tab-panel {
    display: none;
}

.reception__tab-panel.active {
    display: block;
}

/* Galerie & Événements - réception */
.reception-gallery {
    padding: 2rem 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.reception-gallery__upload,
.reception-gallery__events {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0,0,0,0.06);
}

.reception-gallery__list {
    grid-column: 1 / -1;
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0,0,0,0.06);
}

.reception-gallery h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.reception-gallery__form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.reception-gallery__row {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.reception-gallery__row label {
    font-size: 0.9rem;
    font-weight: 500;
}

.reception-gallery__row input,
.reception-gallery__row select,
.reception-gallery__row textarea {
    padding: 0.5rem 0.75rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: var(--font-body);
}

.reception-gallery__status {
    margin-top: 0.75rem;
    font-size: 0.9rem;
    color: var(--color-text-muted);
}

.reception-gallery__status--error {
    color: #c00;
}

.reception-gallery__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.reception-gallery__card {
    position: relative;
    aspect-ratio: 4/3;
    border-radius: 8px;
    overflow: hidden;
    background: #f0f0f0;
}

.reception-gallery__card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.reception-gallery__card-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 0.5rem 0.75rem;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    color: white;
    font-size: 0.8rem;
    display: flex;
    justify-content: space-between;
}

.reception-gallery__card-delete {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    width: 28px;
    height: 28px;
    border: none;
    background: rgba(0,0,0,0.6);
    color: white;
    font-size: 1.25rem;
    cursor: pointer;
    border-radius: 4px;
    line-height: 1;
    padding: 0;
}

.reception-gallery__card-delete:hover {
    background: #c00;
}

.reception-gallery__empty {
    margin-top: 1rem;
    color: var(--color-text-muted);
}

.reception-gallery__empty a {
    color: var(--color-primary);
}

@media (max-width: 768px) {
    .reception-gallery {
        grid-template-columns: 1fr;
    }
}

/* Modal réception */
.reception-modal {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.reception-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.5);
}

.reception-modal__content {
    position: relative;
    background: white;
    border-radius: 8px;
    max-width: 500px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    padding: 2rem;
    box-shadow: var(--shadow-lg);
}

.reception-modal__content--wide {
    max-width: 640px;
}

.reception-modal__close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 36px;
    height: 36px;
    border: none;
    background: #f0f0f0;
    font-size: 1.5rem;
    cursor: pointer;
    border-radius: 4px;
    line-height: 1;
    padding: 0;
}

.reception-modal__close:hover {
    background: #e0e0e0;
}

.reception-modal__content h3 {
    font-family: var(--font-display);
    margin-bottom: 0.5rem;
}

.reception-modal__history {
    margin-top: 1rem;
    margin-bottom: 1.5rem;
    padding: 0.75rem;
    background: #f8f9fa;
    border-radius: 6px;
}

.reception-modal__history h4 {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    color: var(--color-text-muted);
}

.reception-history {
    list-style: none;
    padding: 0;
    margin: 0;
}

.reception-history__item {
    font-size: 0.85rem;
    padding: 0.35rem 0;
    border-bottom: 1px solid #eee;
}

.reception-history__item:last-child {
    border-bottom: none;
}

.reception-history__date {
    color: var(--color-text-muted);
    margin-right: 0.5rem;
}

.reception-history__text {
    font-weight: 500;
}

.reception-modal__notes {
    margin-top: 1.5rem;
}

.reception-modal__notes label {
    display: block;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.reception-modal__notes textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    resize: vertical;
}

.reception-modal__actions {
    margin-top: 1rem;
}

.reception-reply__field {
    margin-bottom: 1rem;
}

.reception-reply__field label {
    display: block;
    font-weight: 500;
    margin-bottom: 0.25rem;
}

.reception-reply__field input,
.reception-reply__field textarea {
    width: 100%;
    padding: 0.6rem 0.75rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: var(--font-body);
    font-size: 0.95rem;
}

.reception-reply__field input[readonly] {
    background: #f5f5f5;
    color: #666;
}

.reception-reply__field textarea {
    resize: vertical;
    min-height: 200px;
}

.reception-reply__actions {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

@media (max-width: 640px) {
    .reception__toolbar {
        flex-direction: column;
        align-items: stretch;
    }
    .reception__filters {
        flex-direction: column;
    }
    .reception__search {
        min-width: 100%;
    }
}
