/* ==================== OCEAN BREEZE HOTEL RESERVATION THEME ==================== */
/* Fresh, Clean & Modern - Light Blue + Turquoise + White */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

:root {
    /* Primary Colors - Ocean Palette */
    --ocean-dark: #0077b6;
    --ocean-main: #0868B9;
    --ocean-light: #90e0ef;
    --turquoise: #48cae4;
    --aqua: #ade8f4;

    /* Neutrals */
    --white: #ffffff;
    --off-white: #f8fcfd;
    --pearl: #e8f4f8;
    --silver: #d0e3ec;
    --charcoal: #1d3557;
    --slate: #457b9d;

    /* Accents */
    --coral: #f77f00;
    --success: #06d6a0;
    --success-light: #d8f3dc;
    --error: #ef476f;
    --warning: #ffd166;

    /* Typography */
    --font-main: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    /* Shadows */
    --shadow-sm: 0 1px 4px rgba(0, 119, 182, 0.08);
    --shadow-md: 0 4px 12px rgba(0, 119, 182, 0.12);
    --shadow-lg: 0 8px 24px rgba(0, 119, 182, 0.15);

    /* Transitions */
    --transition-fast: all 0.2s ease;
    --transition-smooth: all 0.3s ease;
}


.site-footer .site-footer-bottom .widget.widget_nav_menu ul li a{
    text-decoration: none;
}


/* ==================== GLOBAL STYLES ==================== */
.hotel-reservation-form,
.hotel-rooms-container {
    font-family: var(--font-main);
    color: var(--charcoal);
    line-height: 1.5;
    font-size: 14px;
}

/* ==================== ROOMS HERO BANNER ==================== */
.rooms-hero-banner {
    position: relative;
    height: 350px;
    background: url('https://images.unsplash.com/photo-1566073771259-6a8506099945?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') center center;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.rooms-hero-banner .hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(8, 104, 185, 0.7) 0%, rgba(29, 53, 87, 0.8) 100%);
}

.rooms-hero-banner .hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    padding: 20px;
}

.rooms-hero-banner .hero-content h1 {
    font-size: 48px;
    font-weight: 700;
    margin: 0 0 16px 0;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.rooms-hero-banner .hero-content p {
    font-size: 18px;
    margin: 0;
    opacity: 0.95;
    max-width: 600px;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .rooms-hero-banner {
        height: 280px;
    }

    .rooms-hero-banner .hero-content h1 {
        font-size: 32px;
    }

    .rooms-hero-banner .hero-content p {
        font-size: 16px;
    }
}

/* ==================== ROOM CARDS - Simple Clean Design ==================== */
.hotel-rooms-container {
    min-height: auto;
    padding: 40px 0;
}

.room-card-link {
    text-decoration: none;
    display: block;
}

.room-card {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    transition: var(--transition-smooth);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.room-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.room-image-wrapper {
    position: relative;
    overflow: hidden;
    height: 220px;
}

.menu-item a {
    color:#fff !important;
    text-decoration: none !important;
}

.room-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.room-card:hover .room-image {
    transform: scale(1.05);
}

.room-price-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--ocean-main);
    color: var(--white);
    padding: 8px 14px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 700;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    z-index: 2;
}

.room-price-badge span {
    font-size: 11px;
    font-weight: 400;
    opacity: 0.9;
}

.room-content {
    padding: 20px 15px;
    text-align: center;
}

.room-name {
    font-size: 18px;
    font-weight: 600;
    color: var(--charcoal);
    margin: 0 0 10px 0;
}

.room-description {
    font-size: 14px;
    color: #777;
    line-height: 1.5;
    margin: 0 0 15px 0;
}

.room-buttons {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.btn-room {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    transition: var(--transition-fast);
    text-align: center;
    flex: 1;
}

.btn-details {
    background: var(--white);
    color: var(--ocean-main);
    border: 1px solid var(--ocean-main);
}

.btn-details:hover {
    background: var(--ocean-main);
    color: var(--white);
}

.btn-book {
    background: var(--ocean-main);
    color: var(--white);
    border: 1px solid var(--ocean-main);
}

.btn-book:hover {
    background: var(--ocean-dark);
    border-color: var(--ocean-dark);
}

/* ==================== RESERVATION FORM ==================== */
.hotel-reservation-form {
    max-width: 880px;
    margin: 30px auto;
    padding: 0 16px;
}

/* ==================== WIZARD PROGRESS - Clean Horizontal ==================== */
.wizard-progress {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 25px;
    padding: 15px 0;
    background: var(--white);
    position: relative;
}

.wizard-progress::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 5%;
    right: 5%;
    height: 1px;
    background: var(--silver);
    transform: translateY(-50%);
    z-index: 0;
}

