/* Base styles */
html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    overflow-x: hidden;
    font-family: Arial, sans-serif;
    background-color: #1999A3;
    color: #333;
    text-align: center;
    font-size: 16px;
}

/* Divider line */
.divider {
    border: none;
    height: 2px;
    background-color: #ccc;
    margin: 30px auto;
    width: 80%;
}

/* Main content wrapper */
.content-wrapper {
    max-width: 800px;
    margin: 0 auto;
    padding-top: 20px;
}

.banner img {
    width: 100%;
    height: auto;
    object-fit: cover;
    object-position: center top;
    display: block;
}

/* Text box */
.description-box {
    width: 100%;
    box-sizing: border-box;
    padding: 20px;
    background-color: #ffffffcc;
    border-radius: 0;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    font-size: 1em;
    line-height: 1.6;
    margin: 0 auto;
}

/* Contact section */
.contact-info {
    text-align: center;
}

.contact-info h3 {
    margin-bottom: 10px;
    font-size: 1.1em;
    color: #222;
}

.contact-info p {
    font-size: 0.95em;
    line-height: 1.6;
}

/* Social media icons */
.social-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 30px 0;
    flex-wrap: wrap; /* allows wrapping only if needed */
}

.social-links a {
    text-decoration: none;
    display: inline-block;
}

.social-icon {
    width: 48px;
    height: 48px;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.social-icon:hover {
    transform: scale(1.1);
    opacity: 0.85;
}

/* Footer */
.site-footer {
    text-align: center;
    padding: 10px 0;
    font-size: 0.9em;
    color: #fff;
    background-color: #1999A3;
    position: relative;
    bottom: 0;
    width: 100%;
}

/* Responsive styles for mobile */
@media (max-width: 600px) {
    html, body {
        padding: 0;
        margin: 0;
        width: 100%;
    }

    .content-wrapper {
        padding: 0;
        margin: 0;
        width: 100%;
        max-width: 100%;
    }

    .description-box,
    .banner,
    .site-footer {
        width: 100%;
        margin: 0;
        padding: 0;
    }

    .description-box {
        font-size: 1em;
        padding: 15px;
    }

    .contact-info h3 {
        font-size: 1.1em;
    }

    .contact-info p {
        font-size: 0.95em;
    }

    .social-links {
        flex-wrap: nowrap; /* prevent stacking if there's room */
        justify-content: center;
        gap: 20px;
    }

    .social-icon {
        width: 40px;
        height: 40px;
    }

    .site-footer {
        font-size: 0.9em;
        padding: 15px 0;
    }

    .divider {
        width: 90%;
        margin: 20px auto;
    }
}
