body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
}

header {
    background: url('images/image01.jpg') no-repeat center center;
    background-size: cover;
    color: white;
    text-align: center;
    padding: 2em 0;
    position: relative;
}

.header-content {
    background-color: rgba(0, 0, 0, 0.5);
    display: inline-block;
    padding: 1em 2em;
    border-radius: 10px;
}

.logo {
    width: 50px;
    height: 50px;
    vertical-align: middle;
    margin-right: 1em;
}

header h1 {
    display: inline;
    font-size: 2.5em;
}

main {
    padding: 2em;
}

h2 {
    color: #333;
}

#gallery {
    margin-bottom: 2em;
}

.image-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 10px;
}

.image-container img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    object-fit: cover;
}

#rates table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 2em;
}

#rates th, #rates td {
    border: 1px solid #ddd;
    padding: 8px;
    text-align: center;
}

#rates th {
    background-color: #333;
    color: white;
}

#facilities-contact {
    display: flex;
    justify-content: space-between;
    gap: 20px; /* Add some space between the sections */
    margin-bottom: 2em;
    flex-wrap: wrap; /* Allow the sections to wrap on smaller screens */
}

#facilities, #contact {
    flex: 1; /* Allow sections to take equal space */
    min-width: 300px; /* Ensure sections don't get too narrow */
}

#facilities ul, #contact ul {
    /* list-style-type: none; */
    padding: 0;
}

#facilities li, #contact li {
    margin: 0.5em 0;
    font-size: 1em;
}

#contact {
    margin-top: 2em;
}

#contact p {
    font-weight: bold;
}

#contact a {
    display: inline-block;
    margin-top: 1em;
    font-size: 0.9em; /* Smaller font size */
    color: #3b5998; /* Facebook's blue color for the Facebook link */
    text-decoration: none;
}

#contact a:hover {
    text-decoration: underline;
}

#contact a:link, 
#contact a:visited {
    color: inherit; /* Inherit color from parent for phone links */
}

#contact a:hover,
#contact a:active {
    color: #333; /* Darken color on hover for phone links */
}

footer {
    text-align: center;
    padding: 1em 0;
    background-color: #333;
    color: white;
}

/* Media Queries for Responsive Design */
@media (max-width: 768px) {
    #facilities-contact {
        flex-direction: column;
    }

    #facilities, #contact {
        min-width: 100%; /* Make sections full-width on small screens */
    }
}
