/* Booking Engine Styles - Kankay Hotel */
:root {
    --booking-primary: #1a1a1a;
    --booking-secondary: #ffba5a; /* Kankay Orange */
    --booking-bg: #f2f4fb;
    --booking-card-bg: #ffffff;
    --booking-text: #333333;
    --booking-accent: #e9ecef;
    --booking-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

/* Search Bar - Light Theme like Index */
.booking-search-bar {
    background: #ffffff;
    padding: 25px 0;
    margin-top: -50px;
    z-index: 10;
    position: relative;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    color: #333333;
    border: 1px solid #eee;
}

.booking-search-bar .form-group {
    margin-bottom: 0;
}

.booking-search-bar .form-control {
    background: #ffffff;
    border: 2px solid #eee;
    color: #333333;
    height: 50px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.booking-search-bar .form-control:focus {
    border-color: var(--booking-secondary);
    background: #fff;
    box-shadow: 0 0 10px rgba(255, 186, 90, 0.2);
}

.booking-search-bar label {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
    color: #999;
    display: block;
}

.booking-search-btn, .booking-search-btn.btn-primary {
    height: 50px;
    font-weight: bold;
    text-transform: uppercase;
    background: var(--booking-secondary) !important;
    border: none !important;
    color: white !important;
    border-radius: 30px;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 186, 90, 0.3);
}

.booking-search-btn:hover, .booking-search-btn.btn-primary:hover {
    background: #f0ac4c !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 186, 90, 0.4);
    color: white !important;
}

/* Layout */
.booking-container {
    padding: 60px 0;
}

.booking-sidebar {
    background: white;
    padding: 25px;
    border-radius: 8px;
    box-shadow: var(--booking-shadow);
    position: sticky;
    top: 100px;
}

/* Room Cards */
.room-card {
    background: var(--booking-card-bg);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--booking-shadow);
    margin-bottom: 30px;
    transition: transform 0.3s ease;
    border: 1px solid #eee;
    display: flex;
}

.room-card:hover {
    transform: translateY(-5px);
}

.room-card-img {
    width: 350px;
    height: 250px;
    object-fit: cover;
}

.room-card-content {
    flex: 1;
    padding: 25px;
    display: flex;
    flex-direction: column;
}

.room-card-title {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 10px;
    color: var(--booking-primary);
}

.room-card-description {
    color: #666;
    font-size: 0.95rem;
    flex-grow: 1;
}

.room-card-amenities {
    display: flex;
    gap: 15px;
    margin: 15px 0;
    color: #888;
    font-size: 0.85rem;
}

.room-card-price-box {
    text-align: right;
    border-left: 1px solid #eee;
    padding-left: 25px;
    min-width: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.room-card-price {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--booking-secondary) !important;
}

.room-card-price-label {
    font-size: 0.8rem;
    color: #888;
}

.room-card-btn, .room-card-btn.btn-primary {
    margin-top: 15px;
    font-weight: bold;
    width: 100%;
    background: var(--booking-secondary) !important;
    border: none !important;
    color: white !important;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.room-card-btn:hover, .room-card-btn.btn-primary:hover {
    background: #f0ac4c !important;
    color: white !important;
}

/* Vertical Room Card (for Index) */
.vertical-room-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border: 1px solid #eee;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.vertical-room-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.vertical-room-card img {
    height: 220px;
    width: 100%;
    object-fit: cover;
}

.vertical-room-card-body {
    padding: 25px;
    text-align: center;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.vertical-room-card-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 5px;
    color: var(--booking-primary);
}

.vertical-room-card-price {
    color: var(--booking-secondary);
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.vertical-room-card-btn {
    border-radius: 30px;
    padding: 10px 25px;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
}

@media (max-width: 992px) {
    .room-card {
        flex-direction: column;
    }
    .room-card-img {
        width: 100%;
        height: 200px;
    }
    .room-card-price-box {
        border-left: none;
        border-top: 1px solid #eee;
        padding: 20px;
        text-align: center;
    }
}
