/* General Reset and Base Styles */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}

body {
font-family: 'Roboto', Arial, sans-serif;
line-height: 1.6;
color: #333;
background-color: #f9f9f9;
}

/* Page Cover Section */
.page-cover {
position: relative;
height: 60vh;
display: flex;
align-items: center;
justify-content: center;
text-align: center;
background-size: cover;
background-position: center;
background-attachment: fixed;
color: #fff;
overflow: hidden;
}

.page-cover::before {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: linear-gradient(0deg, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6));
z-index: 1;
}

.page-cover .container {
position: relative;
z-index: 2;
}

.page-title {
font-size: 3rem;
font-weight: 700;
margin-bottom: 1rem;
text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.breadcrumb {
background: transparent;
padding: 0;
margin: 0;
display: flex;
justify-content: center;
font-size: 1.1rem;
}

.breadcrumb-item a {
color: #fff;
text-decoration: none;
transition: color 0.3s ease;
}

.breadcrumb-item a:hover {
color: #f1c40f;
}

.breadcrumb-item.active {
color: #f1c40f;
}

/* Innerpage Wrapper */
.innerpage-wrapper {
padding: 4rem 0;
background-color: #fff;
}

.search-bar {
padding: 2rem 0;
}

.side-bar.left-side-bar {
flex: 1;
min-width: 0;
}

.selected-room-block {
background: #f9f9f9;
padding: 2rem;
border-radius: 10px;
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.selected-room-img img {
width: 100%;
max-height: 400px;
object-fit: cover;
border-radius: 10px;
margin-bottom: 1.5rem;
transition: transform 0.3s ease;
}

.selected-room-img img:hover {
transform: scale(1.05);
}

.selected-room-detail {
width: 100%;
}

.rating {
margin-bottom: 1rem;
}

.rating .fa-star {
color: #f1c40f;
font-size: 1.2rem;
}

.selected-room-detail h2 {
font-size: 2rem;
color: #2c3e50;
margin-top: 1.5rem;
margin-bottom: 1rem;
}

.selected-room-detail p {
font-size: 1.1rem;
color: #555;
margin-bottom: 1.5rem;
}

.selected-room-features {
list-style: none;
padding: 0;
}

.selected-room-features li {
font-size: 1rem;
margin-bottom: 0.5rem;
color: #333;
}

.selected-room-features .fa-check {
color: #27ae60;
margin-right: 0.5rem;
}

.selected-room-features .fa-times {
color: #e74c3c;
margin-right: 0.5rem;
}

/* Booking Form Container */
.space-left {
flex: 0 0 400px;
background: linear-gradient(135deg, #2c3e50, #34495e);
color: #fff;
padding: 2rem;
border-radius: 10px;
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
position: sticky;
top: 20px;
}

/* Hide the entire form */
.space-left form {
display: none;
}

/* Hide all buttons */
.btn-yellow {
display: none;
}

.space-left::before,
.space-left::after {
display: none;
}

.innerpage-heading h2 {
font-size: 2rem;
color: #f1c40f;
margin-bottom: 1.5rem;
text-align: center;
font-weight: 700;
}

/* Related Tours */
#menu {
padding: 4rem 0;
background-color: #f9f9f9;
}

.dish-category h3 {
font-size: 2rem;
color: #2c3e50;
margin-bottom: 2rem;
text-align: center;
}

.dish-category {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 1.5rem;
max-width: 1200px;
margin: 0 auto;
}

.dish-type {
text-align: center;
margin-bottom: 1.5rem;
padding: 1rem;
background: #fff;
border-radius: 8px;
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.dish-name {
font-size: 1.2rem;
color: #2c3e50;
text-decoration: none;
font-weight: 600;
transition: color 0.3s ease;
}

.dish-name:hover {
color: #f1c40f;
}

.dish-type a:not(.dish-name) {
color: #f1c40f;
text-decoration: none;
font-size: 0.9rem;
transition: color 0.3s ease;
}

.dish-type a:not(.dish-name):hover {
color: #d4ac0d;
}

/* Responsive Design */
@media (max-width: 991px) {
.page-title {
font-size: 2.5rem;
}

.row {
flex-direction: column;
}

.side-bar.left-side-bar {
width: 100%;
}

.space-left {
flex: 1;
position: static;
margin-top: 2rem;
}

.selected-room-img img {
max-height: 300px;
}

.dish-category {
grid-template-columns: repeat(2, 1fr);
}
}

@media (max-width: 767px) {
.page-cover {
height: 50vh;
}

.page-title {
font-size: 2rem;
}

.breadcrumb {
font-size: 1rem;
}

.selected-room-detail h2 {
font-size: 1.8rem;
}

.innerpage-heading h2 {
font-size: 1.8rem;
}

.dish-category h3 {
font-size: 1.8rem;
}

.space-left {
padding: 1.5rem;
}

.dish-category {
grid-template-columns: 1fr;
}
}

@media (max-width: 575px) {
.page-title {
font-size: 1.8rem;
}

.selected-room-detail h2 {
font-size: 1.5rem;
}

.selected-room-detail p {
font-size: 1rem;
}

.space-left {
padding: 1rem;
}

.dish-category {
grid-template-columns: 1fr;
}
}


.side-bar-block.special-offer {
    background: linear-gradient(135deg, #1a3a6e 0%, #0f274e 100%);
    border-radius: 10px;
    padding: 2rem;
    margin: 1.5rem 0;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    border-left: 5px solid #e67e22;
    position: relative;
    overflow: hidden;
}

.side-bar-block.special-offer::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 70%);
    border-radius: 50%;
}

.side-bar-block.special-offer p#offer-text {
    color: #ffffff;
    margin: 0 0 1.5rem 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
}

.side-bar-block.special-offer p#offer-text strong {
    color: #f39c12;
    font-weight: 700;
}

.side-bar-block.special-offer .btn {
    display: block;
    width: 100%;
    background-color: #27ae60;
    color: white;
    text-align: center;
    padding: 12px 15px;
    margin-bottom: 10px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.25s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.side-bar-block.special-offer .btn:hover {
    background-color: #219653;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(39, 174, 96, 0.3);
    border-color: #2ecc71;
}

.side-bar-block.special-offer .btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.side-bar-block.special-offer .btn:hover::after {
    left: 100%;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .side-bar-block.special-offer {
        padding: 1.5rem;
        margin: 1rem 0;
    }
    
    .side-bar-block.special-offer p#offer-text span {
        font-size: 22px;
    }
    
    .side-bar-block.special-offer .btn {
        font-size: 14px;
        padding: 10px 12px;
    }
}

@media (max-width: 480px) {
    .side-bar-block.special-offer {
        padding: 1.2rem;
    }
    
    .side-bar-block.special-offer p#offer-text span {
        font-size: 20px;
    }
}