/* Base Styles and Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
}

.clearfix:after {
    content: "";
    display: table;
    clear: both;
}

a {
    text-decoration: none;
    color: #025e73;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

.btn {
    display: inline-block;
    background: #025e73;
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: bold;
    text-transform: uppercase;
    margin: 10px 0;
}

.btn:hover {
    background: #0388a6;
}

.section-title {
    text-align: center;
    margin-bottom: 30px;
    color: #025e73;
}

/* Header Styles */
header {
    background-color: #fff;
    border-bottom: 1px solid #ddd;
    padding: 15px 20px;
    overflow: hidden;
}

.logo-container {
    float: left;
    width: 30%;
}

.logo {
    height: 60px;
}

nav {
    float: right;
    width: 70%;
    text-align: right;
}

.nav-links li {
    display: inline-block;
    margin-left: 20px;
}

.nav-links a {
    color: #333;
    font-weight: bold;
}

.nav-links a:hover, 
.nav-links a.active {
    color: #025e73;
    border-bottom: 2px solid #025e73;
}

/* Hero Section (Home Page) */
.hero {
    height: 500px;
    background: url('../images/hero-hotel.jpg') no-repeat center center;
    background-size: cover;
    text-align: center;
    position: relative;
}

.hero:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
}

.hero-content {
    position: relative;
    padding-top: 150px;
    color: white;
    text-align: center;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7); /* Add text shadow for better readability */
    background: rgba(0, 0, 0, 0.4); /* Optional: slight background overlay if needed */
}

.hero-content h1 {
    font-size: 42px; /* Make heading larger for better accessibility */
    margin-bottom: 20px;
    font-weight: bold;
}

.hero-content p {
    font-size: 20px; /* Slightly bigger for readability */
    margin-bottom: 30px;
    line-height: 1.6; /* Better line spacing for easier reading */
}

/* Features Section (Home Page) */
.features {
    padding: 60px 20px;
    background: #f9f9f9;
    text-align: center;
}


/* Features Section (Home Page) */
.features {
    padding: 60px 20px;
    background: #f9f9f9;
    text-align: center;
}

.feature {
    float: left;
    width: 33.33%;
    padding: 20px;
    text-align: center;
    box-sizing: border-box;
}

.feature img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 5px;
    margin-bottom: 15px;
}

.feature h2 {
    font-size: 24px;
    margin-bottom: 10px;
    color: #025e73;
}

/* About Section (Home Page) */
.about {
    padding: 60px 20px;
    background: white;
}

.about-text {
    float: left;
    width: 60%;
    padding-right: 20px;
}

.about-image {
    float: right;
    width: 40%;
}

.about p {
    margin-bottom: 15px;
}

/* Testimonials Section (Home Page) */
.testimonials {
    padding: 60px 20px;
    background: #e8f5f7;
    text-align: center;
}

.testimonial {
    float: left;
    width: 33.33%;
    padding: 20px;
}

.testimonial p {
    font-style: italic;
    margin-bottom: 10px;
}

.guest-name {
    font-weight: bold;
    color: #025e73;
}

/* Page Banner (All inner pages) */
.page-banner {
    background: #025e73 url('../images/banner-background.jpg') no-repeat center center;
    background-size: cover;
    height: 200px;
    display: block;
    position: relative;
    text-align: center;
}

.page-banner h1 {
    color: white;
    padding-top: 80px;
    position: relative;
    z-index: 2;
    font-size: 36px;
}

.page-banner:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

/* Rooms Page Styles */
.rooms-container {
    padding: 60px 20px;
    background: #fff;
}

.room-type {
    margin-bottom: 50px;
    padding-bottom: 30px;
    border-bottom: 1px solid #ddd;
}

.room-image {
    float: left;
    width: 40%;
    padding-right: 20px;
}

.room-details {
    float: right;
    width: 60%;
}

.room-details h3 {
    color: #025e73;
    font-size: 24px;
    margin-bottom: 10px;
}

.room-price {
    font-weight: bold;
    color: #333;
    margin-bottom: 15px;
}

.room-features {
    margin: 20px 0;
    padding-left: 20px;
}

.room-features li {
    margin-bottom: 5px;
    list-style-type: disc;
}

.room-amenities {
    background: #f9f9f9;
    padding: 60px 20px;
    text-align: center;
}

.amenity {
    display: inline-block;
    width: 22%;
    margin: 0 1%;
    padding: 20px;
    text-align: center;
    vertical-align: top;
}

.amenity h3 {
    color: #025e73;
    margin-bottom: 10px;
}

/* Facilities Page Styles */
.facilities-container {
    padding: 60px 20px;
    background: #fff;
}

.facility {
    margin-bottom: 50px;
    padding-bottom: 30px;
    border-bottom: 1px solid #ddd;
}

.facility-image {
    float: left;
    width: 40%;
    padding-right: 20px;
}

.facility-details {
    float: right;
    width: 60%;
}