.step-indicator {
    flex: 1;
    text-align: center;
    position: relative;
    z-index: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--white);
    padding: 0 15px;
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: var(--white);
    border: 2px solid var(--silver);
    color: var(--slate);
    font-weight: 600;
    font-size: 12px;
    transition: var(--transition-smooth);
    flex-shrink: 0;
}

.step-indicator.active .step-number {
    background: var(--ocean-main);
    border-color: var(--ocean-main);
    color: var(--white);
}

.step-indicator.completed .step-number {
    background: var(--success);
    border-color: var(--success);
    color: var(--white);
}

.step-label {
    font-size: 13px;
    font-weight: 500;
    color: var(--slate);
    transition: var(--transition-fast);
    white-space: nowrap;
}

.step-indicator.active .step-label {
    color: var(--charcoal);
    font-weight: 600;
}

.step-indicator.completed .step-label {
    color: var(--charcoal);
}

/* ==================== WIZARD STEPS ==================== */
.wizard-step {
    display: none;
    background: var(--white);
    padding: 28px 32px;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--silver);
    animation: fadeIn 0.4s ease;
}

.wizard-step.active {
    display: block;
}

.wizard-step h2 {
    font-size: 22px;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--pearl);
    position: relative;
}

.wizard-step h2::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, var(--ocean-main), var(--turquoise));
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(15px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==================== FORM ELEMENTS ==================== */
.form-group {
    margin-bottom: 14px;
}

.form-group label {
    display: block;
    font-weight: 500;
    color: var(--charcoal);
    margin-bottom: 4px;
    font-size: 12px;
}

.form-group input,
.form-group select,
.form-group textarea,
.form-control {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid var(--silver);
    border-radius: 8px;
    font-size: 13px;
    font-family: var(--font-main);
    transition: var(--transition-fast);
    background: var(--white);
    color: var(--charcoal);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus,
.form-control:focus {
    outline: none;
    border-color: var(--turquoise);
    box-shadow: 0 0 0 3px rgba(72, 202, 228, 0.2);
}

.form-group textarea {
    min-height: 60px;
    resize: vertical;
}

/* Validation */
.was-validated .form-control:invalid,
.form-control.is-invalid {
    border-color: var(--error);
}

.was-validated .form-control:valid,
.form-control.is-valid {
    border-color: var(--success);
}

.invalid-feedback {
    display: none;
    color: var(--error);
    font-size: 11px;
    margin-top: 3px;
}

.was-validated .form-control:invalid~.invalid-feedback,
.form-control.is-invalid~.invalid-feedback {
    display: block;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

/* ==================== GUEST INFO BLOCKS ==================== */
.guest-info-block {
    background: var(--off-white);
    border: 1px solid var(--silver);
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 14px;
}

.guest-info-block h3 {
    font-size: 15px;
    font-weight: 600;
    color: var(--ocean-dark);
    margin-bottom: 12px;
}

.guest-info-block h4 {
    font-size: 14px;
    font-weight: 500;
    color: var(--charcoal);
    margin-bottom: 10px;
}

.responsible-block {
    background: linear-gradient(135deg, rgba(0, 168, 232, 0.05) 0%, rgba(72, 202, 228, 0.08) 100%);
    border-color: var(--turquoise);
}

.child-block {
    background: linear-gradient(135deg, rgba(255, 209, 102, 0.1) 0%, rgba(255, 209, 102, 0.05) 100%);
    border-color: var(--warning);
}

/* ==================== OPTIONS ==================== */
.options-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 10px;
}

.option-card label,
.checkbox label {
    display: flex;
    align-items: center;
    padding: 12px 14px;
    border: 1px solid var(--silver);
    border-radius: 10px;
    cursor: pointer;
    transition: var(--transition-fast);
    background: var(--white);
    font-size: 13px;
}

.option-card label:hover,
.checkbox label:hover {
    border-color: var(--turquoise);
    background: var(--pearl);
}

.option-card input[type="checkbox"],
.checkbox input[type="checkbox"] {
    width: 16px;
    height: 16px;
    margin-right: 10px;
    accent-color: var(--turquoise);
}

.board-types-grid {
    gap: 10px !important;
}

.board-type-card {
    border: 1px solid var(--silver) !important;
    border-radius: 10px !important;
    padding: 14px !important;
    transition: var(--transition-fast) !important;
}

.board-type-card:hover {
    border-color: var(--turquoise) !important;
}

.board-type-card:has(input:checked) {
    border-color: var(--ocean-main) !important;
    background: var(--pearl) !important;
}

/* ==================== PRICE DISPLAY ==================== */
.price-display {
    background: linear-gradient(135deg, var(--ocean-main) 0%, var(--turquoise) 100%);
    color: var(--white);
    padding: 18px;
    margin: 18px 0;
    border-radius: 12px;
    text-align: center;
}

/* ==================== SUMMARY SECTIONS ==================== */
.summary-section {
    background: var(--white);
    padding: 20px;
    margin: 14px 0;
    border-radius: 12px;
    border: 1px solid var(--silver);
    transition: var(--transition-fast);
}

.summary-section:hover {
    border-color: var(--turquoise);
    box-shadow: var(--shadow-sm);
}

.summary-section h3 {
    font-size: 16px;
    font-weight: 600;
    color: var(--ocean-dark);
    margin-bottom: 14px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--pearl);
}

.summary-section p {
    margin: 8px 0;
    font-size: 13px;
    color: var(--slate);
    line-height: 1.5;
}

.summary-section p strong {
    color: var(--charcoal);
    font-weight: 500;
    min-width: 120px;
    display: inline-block;
}

.total-price {
    font-size: 28px;
    font-weight: 700;
    color: var(--ocean-dark);
    text-align: center;
    padding: 18px;
    background: linear-gradient(135deg, var(--pearl) 0%, var(--aqua) 100%);
    border-radius: 12px;
    margin-top: 14px;
    border: 2px solid var(--turquoise);
}

/* Room Details Card */
.room-details-card {
    background: var(--white);
    border-radius: 14px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--silver);
    margin: 14px 0;
}

