/* General Styles */
body {
    background-image: url("background.png");
    margin: 0;
    font-family: 'Roboto', sans-serif;
}

/* Header Styles */
header {
    height: 86px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #fff;
    padding: 0 8px;
    border-bottom: 4px solid #754f3d;
}

header .logo img {
    max-width: 100%;
    height: auto;
}

header .links {
    display: flex;
    gap: 8px;
}

header .links a {
    display: block;
    width: 100px;
    height: 70px;
    text-align: center;
    line-height: 70px;
    color: #333;
    font-size: 16px;
    text-decoration: none;
    border-radius: 4px;
}

header .links a.current,
header .links a:hover {
    background-color: #754f3d;
    color: #fff;
}

/* Sublinks Styles */
.sublinks {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin: 16px 0;
}

.sublinks a {
    display: block;
    padding: 10px 16px;
    text-align: center;
    color: #333;
    font-size: 14px;
    text-decoration: none;
    border-radius: 4px;
    background-color: #f9f9f9;
    border: 1px solid #ded8c8;
}

.sublinks a:hover {
    background-color: #754f3d;
    color: #fff;
    border-color: #754f3d;
}

/* Container */
#container {
    margin: 16px auto;
    background-color: #fff;
    border-bottom: 4px solid #754f3d;
    width: 90%;
    max-width: 900px;
    overflow: auto;
    padding: 16px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 4px;
}

/* Splash Section */
#splash img {
    width: 100%;
    height: auto;
    border-radius: 4px;
}

/* Content Section */
#content {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

#content .info {
    flex: 1 1 60%;
    text-align: justify;
}

#content .info p {
    margin: 0 0 12px;
    padding: 12px;
    font-size: 14px;
    line-height: 1.6;
}

#content .contact-location {
    flex: 1 1 40%;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-location .contact {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.contact-location .contact h1,
.contact-location .location h1 {
    font-size: 18px;
    color: #754f3d;
    margin-bottom: 8px;
}

.contact-location .contact p,
.contact-location .location p {
    margin: 0;
    font-size: 14px;
}

.contact-location iframe {
    width: 100%;
    height: 200px;
    border: 0;
    border-radius: 4px;
}

.no-link {
    color: inherit;
    text-decoration: none;
}

/* Footer Styles */
footer {
    background-color: #fff;
    padding: 16px;
    text-align: center;
    border-top: 4px solid #754f3d;
}

.footer-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.footer-info {
    display: flex;
    gap: 16px;
    align-items: center;
}

.footer-info p {
    margin: 0;
    font-size: 14px;
    color: #333;
}

.footer-info img {
    max-width: 120px;
    height: auto;
}

/* Responsive Design */
@media (max-width: 768px) {
    header {
        flex-direction: column;
        height: auto;
        padding: 16px 8px;
    }

    header .logo,
    header .links {
        width: 100%;
        text-align: center;
    }

    header .links {
        gap: 4px;
    }

    .sublinks {
        flex-wrap: wrap;
    }

    #content {
        flex-direction: column;
    }

    #content .info,
    .contact-location {
        flex: 1 1 100%;
    }

    .footer-content {
        flex-direction: column;
        gap: 16px;
    }

    .footer-info {
        flex-direction: column;
        gap: 8px;
    }
}

@media (max-width: 480px) {
    .sublinks a {
        flex: 1 1 100%;
    }

    #content .info,
    .contact-location {
        flex: 1 1 100%;
    }

    header .main-links {
        flex-direction: column;
    }
}
