/* Custom CSS for logo text */
.logo {
    padding: 20px 0;
}

.logo span {
    display: inline-block;
    vertical-align: middle;
    font-size: 20px;
    font-weight: bold;
    color: #dfa974;
    font-family: "Lora", serif;
    line-height: 1;
}

/* Responsive logo text */
@media (max-width: 991px) {
    .logo {
        padding: 15px 0;
    }
    
    .logo span {
        font-size: 18px;
    }
}

@media (max-width: 767px) {
    .logo {
        padding: 12px 0;
    }
    
    .logo span {
        font-size: 16px;
    }
}

/* Book Now Button Styles */
.book-now-btn {
    display: inline-block;
    font-size: 13px;
    color: #ffffff !important;
    background-color: #28a745; /* Green color */
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    padding: 12px 20px;
    border-radius: 2px;
    text-decoration: none;
    margin-top: 10px;
    transition: all 0.3s ease;
}

.book-now-btn:hover {
    background-color: #218838; /* Darker green on hover */
    text-decoration: none;
    color: #ffffff !important;
}

/* Position the book now button next to the details button */
.room-item .ri-text {
    position: relative;
}

.room-item .ri-text .book-now-btn {
    display: block;
    margin-top: 10px;
    width: 100%;
    text-align: center;
}

/* For smaller screens, stack the buttons */
@media (max-width: 576px) {
    .room-item .ri-text .primary-btn,
    .room-item .ri-text .book-now-btn {
        width: 100%;
        margin-bottom: 8px;
        text-align: center;
    }
}

/* Sticky Sidebar for Ads */
.sticky-sidebar {
    position: fixed;
    top: 150px; /* Adjust to avoid header */
    right: 20px;
    width: 120px;
    z-index: 1000;
}

@media (max-width: 992px) {
    .sticky-sidebar {
        display: none; /* Hide sidebar on smaller screens to avoid clutter */
    }
}