.room-details-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.room-details-content {
    padding: 18px;
}

.room-details-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: 10px;
}

.room-details-description {
    color: var(--slate);
    font-size: 13px;
    line-height: 1.5;
    margin-bottom: 14px;
}

.room-details-meta {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.room-meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    background: var(--pearl);
    border-radius: 8px;
    font-size: 12px;
    font-weight: 500;
    color: var(--charcoal);
}

.room-amenities-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 12px;
}

.room-amenity-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 6px 10px;
    background: var(--pearl);
    border-radius: 15px;
    font-size: 11px;
    font-weight: 500;
    color: var(--ocean-dark);
}

/* Calculation Breakdown */
.calculation-breakdown {
    background: var(--off-white);
    border-left: 4px solid var(--ocean-main);
    padding: 16px;
    margin: 14px 0;
    border-radius: 0 10px 10px 0;
}

.calculation-breakdown h4 {
    font-size: 15px;
    font-weight: 600;
    color: var(--ocean-dark);
    margin-bottom: 14px;
}

.calculation-step {
    background: var(--white);
    padding: 12px;
    border-radius: 8px;
    margin: 10px 0;
    border-left: 3px solid var(--turquoise);
}

.calculation-step strong {
    font-size: 13px;
    color: var(--charcoal);
}

.calculation-detail {
    margin: 8px 0;
    padding-left: 14px;
    color: var(--slate);
    font-size: 12px;
}

.calculation-formula {
    padding: 10px;
    background: var(--pearl);
    border-radius: 6px;
    font-family: 'Consolas', monospace;
    font-size: 11px;
    color: var(--charcoal);
    margin: 8px 0;
}

.calculation-total {
    background: linear-gradient(135deg, var(--ocean-main) 0%, var(--turquoise) 100%);
    color: var(--white);
    padding: 16px;
    border-radius: 10px;
    margin: 14px 0;
    text-align: center;
}

.calculation-total strong {
    font-size: 22px;
    font-weight: 700;
}

.child-calculation-item {
    margin: 8px 0;
    padding: 10px;
    background: rgba(255, 209, 102, 0.15);
    border-left: 3px solid var(--warning);
    border-radius: 0 6px 6px 0;
}

.option-calculation-item {
    margin: 6px 0;
    padding: 8px;
    background: var(--pearl);
    border-left: 3px solid var(--slate);
    border-radius: 0 6px 6px 0;
}

/* ==================== BUTTONS ==================== */
.wizard-buttons {
    display: flex;
    justify-content: space-between;
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid var(--silver);
    gap: 12px;
}

.btn {
    padding: 12px 28px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 600;
    font-family: var(--font-main);
    transition: var(--transition-fast);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-primary {
    background: linear-gradient(135deg, var(--ocean-main) 0%, var(--turquoise) 100%);
    color: var(--white);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--ocean-dark) 0%, var(--ocean-main) 100%);
}

.btn-secondary {
    background: var(--white);
    color: var(--ocean-main);
    border: 2px solid var(--ocean-main);
}

.btn-secondary:hover {
    background: var(--ocean-main);
    color: var(--white);
}

