/* General Styling */
body {
    font-family: sans-serif;
    margin: 0;
    padding: 0;
    color: #333;
    font-weight: bold;
    background-color: #f8f8f8;
}

/* Background Image */
figure.background-figure {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    margin: 0;
    overflow: hidden;
}

figure.background-figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.6);
}

/* Container */
.container {
    max-width: 1200px;
    width: 90%;
    margin: 0 auto;
    padding: 20px;
}

/* Header */
header h1 {
    color: #fff;
    text-align: center;
    margin: 20px 0;
    padding: 15px 20px;
    background-color: rgba(61, 176, 237, 0.9);
    border-radius: 15px;
    font-size: 2.5rem;
    font-weight: bold;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Section Styling */
section {
    margin-top: 30px;
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 15px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

section h2, section h3 {
    color: #fff;
    text-align: center;
    margin: 20px 0;
    padding: 10px 20px;
    background-color: rgba(61, 176, 237, 0.9);
    border-radius: 15px;
    font-size: 1.8rem;
    font-weight: bold;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

section p {
    color: #333;
    font-size: 1rem;
    line-height: 1.6;
    margin: 10px 0;
    text-align: justify;
}

/* Links */
a {
    color: #007bff;
    text-decoration: none;
    font-weight: bold;
}

a:hover {
    text-decoration: underline;
}

/* Navigation Menu */
nav {
    margin-top: 20px;
    background-color: rgba(61, 176, 237, 0.9);
    border-radius: 15px;
    padding: 10px 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 20px;
}

nav li {
    margin: 0;
}

nav a {
    color: white;
    padding: 10px 15px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

nav a:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

/* Hamburger Menu */
.hamburger-menu {
    display: none;
    cursor: pointer;
    padding: 10px;
    position: fixed;
    top: 15px;
    left: 15px;
    background-color: rgba(30, 76, 145, 0.8);
    border-radius: 5px;
    z-index: 1000;
}

.hamburger-menu span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: #fff;
    margin: 5px 0;
}

/* Footer */
#footer {
    text-align: center;
    background-color: rgba(61, 176, 237, 0.9);
    color: white;
    padding: 15px;
    border-radius: 15px;
    margin-top: 40px;
    font-size: 1.2rem;
    box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.2);
}

#footer p a {
    color: #FBFE43;
    font-weight: bold;
    text-decoration: none;
}

#footer p a:hover {
    color: #C4FDEA;
}

/* Responsive Styles for Mobile */
@media (max-width: 768px) {
    nav ul {
        display: none;
        position: absolute;
        top: 50px;
        left: 15px;
        background-color: rgba(0, 0, 0, 0.9);
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
        padding: 10px;
        margin: 0;
        border-radius: 8px;
        z-index: 999;
        flex-direction: column;
        gap: 10px;
    }

    nav ul.show {
        display: flex;
    }

    nav ul li {
        text-align: left;
    }

    nav a {
        font-size: 1rem;
        color: white;
        padding: 10px;
    }

    .hamburger-menu {
        display: block;
        position: fixed;
        top: 15px;
        left: 15px;
        background-color: rgba(148, 158, 173, 0.8);
        padding: 10px;
        cursor: pointer;
        border-radius: 5px;
        z-index: 1000;
    }

    .hamburger-menu span {
        display: block;
        width: 25px;
        height: 3px;
        background-color: #fff;
        margin: 5px 0;
    }
}
