
/* RoamBlack Premium Widget CSS */
#rb-booking-widget {
    background: #fff;
    border: 1px solid #eee;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    font-family: "Inter", sans-serif;
}

.rb-control-group {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.rb-field {
    flex: 1;
}

.rb-field label {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #888;
    margin-bottom: 8px;
    font-weight: 600;
}

.rb-input {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 1rem;
    color: #333;
    background: #f9f9f9;
    transition: all 0.2s;
}

.rb-input:focus {
    border-color: #000;
    background: #fff;
    outline: none;
}

#rb-price-display {
    text-align: center;
    margin: 25px 0;
    padding: 20px;
    background: #fdfdfd;
    border-radius: 8px;
    border: 1px dashed #eee;
}

.rb-price-main {
    font-size: 2rem;
    font-weight: 800;
    color: #000;
    display: block;
}

.rb-price-sub {
    font-size: 0.85rem;
    color: #666;
    margin-top: 5px;
    display: block;
}

#rb-book-btn {
    background: #000;
    color: #fff;
    width: 100%;
    padding: 18px;
    border: none;
    border-radius: 6px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: background 0.3s;
}

#rb-book-btn:hover {
    background: #333;
}

#rb-book-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
}

/* Gallery Slider */
.rb-gallery {
    position: relative;
    height: 60vh;
    min-height: 500px;
    overflow: hidden;
    margin-bottom: 40px;
    border-radius: 0 0 20px 20px;
}

.rb-gallery img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: none; /* Hide all by default */
}

.rb-gallery img.active {
    display: block;
    animation: fadeIn 0.5s;
}

.rb-gallery-nav {
    position: absolute;
    bottom: 20px;
    right: 20px;
    display: flex;
    gap: 10px;
}

.rb-nav-dot {
    width: 10px;
    height: 10px;
    background: rgba(255,255,255,0.5);
    border-radius: 50%;
    cursor: pointer;
}

.rb-nav-dot.active {
    background: #fff;
    transform: scale(1.2);
}

@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }


/* Gallery Slider CSS */
.rb-gallery-wrapper {
    position: relative;
    height: 70vh;
    min-height: 600px;
    width: 100%;
    overflow: hidden;
    margin-bottom: 0;
}

.rb-gallery-wrapper img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.rb-gallery-wrapper img.active {
    opacity: 1;
}

.rb-gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 80px 40px 40px;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    z-index: 2;
    color: #fff;
}

