/* Available Rooms Page */
.available-rooms {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    padding: 10px 15px;
    font-weight: 600;
    text-align: center;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
}

.room-amenities {
    margin: 15px 0;
    padding: 0;
    list-style: none;
}

.room-amenities li {
    display: inline-block;
    margin-right: 10px;
    margin-bottom: 10px;
    padding: 5px 10px;
    background: #f5f5f5;
    border-radius: 4px;
    font-size: 12px;
}

.room-price {
    font-size: 24px;
    font-weight: 700;
    color: #aa8453;
    margin: 15px 0;
}

.room-price small {
    font-size: 14px;
    color: #777;
    font-weight: 400;
}

.room-features {
    display: flex;
    justify-content: space-between;
    margin: 15px 0;
    padding: 15px 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.room-feature {
    text-align: center;
}

.room-feature i {
    display: block;
    font-size: 24px;
    color: #aa8453;
    margin-bottom: 5px;
}

.room-feature span {
    display: block;
    font-size: 12px;
    color: #777;
}

/* Booking Form in Modal */
#bookingForm label {
    font-weight: 500;
    color: #333;
    margin-bottom: 5px;
}

#bookingForm .form-control {
    border: 1px solid #ddd;
    border-radius: 0;
    padding: 10px 15px;
    height: auto;
}

#bookingForm .btn-primary {
    background: #aa8453;
    border: none;
    padding: 12px 25px;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

#bookingForm .btn-primary:hover {
    background: #977543;
}

/* Room Details Page Booking Form */
.room-details-page .booking-widget {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
    padding: 25px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(170, 132, 83, 0.2);
    transition: all 0.3s ease;
}

.room-details-page .booking-widget:hover {
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.12);
    transform: translateY(-3px);
}

.room-details-page .booking-widget h6 {
    color: #1a1a1a;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 25px;
    padding-bottom: 15px;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.room-details-page .booking-widget h6:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background: #aa8453;
}

