/* Hotel Single Page Styles */
.dhr-hotel-single {
    max-width: 1320px;
    margin: 0 auto;
    padding: 40px 20px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}

.dhr-hotel-container {
    /* background: #fff; */
    border-radius: 12px;
    /* box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08); */
    padding: 40px;
}

/* 1. Title */
.dhr-hotel-header {
    margin-bottom: 20px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center top;
    min-height: 200px;
    position: relative;
    display: flex;
    justify-content: center;
    flex-direction: column;
    z-index: 1;
    background: rgb(255, 255, 255);
    box-shadow: 0 2px 20px rgb(255 0 0 / 15%);
}
.dhr-hotel-title:before {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(13, 59, 93, 0.7);
    content: "";
    z-index: -1;
}

.dhr-hotel-title {
text-align: center;
    font-weight: 700;
    margin: 0;
    font-size: 40px;
    color: white;
    margin-bottom: 20px;
    margin-top: 10px;
    line-height: 1.2;
}

/* 2. Rating */
.dhr-hotel-rating {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.dhr-stars {
    display: flex;
    gap: 2px;
}

.dhr-star {
    font-size: 1.4rem;
    color: #ffc107;
}

.dhr-star-empty {
    color: #ddd;
}

.dhr-star-half {
    background: linear-gradient(90deg, #ffc107 50%, #ddd 50%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.dhr-rating-number {
    font-weight: 600;
    color: #1a1a1a;
    font-size: 1.1rem;
}

.dhr-review-count {
    color: #666;
    font-size: 0.95rem;
}

/* 3. Gallery */
.dhr-hotel-gallery {
    margin-bottom: 30px;
    border-radius: 12px;
    overflow: hidden;
}

.dhr-gallery-slider {
    position: relative;
}

.dhr-gallery-slide {
    outline: none;
}

.dhr-gallery-slide img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
}

/* Slick Carousel Customization */
.dhr-gallery-slider .slick-prev,
.dhr-gallery-slider .slick-next {
    z-index: 10;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.dhr-gallery-slider .slick-prev {
    left: 20px;
}

.dhr-gallery-slider .slick-next {
    right: 20px;
}

.dhr-gallery-slider .slick-prev:hover,
.dhr-gallery-slider .slick-next:hover {
    background: #fff;
}

.dhr-gallery-slider .slick-prev:before,
.dhr-gallery-slider .slick-next:before {
    color: #333;
    font-size: 24px;
}

.dhr-gallery-slider .slick-dots {
    bottom: 20px;
}

.dhr-gallery-slider .slick-dots li button:before {
    font-size: 12px;
    color: #fff;
    opacity: 0.7;
}

.dhr-gallery-slider .slick-dots li.slick-active button:before {
    color: #fff;
    opacity: 1;
}

/* 4 & 5. Pricing */
.dhr-hotel-pricing {
    display: flex;
    align-items: baseline;
    gap: 15px;
    margin-bottom: 30px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
    flex-wrap: wrap;
}

.dhr-price-regular {
    font-size: 2rem;
    font-weight: 700;
    color: #2c5282;
}

.dhr-price-crossed {
    text-decoration: line-through;
    color: #999;
    font-size: 1.4rem;
    font-weight: 500;
}

.dhr-price-discounted {
    font-size: 2rem;
    font-weight: 700;
    color: #e53e3e;
}

.dhr-price-label {
    color: #666;
    font-size: 1rem;
}

/* 6. Features */
.dhr-hotel-features {
    margin-bottom: 30px;
}

.dhr-hotel-features h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 20px 0;
}

.dhr-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 15px;
}

.dhr-feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.dhr-feature-item:hover {
    background: #e9ecef;
    transform: translateY(-2px);
}

.dhr-feature-icon {
    font-size: 1.4rem;
    color: #2c5282;
    width: 30px;
    text-align: center;
}

.dhr-feature-icon:before {
    font-family: dashicons;
}

.dhr-feature-name {
    font-size: 0.95rem;
    color: #333;
    font-weight: 500;
}

/* 7. Description */
.dhr-hotel-description {
    margin-top: 30px;
    margin-bottom: 30px;
}

.dhr-hotel-description h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 20px 0;
}

.dhr-description-content {
    color: #444;
    line-height: 1.8;
    font-size: 16px;
}

.dhr-description-content p {
    margin-bottom: 15px;
}

.dhr-description-content p:last-child {
    margin-bottom: 0;
}

/* 8. Booking Button */
.dhr-hotel-booking {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.dhr-book-now-btn {
    display: inline-block;
    padding: 18px 60px;
    background: linear-gradient(135deg, #2c5282 0%, #1a365d 100%);
    color: #fff;
    font-size: 1.2rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(44, 82, 130, 0.3);
}

.dhr-book-now-btn:hover {
    background: linear-gradient(135deg, #1a365d 0%, #0f2440 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(44, 82, 130, 0.4);
    color: #fff;
}

/* Responsive Design */
@media (max-width: 768px) {
    .dhr-hotel-single {
        padding: 20px 15px;
    }
    
    .dhr-hotel-container {
        padding: 25px;
    }
    
    .dhr-hotel-title {
        font-size: 1.8rem;
    }
    
    .dhr-gallery-slide img {
        height: 300px;
    }
    
    .dhr-price-regular,
    .dhr-price-discounted {
        font-size: 1.6rem;
    }
    
    .dhr-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .dhr-book-now-btn {
        padding: 15px 40px;
        font-size: 1.1rem;
        width: 100%;
    }
}

@media (max-width: 480px) {
    .dhr-features-grid {
        grid-template-columns: 1fr;
    }
    
    .dhr-gallery-slide img {
        height: 250px;
    }
}

//Room CSS

.hotel-rooms-section {
    margin-top: 80px;
}

.rooms-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.room-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: 0.3s ease;
   
}

.room-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

/* Image Slider */
.room-slider {
    position: relative;
}

.room-slider img {
    width: 100%;
    height: 305px;
    object-fit: cover;
    border-top-left-radius: 25px;
    border-top-right-radius: 25px;
}

/* Content */
.room-content {
    padding: 40px;
    text-align: center;
}

.room-name {
    font-size: 18px;
    letter-spacing: 2px;
    font-weight: 600;
    color: #666;
    margin-bottom: 20px;
        text-transform: uppercase;
}

.room-price {
    font-size: 42px;
    font-weight: 800;
    color: #222;
    margin-bottom: 30px;
}

.room-price .tax {
    font-size: 22px;
    font-weight: 600;
}

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

/* Button */
.room-book-btn {
    display: inline-block;
    background: #ff2d2d;
    color: #fff;
    padding: 16px 45px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s ease;
}

.room-book-btn:hover {
    background: #e60000;
}

/* Responsive */
@media (max-width: 768px) {
    .rooms-grid {
        grid-template-columns: 1fr;
    }

    .room-slider img {
        height: 300px;
    }
}
