
/* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f0f0f0;
    display: flex;
    flex-direction: column;
    min-height: 100vh; /* Ensure body takes up at least full height */
}

header {
    background-color: #333;
    padding: 15px 0;
}

header nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
}

header nav ul li {
    margin: 0 15px;
}

header nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 18px;
}

h1, h2 {
    color: #333;
    text-align: center;
}

h1 {
    font-size: 48px;
}

h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

p {
    font-size: 18px;
    color: #555;
    text-align: center;
}

a {
    color: #333;
    text-decoration: none;
}

/* Hero Section */
.hero {
    background-image: img('bbq-001.jpg');  
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 50px 0;
}

.hero h1 {
    font-size: 48px;
}

.hero p {
    font-size: 20px;
}

/* Features (Homepage Service Section) */
.features {
    display: flex;
    justify-content: center;
    text-align: center;
    padding: 40px 0;
}

.features h2 {
    margin-bottom: 40px;
}

.feature {
    width: 30%;
    margin: 0 15px;
}

.feature img {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 8px;
    margin-bottom: 10px;
}

.feature p {
    font-size: 20px;
}

/* Rooms Page */
.room-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 20px;
    text-align: center;
}

.room-type {
    width: 30%;
    margin: 15px;
    box-sizing: border-box;
    text-align: center;
}

.room-type img {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 8px;
    margin-bottom: 1px;
}

.room-type p {
    font-size: 20px;
    font-weight: bold;
    margin-top: 10px;
}

/* Room Detail Page */
.room-detail, .service-detail {
    text-align: center;
    padding: 20px;
    flex-grow: 1; /* Ensures room for content */
    margin-bottom: 40px; /* Ensures margin before footer */
}

.room-images, .service-images {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.room-images img, .service-images img {
    width: 100%;
    max-width: 400px; /* Resizing images to match rooms.html */
    height: auto;
    border-radius: 8px;
    margin: 10px;
}

/* Footer */
footer {
    text-align: center;
    background-color: #333;
    color: white;
    padding: 15px;
    margin-top: auto; /* Ensure footer stays at the bottom of the page */
    clear: both; /* Ensure footer is below the content */
}

/* Form Styles (For future use) */
form {
    max-width: 500px;
    margin: 0 auto;
    background-color: white;
    padding: 20px;
    border-radius: 8px;
}

form input, form textarea {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border-radius: 5px;
    border: 1px solid #ddd;
}

form button {
    width: 100%;
    padding: 10px;
    background-color: #333;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

form button:hover {
    background-color: #555;
}

/* Responsive Design */
@media (max-width: 768px) {
    .features {
        flex-direction: column;
        align-items: center;
    }

    .feature {
        width: 80%;
        margin-bottom: 20px;
    }

    .room-type {
        width: 80%;
        margin: 10px 0;
    }

    .room-list {
        flex-direction: column;
        align-items: center;
    }
}