.btn-success {
    background: linear-gradient(135deg, var(--success) 0%, #0cb087 100%);
    color: var(--white);
}

.btn-success:hover {
    background: linear-gradient(135deg, #0cb087 0%, #05a178 100%);
}

/* ==================== SUCCESS MESSAGE ==================== */
.booking-success {
    text-align: center;
    padding: 40px 30px;
    background: linear-gradient(135deg, var(--success-light) 0%, var(--white) 100%);
    border: 2px solid var(--success);
    border-radius: 16px;
    box-shadow: var(--shadow-md);
}

.booking-success h2 {
    color: var(--charcoal);
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 14px;
}

.booking-success p {
    font-size: 14px;
    color: var(--slate);
    margin: 8px 0;
}

/* ==================== LOADING ==================== */
.loading-spinner {
    display: inline-block;
    width: 18px;
    height: 18px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: var(--white);
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* ==================== CAROUSEL ==================== */
.room-gallery-carousel {
    border-radius: 12px;
    overflow: hidden;
}

.room-gallery-carousel .carousel-item img {
    height: 250px;
    object-fit: cover;
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 768px) {
    .hotel-reservation-form {
        padding: 0 12px;
        margin: 20px auto;
    }

    .wizard-progress {
        flex-direction: column;
        gap: 8px;
        padding: 12px;
    }

    .wizard-progress::before {
        display: none;
    }

    .step-indicator {
        width: 100%;
        justify-content: flex-start;
        padding: 8px 12px;
        border-radius: 8px;
        background: var(--off-white);
    }

    .step-indicator.active {
        background: var(--pearl);
    }

    .wizard-step {
        padding: 20px 18px;
    }

    .wizard-step h2 {
        font-size: 18px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .wizard-buttons {
        flex-direction: column;
    }

    .wizard-buttons .btn {
        width: 100%;
    }

    .options-grid,
    .board-types-grid {
        grid-template-columns: 1fr !important;
    }

    .total-price {
        font-size: 22px;
    }
}

@media (max-width: 480px) {
    .wizard-step {
        padding: 16px 14px;
    }

    .btn {
        padding: 10px 20px;
        font-size: 12px;
    }

    .guest-info-block {
        padding: 12px;
    }
}

/* ==================== SCROLLBAR ==================== */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--pearl);
}

::-webkit-scrollbar-thumb {
    background: var(--turquoise);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--ocean-main);
}

/* ==================== SELECTION ==================== */
::selection {
    background: var(--turquoise);
    color: var(--white);
}

/* Cacher le titre sur les pages chambres */
.page-title,
.entry-title {
    display: none;
}

/* ==================== GALLERY MODAL ==================== */
#roomGalleryModal .modal-content {
    background-color: transparent !important;
    box-shadow: none !important;
}

#roomGalleryModal .modal-body {
    background: transparent;
}

#roomGalleryModal .carousel-item img {
    max-height: 85vh;
    object-fit: contain;
    margin: 0 auto;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

#roomGalleryModal .btn-close {
    background-color: white;
    opacity: 0.8;
    border-radius: 50%;
    padding: 10px !important;
    background-size: 14px;
    z-index: 1050;
    transition: all 0.2s;
}

#roomGalleryModal .btn-close:hover {
    opacity: 1;
    transform: scale(1.1);
}

#roomGalleryModal .carousel-control-prev,
#roomGalleryModal .carousel-control-next {
    width: 60px;
    opacity: 0.8;
}

#roomGalleryModal .carousel-control-prev:hover,
#roomGalleryModal .carousel-control-next:hover {
    opacity: 1;
    background: rgba(0, 0, 0, 0.2);
    /* Add subtle background for better visibility */
    border-radius: 50%;
    height: 60px;
    top: 50%;
    transform: translateY(-50%);
    margin: 0 20px;
}

#roomGalleryModal .carousel-caption {
    background: rgba(0, 0, 0, 0.6);
    padding: 10px 20px;
    border-radius: 30px;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: auto;
    max-width: 80%;
}

#roomGalleryModal .carousel-caption p {
    margin: 0;
    font-size: 14px;
    color: white;
}

/* Room Options Detail List */
.options-list-detail {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px;
    margin-top: 15px;
}

.option-item-detail {
    display: flex;
    align-items: center;
    background: #f8fafc;
    padding: 12px 15px;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
}

.option-check {
    color: var(--ocean-main);
    font-weight: bold;
    margin-right: 10px;
    font-size: 1.1em;
}

.option-info {
    display: flex;
    flex-direction: column;
}

.option-info strong {
    font-size: 14px;
    color: #334155;
    margin-bottom: 2px;
}

.option-price-tag {
    font-size: 12px;
    color: var(--ocean-main);
    font-weight: 500;
}