/* ===================================================
   PENTASYNC DESIGN SYSTEM : DÉMO HÔTEL LUXURY
   =================================================== */
.penta-hotel-wrapper {
    background-color: #0c0c0c;
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
}

.hotel-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.hotel-subtitle {
    color: #FFB020; /* Accent Or */
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 15px;
    font-weight: 700;
}

.text-highlight {
    color: #FFB020;
}

.hotel-center-title {
    text-align: center;
    margin-bottom: 50px;
}

.hotel-center-title h2 {
    font-size: 36px;
    color: #fff;
}

/* --- SECTION 1 : HERO --- */
.hotel-hero-section {
    position: relative;
    padding: 150px 0 120px 0;
    background-size: cover;
    background-position: center;
}

.hero-hotel-content {
    max-width: 650px;
    margin-bottom: 60px;
}

.hero-hotel-content h1 {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

/* BARRE DE RÉSERVATION */
.hotel-booking-bar {
    background: #161616;
    border: 1px solid #222;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.5);
}

.booking-bar-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)) 250px;
    gap: 20px;
    align-items: flex-end;
}

.bar-input-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.bar-input-group label {
    font-size: 12px;
    color: #bbb;
    text-transform: uppercase;
}

.bar-input-group input, .bar-input-group select {
    background: #222;
    border: 1px solid #333;
    padding: 12px;
    color: #fff;
    border-radius: 8px;
    outline: none;
}

.btn-hotel-book {
    background: #8B0000; /* Rouge PentaSync */
    color: #fff;
    border: none;
    padding: 14px;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-hotel-book:hover {
    background: #a10000;
}

/* --- SECTION 2 : ABOUT --- */
.hotel-about-section {
    padding: 100px 0;
    background-color: #111;
}

.about-hotel-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-hotel-images {
    position: relative;
    height: 450px;
}

.hotel-img-main {
    width: 80%;
    height: 400px;
    border-radius: 15px;
    background-size: cover;
    background-position: center;
}

.hotel-img-sub {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 50%;
    height: 250px;
    border-radius: 15px;
    border: 5px solid #111;
    background-size: cover;
    background-position: center;
}

.hotel-features-mini {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 30px;
}

.h-feature-item {
    font-size: 14px;
    color: #ccc;
}

.h-feature-item i {
    color: #FFB020;
    margin-right: 8px;
}

/* --- SECTION 3 : ROOMS CARDS --- */
.hotel-rooms-section {
    padding: 100px 0;
}

.rooms-hotel-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.room-hotel-card {
    background: #161616;
    border: 1px solid #222;
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s;
}

.room-hotel-card:hover {
    transform: translateY(-5px);
}

.room-card-img {
    height: 240px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.room-card-price {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background: #8B0000;
    padding: 6px 15px;
    border-radius: 5px;
    font-size: 14px;
    font-weight: bold;
}

.room-card-details {
    padding: 25px;
}

.room-card-details h3 {
    margin-bottom: 10px;
    font-size: 20px;
}

.room-amenities-icons {
    display: flex;
    gap: 15px;
    margin: 20px 0;
    font-size: 13px;
    color: #aaa;
}

.room-amenities-icons i {
    color: #FFB020;
}

.btn-room-book {
    display: block;
    text-align: center;
    background: transparent;
    border: 2px solid #8B0000;
    color: #fff !important;
    padding: 12px;
    border-radius: 8px;
    font-weight: bold;
    transition: background 0.3s;
}

.btn-room-book:hover {
    background: #8B0000;
}

/* ==========================================
   BOUTON VOIR TOUT - COMPOSANT HÔTEL
   ========================================== */

/* Conteneur pour centrer le bouton sous la grille */
.hotel-rooms-section .hotel-view-all-wrapper {
    text-align: center;
    margin-top: 50px;
    width: 100%;
}

/* Style du bouton Premium */
.hotel-rooms-section .btn-hotel-more {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 35px;
    background: transparent;
    color: #ffffff;
    border: 2px solid var(--primary-color);
    border-radius: 50px !important; /* Force l'arrondi si le thème l'écrase */
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    cursor: pointer;
}

/* Effet au survol (remplissage fluide) */
.hotel-rooms-section .btn-hotel-more:hover {
    background: var(--primary-color);
    color: #ffffff;
    box-shadow: 0 10px 20px rgba(214, 40, 40, 0.3);
    transform: translateY(-3px);
}

/* Animation de la flèche au survol */
.hotel-rooms-section .btn-hotel-more i {
    transition: transform 0.3s ease;
}

.hotel-rooms-section .btn-hotel-more:hover i {
    transform: translateX(5px);
}

/* --- COMPLEMENT DE BASE & SYSTEME D'ONGLETS HOTEL --- */

/* Sélecteurs natifs de date & heure stylisés (Visible et cliquables) */
.bar-input-group input[type="date"] {
    cursor: pointer;
    font-family: inherit;
}

.bar-input-group input[type="date"]::-webkit-calendar-picker-indicator {
    filter: invert(1); /* Rend l'icône de calendrier blanche et visible sur fond sombre */
    opacity: 0.7;
    cursor: pointer;
    transition: opacity 0.2s ease;
}

.bar-input-group input[type="date"]::-webkit-calendar-picker-indicator:hover {
    opacity: 1;
}

/* Container des Onglets */
.hotel-tabs-container {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

/* Boutons des Onglets */
.hotel-tab-btn {
    background: #161616;
    border: 1px solid #222;
    color: #ffffff;
    padding: 12px 25px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hotel-tab-btn:hover, .hotel-tab-btn.active {
    background: #FFB020; /* Accent Or */
    color: #0c0c0c;
    border-color: #FFB020;
    box-shadow: 0 5px 15px rgba(255, 176, 32, 0.2);
}

/* Contenu des Onglets */
.hotel-tab-pane {
    display: none;
    opacity: 0;
    transition: opacity 0.4s ease-in-out;
}

.hotel-tab-pane.active {
    display: block;
    opacity: 1;
}

/* Fallback en cas d'absence d'hébergement */
.no-rooms-message {
    text-align: center;
    padding: 40px;
    background: #161616;
    border: 1px dashed #333;
    border-radius: 15px;
    color: #bbb;
    grid-column: 1 / -1;
}