/* 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;
    }
}

/* Ads Section Styles */
.ads-section {
    padding: 20px;
    margin: 20px 0;
    background-color: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 4px;
    text-align: center;
}

.ads-section h4 {
    margin-top: 0;
    color: #333;
    font-size: 18px;
}

.ads-content {
    padding: 15px 0;
}

.ad-placeholder {
    background-color: #e9ecef;
    border: 1px dashed #adb5bd;
    padding: 40px;
    text-align: center;
    color: #6c757d;
    min-height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
}

/* Sticky Sidebar Ad */
.sidebar-ads {
    position: fixed;
    top: 20px;
    right: 20px;
    width: 300px;
    z-index: 1000;
    background-color: #fff;
    border: 1px solid #e9ecef;
    border-radius: 4px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    padding: 15px;
}

.sidebar-ads .ad-placeholder {
    min-height: 400px;
    padding: 20px;
}

/* Responsive adjustments for sticky sidebar ad */
@media (max-width: 991px) {
    .sidebar-ads {
        position: static;
        width: 100%;
        margin-bottom: 20px;
    }
    
    .sidebar-ads .ad-placeholder {
        min-height: 300px;
    }
}

/* Ad banner styles */
.ad-banner {
    width: 100%;
    background-color: #007bff;
    color: white;
    padding: 20px;
    text-align: center;
    margin: 20px 0;
    border-radius: 4px;
}

.ad-banner h4 {
    margin: 0 0 10px 0;
    color: white;
}

.ad-banner p {
    margin: 0;
}