/* style.css */
body {
    font-family: sans-serif;
    margin: 0;
    line-height: 1.6;
    color: #333;
    background-color: #f4f4f4;
}

header {
    background-color: #fff;
    color: #fff;
    text-align: center;
    position: relative;
}

.header-image {
    position: relative;
    overflow: hidden;
}

.header-image img {
    width: 100%;
    display: block;
    object-fit: cover;
    max-height: 600px; /* Adjust as needed */
}

.header-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(0, 0, 0, 0.6);
    color: #fff;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    width: 80%;
    max-width: 600px;
}

.header-overlay h1 {
    margin-bottom: 10px;
}

.subheading {
    font-size: 1.2em;
    margin-bottom: 20px;
}

.button {
    display: inline-block;
    background-color: #5cb85c;
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.button:hover {
    background-color: #4cae4c;
}

.button.small {
    padding: 8px 15px;
    font-size: 0.9em;
}

.button.large {
    font-size: 1.2em;
    padding: 15px 30px;
}

main {
    padding: 20px;
}

.section {
    margin-bottom: 40px;
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.section h2 {
    color: #333;
    border-bottom: 2px solid #eee;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

.room-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.room-card {
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
}

.room-card img {
    width: 100%;
    display: block;
    height: auto;
    max-height: 200px;
    object-fit: cover;
}

.room-card h3 {
    padding: 10px;
    margin-bottom: 0;
    font-size: 1.1em;
}

.room-card p {
    padding: 0 10px 10px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 10px;
}

.gallery-grid img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    display: block;
}

#location a {
    color: #007bff;
    text-decoration: none;
}

#location a:hover {
    text-decoration: underline;
}

.booking-section {
    text-align: center;
    background-color: #f9f9f9;
    padding: 30px;
}

footer {
    text-align: center;
    padding: 20px;
    background-color: #333;
    color: #fff;
}

/* Responsive Design (Basic) */
@media (max-width: 768px) {
    .header-overlay {
        width: 95%;
    }
    .room-grid, .gallery-grid {
        grid-template-columns: 1fr;
    }
}