.room-details-page .form-label {
    font-weight: 500;
    color: #4a4a4a;
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.room-details-page .form-control,
.room-details-page .form-select {
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    padding: 12px 15px;
    height: auto;
    font-size: 0.95rem;
    color: #333;
    transition: all 0.3s ease;
    background-color: #f9f9f9;
}

.room-details-page .form-control:focus,
.room-details-page .form-select:focus {
    border-color: #aa8453;
    box-shadow: 0 0 0 0.2rem rgba(170, 132, 83, 0.25);
    background-color: #fff;
}

.room-details-page .form-select {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 16px 12px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    padding-right: 2.25rem;
}

.room-details-page .btn-primary {
    background: #aa8453;
    border: none;
    padding: 14px 25px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    width: 100%;
    border-radius: 4px;
    font-size: 0.95rem;
    margin-top: 10px;
}

.room-details-page .btn-primary:hover {
    background: #977543;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(170, 132, 83, 0.3);
}

.room-details-page .btn-primary:active {
    transform: translateY(0);
}

.room-details-page .form-group {
    margin-bottom: 20px;
    position: relative;
}

.room-details-page .form-text {
    font-size: 0.8rem;
    color: #6c757d;
    margin-top: 5px;
}

/* Error message styling */
.room-details-page .text-danger {
    font-size: 0.85rem;
    margin-top: 5px;
    display: block;
    color: #dc3545;
    font-weight: 500;
}

/* Video Slider Styles */
.video-slide {
    position: relative;
    overflow: hidden;
}

.video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.video-slide .v-middle {
    position: relative;
    z-index: 2;
}

.video-slide .caption {
    background: rgba(0, 0, 0, 0.4);
    padding: 20px;
    border-radius: 8px;
}

/* Ensure video covers entire slide area */
.header.slider-fade .owl-carousel .item {
    height: 100vh;
    position: relative;
}

.header.slider-fade .owl-carousel .item video,
.header.slider-fade .owl-carousel .item iframe {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* YouTube iframe specific styles */
.header.slider-fade .owl-carousel .item iframe {
    border: none;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100vw;
    height: 56.25vw; /* 16:9 aspect ratio */
    min-width: 100%;
    min-height: 100%;
    object-fit: cover;
}

/* Ensure video covers entire slide area */
.header.slider-fade .owl-carousel .item {
    height: 100vh;
    position: relative;
    overflow: hidden;
}

.video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

/* Responsive Adjustments */
@media (max-width: 767px) {
    .available-rooms {
        font-size: 12px;
        padding: 5px 10px;
    }
    
    .room-price {
        font-size: 20px;
    }
    
    .room-features {
        flex-wrap: wrap;
    }
    
    .room-feature {
        width: 50%;
        margin-bottom: 15px;
    }
    
    /* Mobile Video Slider Styles */
    .header.slider-fade .owl-carousel .item {
        height: 100vh;
        position: relative;
        overflow: hidden;
    }
    
    .header.slider-fade .owl-carousel .item iframe {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 100vw;
        height: 56.25vw; /* 16:9 aspect ratio */
        min-width: 100%;
        min-height: 100vh;
        object-fit: cover;
        border: none;
    }
    
    .video-slide .video-container {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: -1;
        overflow: hidden;
    }
    
    .video-slide .caption {
        position: relative;
        z-index: 2;
        padding: 20px 15px;
    }
    
    .video-slide .caption h1 {
        font-size: 24px !important;
        line-height: 1.3 !important;
        margin-bottom: 15px !important;
    }
    
    .video-slide .caption h4 {
        font-size: 14px !important;
        margin-bottom: 20px !important;
    }
    
    .video-slide .caption .butn-light {
        margin-top: 20px;
        padding: 12px 20px;
        font-size: 13px;
    }
    
    /* Mobile Navbar Background - Non-transparent */
    .navbar {
        background: #333333 !important;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1) !important;
        position: fixed !important;
    }
    
    .navbar .logo-img {
        filter: none !important;
    }
    
    .navbar .navbar-toggler-icon i {
        color: #ffffff !important;
    }
    
    .navbar .nav-link {
        color: #ffffff !important;
    }
    
    .navbar .nav-link:hover,
    .navbar .nav-link.active {
        color: #aa8453 !important;
    }
    
    /* Mobile Menu (Opened) Styling */
    .navbar .navbar-collapse {
        background: #333333 !important;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15) !important;
    }
    
    .navbar .navbar-nav .nav-link {
        color: #ffffff !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
        padding: 15px 20px !important;
    }
    
    .navbar .navbar-nav .nav-link:hover,
    .navbar .navbar-nav .nav-link.active {
        color: #aa8453 !important;
        background: rgba(170, 132, 83, 0.1) !important;
    }
    
    .navbar .dropdown-menu {
        background: #2a2a2a !important;
        border: none !important;
        box-shadow: none !important;
    }
    
    .navbar .dropdown-menu li {
        border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
    }
    
    .navbar .dropdown-menu .dropdown-item {
        color: #ffffff !important;
        padding: 12px 20px !important;
        transition: all 0.3s ease !important;
    }
    
    .navbar .dropdown-menu .dropdown-item:hover,
    .navbar .dropdown-menu .dropdown-item.active {
        color: #aa8453 !important;
        background: rgba(170, 132, 83, 0.1) !important;
    }
    
    .navbar .dropdown-menu .dropdown-item i {
        color: #ffffff !important;
    }
    
    .navbar .dropdown-toggle::after {
        border-top-color: #ffffff !important;
    }
    
    /* Mobile Header - Maintain Dark Background on Scroll */
    .nav-scroll {
        background: #333333 !important;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1) !important;
    }
    
    .nav-scroll .logo-img {
        filter: none !important;
        width: 140px !important;
        padding: 10px 0 !important;
        transition: all 0.3s ease !important;
    }
    
    .logo-img {
        width: 140px !important;
        padding: 15px 0 !important;
        transition: all 0.3s ease !important;
    }
    
    .nav-scroll .navbar-toggler-icon i {
        color: #ffffff !important;
    }
    
    .nav-scroll .nav-link {
        color: #ffffff !important;
    }
    
    .nav-scroll .nav-link:hover,
    .nav-scroll .nav-link.active {
        color: #aa8453 !important;
    }
    
    .nav-scroll .navbar-collapse {
        background: #333333 !important;
    }
    
    .nav-scroll .dropdown-menu {
        background: #2a2a2a !important;
    }
    
    .nav-scroll .dropdown-menu .dropdown-item {
        color: #ffffff !important;
    }
    
    .nav-scroll .dropdown-menu .dropdown-item:hover,
    .nav-scroll .dropdown-menu .dropdown-item.active {
        color: #aa8453 !important;
    }
}

  .vid-area {
   position: relative;
     padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
     height: 0;
     overflow: hidden;
     border-radius: 8px;
     box-shadow: 0 4px 8px rgba(0,0,0,0.1);
     background: #000;
    }
     .vid-area iframe,
     .vid-area video {
         position: absolute;
         top: 0;
         left: 0;
          width: 100%;
          height: 100%;
          border: 0;
    }

