/* css/hotel_style.css - Custom Styles for the Hotel Page */

main{
    width:80vw; 
    margin:0 auto; 
    background-color: #eeedf2;
}

.green-tick {
            color: #28a745; /* A common, pleasing green color */
            margin-right: 8px; /* Space between icon and text */
        }

.red-cross {
            color: #dc3545; /* A common, standard red color for errors/warnings */
            margin-right: 8px; /* Space between icon and text */
        }

/* Hero Section specific to Hotel Page */
.hotel-hero-section {
    position: relative;
    width: 100%;
    height: 225px;
    background-image: url('../images/with text 2.png');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    overflow: hidden;
    margin: -31px 0 0 0 !important;
    padding: 0;
}

/* Hotel Overview Section */
.hotel-overview-section {
    background-color: #eeedf2; /* Light grey background */
    padding-top: 40px;
    padding-bottom: 40px;
}

.hotel-overview-section img {
    width: 100%;
    height: 30vh;
    display: block;
    object-fit: cover; /* Ensures images cover their area without distortion */
    margin-bottom: 15px; /* Spacing below images on smaller screens */
    /* No border-radius as requested */
}

.hotel-welcome-text {
    font-size: 1.5rem;
    font-weight: 500;
    color: #333;
    margin-top: 20px;
    margin-bottom: 20px;
}

.hotel-description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 10px;
}

.hotel-link {
    color: #007bff; /* Bootstrap primary blue for links */
    text-decoration: underline;
}

.hotel-link:hover {
    color: #0056b3;
}

.hotel-disclaimer {
    font-size: 0.95rem;
    color: #888;
    font-style: italic;
    margin-top: 15px;
}

.hotel-disclaimer .fw-bold {
    color: #f51128; /* Red for disclaimer asterisk */
}

.social-icon-link {
    color: #6c757d; /* Muted social icons */
    transition: color 0.3s ease;
}

.social-icon-link:hover {
    color: #ffcc00; /* Yellow on hover */
}

/* Common Section Title for Hotel Page */
.section-title-hotel {
    font-size: 1.8rem;
    font-weight: 500;
    color: #333;
    margin-bottom: 20px;
    margin-top: 30px; /* Add some top margin for separation */
}

/* Section Divider (Red line) */
.section-divider {
    border-top: 4px solid #f51128; /* Red line */
    margin: 40px 0; /* Spacing above and below the line */
}

/* Room Inclusions List */
.inclusions-list {

    padding-left: 0;
    margin-bottom: 20px;
}

.inclusions-list li {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 8px;
    margin-left:10px;
    list-style-type: none;
}

.inclusions-list li .fas,
.inclusions-list li .far {
    color: #333; /* Yellow icons for inclusions */
    margin-right: 8px;
}

/* Facilities Section */
.facility-description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 10px;
}

/* Address Section */
.address-text {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.6;
    padding-bottom:20px;
}

.address-section {
    margin-bottom: 0px !important;
}

@media (max-width: 1287px){
    .hotel-hero-section {
        height: 190px;
    }
}

/* Responsive Adjustments */
@media (max-width: 767.98px) { /* Small devices (phones) */
main{
    width:100vw; 
    margin:0 auto; 
    background-color: #eeedf2;
}
    .hotel-hero-section {
        background-image: url('../images/shell-product-2.png');
        /* height: 150px; */
        margin: 0px !important;

    }
    .hotel-overview-section img {
        height: 15vh;
    }

    .hotel-overview-section,
    .room-inclusions-section,
    .room-exclusion-section,
    .breakfast-details-section,
    .facilities-section,
    .address-section {
        padding-left: 15px;
        padding-right: 15px;
    }

    .hotel-welcome-text {
        font-size: 1.3rem;
        text-align: center;
    }

    .hotel-description,
    .facility-description,
    .address-text,
    .inclusions-list li {
        font-size: 0.95rem;
    }

    .section-title-hotel {
        font-size: 1.5rem;
        text-align: center;
    }

    .section-divider {
        margin: 20px 0;
    }

    .social-icon-link {
        font-size: 1.5rem; /* Larger icons for touch targets */
    }

    .d-flex.justify-content-end.align-items-center {
        flex-direction: column; /* Stack social icons vertically */
        align-items: center !important;
        text-align: center;
    }

    .d-flex.justify-content-end.align-items-center span {
        margin-bottom: 10px; /* Space between text and icons */
    }
    .address-section {
    margin-bottom: 200px;
}
}