.facility-details h3 {
    color: #025e73;
    font-size: 24px;
    margin-bottom: 15px;
}

.additional-services {
    background: #f9f9f9;
    padding: 60px 20px;
    text-align: center;
}

.service {
    display: inline-block;
    width: 30%;
    margin: 0 1.5%;
    padding: 20px;
    vertical-align: top;
}

.service h3 {
    color: #025e73;
    margin-bottom: 10px;
}

/* Location Page Styles */
.location-container {
    padding: 60px 20px;
    background: #fff;
}

.location-info {
    margin-bottom: 40px;
}

.location-text {
    float: left;
    width: 60%;
    padding-right: 20px;
}

.location-map {
    float: right;
    width: 40%;
    text-align: center;
}

.map-caption {
    font-style: italic;
    margin-top: 10px;
    color: #666;
}

.distance-info {
    clear: both;
    padding: 30px 0;
    margin-bottom: 30px;
}

.distance-info ul {
    padding-left: 20px;
}

.distance-info li {
    margin-bottom: 10px;
    list-style-type: disc;
}

.attraction {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid #ddd;
}

.attraction:last-child {
    border-bottom: none;
}

.attraction-image {
    float: left;
    width: 40%;
    padding-right: 20px;
}

.attraction-details {
    float: right;
    width: 60%;
}

.attraction-details h3 {
    color: #025e73;
    font-size: 24px;
    margin-bottom: 15px;
}

.transportation {
    background: #f9f9f9;
    padding: 60px 20px;
}

.transport-option {
    margin-bottom: 20px;
}

.transport-option h3 {
    color: #025e73;
    margin-bottom: 5px;
}

/* Contact & Booking Page Styles */
.contact-container {
    padding: 40px 20px;
    background: #fff;
}

.contact-info-box {
    float: left;
    width: 50%;
    padding: 20px;
    background: #f9f9f9;
    border-radius: 5px;
}

.contact-info-box h3 {
    color: #025e73;
    margin-bottom: 15px;
}

.contact-info-box p {
    margin-bottom: 10px;
}

.map-image {
    float: right;
    width: 50%;
    padding: 20px;
    text-align: center;
}

.map-image img {
    max-width: 100%;
    border: 1px solid #ddd;
}

.map-image p {
    margin-top: 10px;
    font-style: italic;
    color: #666;
}

.booking-container {
    padding: 40px 20px;
    background: #f9f9f9;
}

.form-intro {
    text-align: center;
    margin-bottom: 30px;
}

.booking-form {
    width: 80%;
    margin: 0 auto;
    background: white;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.form-row {
    margin-bottom: 15px;
}

.form-row label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

.form-row input,
.form-row select,
.form-row textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.form-row textarea {
    resize: vertical;
}

.form-row button {
    cursor: pointer;
    border: none;
    display: block;
    margin: 20px auto 0;
}

.faq-container {
    padding: 40px 20px;
    background: #fff;
}

.faq {
    margin-bottom: 20px;
    padding: 15px;
    background: #f9f9f9;
    border-radius: 5px;
}

.faq h3 {
    color: #025e73;
    margin-bottom: 10px;
}

/* Footer */
footer {
    background: #333;
    color: white;
    padding: 40px 20px 20px;
}

.footer-section {
    float: left;
    width: 33.33%;
    padding: 0 15px;
}

.footer-section h3 {
    margin-bottom: 20px;
    font-size: 18px;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section a {
    color: #ccc;
}

.footer-section a:hover {
    color: white;
}

.copyright {
    text-align: center;
    padding-top: 20px;
    margin-top: 20px;
    border-top: 1px solid #555;
    clear: both;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .logo-container, nav {
        float: none;
        width: 100%;
        text-align: center;
    }
    
    .nav-links li {
        display: block;
        margin: 10px 0;
    }
    
    .feature, .testimonial {
        width: 50%;
    }
    
    .about-text, .about-image,
    .room-image, .room-details,
    .facility-image, .facility-details,
    .attraction-image, .attraction-details,
    .location-text, .location-map,
    .contact-info-box, .map-image {
        float: none;
        width: 100%;
    }
    
    .about-text, .room-image, .facility-image, 
    .attraction-image, .location-text, .contact-info-box {
        margin-bottom: 20px;
    }
    
    .amenity, .service {
        width: 45%;
        margin: 10px 2%;
    }
    
    .footer-section {
        width: 100%;
        margin-bottom: 30px;
    }
    
    .booking-form {
        width: 100%;
    }
}

@media screen and (max-width: 480px) {
    .feature, .testimonial, .amenity, .service {
        float: none;
        width: 100%;
    }
    
    .hero h1, .page-banner h1 {
        font-size: 28px;
    }
    
    .hero p {
        font-size: 16px;
    }
    
    .page-banner {
        height: 160px;
    }
    
    .page-banner h1 {
        padding-top: 60px;
    }
}