/* Body setup */
body {
    background-color: rgba(40,3,57,255); /* Set the entire page background to yellow */
    margin: 0;
    font-family: Arial, sans-serif;
    min-height: 100vh;
}
body p {
    font-size: 20px;
    color: white;
    margin: 50px;
    text-align: center;
    padding-top: none;
    font-family: courier,monospace;
}

body h1 {
    font-size: 20px;
    color: Red;
    margin: 50px;
    text-align: center;
    padding-top: 30px;
    font-family: courier,monospace;
}

/* Hamburger menu (3 lines) */
.hamburger {
    font-size: 40px;
    cursor: pointer;
    position: absolute;
    top: 20px;
    right: 20px;
}

/* Sidebar styling */
.sidebar {
    height: 100vh;
    width: 250px;
    position: fixed;
    top: 0;
    left: -250px;
    background-color: White;
    overflow-x: hidden;
    transition: 0.3s ease;
    padding-top: 20px;
}

.sidebar a {
    display: block;
    color: white;
    padding: 15px;
    text-decoration: none;
    font-size: 1.2rem;
}

.sidebar a:hover {
    background-color: red;
}

.sidebar.open {
    left: 0;
}


.mission {
    font-size: 20px;
    color: white;
    margin: 50px;
    text-align: center;
    padding-top: none;
    font-family: courier,monospace;
}

.img-container2 {
    width: 100%; /* Ensure the container spans the full width */
    height: 80px; /* Set the desired height */
    background-image: url('img_1.png'); /* Replace with your image URL */
    background-size: cover; /* Ensure the image covers the entire container */
    background-position: center; /* Center the image */
    background-repeat: no-repeat; /* Prevent the image from repeating */
    margin: 0; /* Remove any default margins */
    overflow: hidden; /* Prevent content overflow */
}

.img-container {
    width: 100%; /* Ensure the container spans the full width */
    height: 300px; /* Set the desired height */
    background-image: url('img_1.png'); /* Replace with your image URL */
    background-size: cover; /* Ensure the image covers the entire container */
    background-position: center; /* Center the image */
    background-repeat: no-repeat; /* Prevent the image from repeating */
    margin: 0; /* Remove any default margins */
    overflow: hidden; /* Prevent content overflow */
}

.img-container h1 {
    font-size: 50px;
    letter-spacing: 5px;
    text-align: center;
    color: white;
    padding-top: 60px;
    padding: none;
}

.img-container h2 {
    font-size: 30px;
    letter-spacing: 5px;
    text-align: center;
    color: white;
    padding-top: none;
}


/* Hamburger menu (3 lines) */
.hamburger {
    font-size: 40px;
    cursor: pointer;
    position: absolute;
    top: 20px;
    right: 20px;
}

/* Sidebar styling */
.sidebar {
    height: 100vh; /* Full height */
    width: 250px; /* Sidebar width */
    position: fixed; /* Fix to the left side */
    top: 0;
    left: -250px; /* Initially hidden (to the left of the screen) */
    background-color: White; /* Dark background for sidebar */
    overflow-x: hidden; /* Prevent horizontal scroll */
    transition: 0.3s ease; /* Smooth sliding effect */
    padding-top: 20px;
}

.sidebar a {
    display: block; /* Stack the links */
    color: white; /* White text color */
    padding: 15px;
    text-decoration: none; /* Remove underlines */
    font-size: 1.2rem;
}

.sidebar a:hover {
    background-color: red; /* Darken the link on hover */
}

/* Container for the image and links */
.header-container {
    display: flex; /* Use flexbox for alignment */
    align-items: center; /* Vertically align items */
    justify-content: space-between; /* Distribute space between items */
    background-color: rgba(40,3,57,255); /* Match the header background */
    padding: 10px; /* Add some padding */
}

/* Header image styling */
.header-image {
    width: 300px; /* Adjust the image size */
    height: 100px;
    height: auto; /* Maintain aspect ratio */
    margin-right: 20px; /* Add space between the image and links */
}

/* Links container styling */
.header-links {
    display: flex; /* Arrange links horizontally */
    gap: 20px; /* Add spacing between links */
}

.header-a {
    margin-right: 70px;
}

.header-links a {
    color: white; /* Text color */
    text-decoration: none; /* Remove underline */
    font-size: 1.5rem; /* Adjust font size */
    padding: 5px 10px; /* Add some padding */
    transition: color 0.3s ease; /* Smooth hover transition */

}

.header-links a:hover {
    color: red; /* Change color on hover */
}


/* Style for the divider line */
.divider, .custom-divider {
    width: 100%;       /* Adjust width as desired */
    margin: 10px auto; /* Center the line and add some spacing */
    border: none;
    border-top: 5px solid white; /* Adjust thickness and color */
}

/* Basic resets */
body, html {
    margin: 0;
    padding: 0;
}

/* Center container */
.container {
    text-align: center;
}

/* Header image styling */
.header-image {
    max-width: 100%;
    height: 120px;
    margin: none;
}

/* Divider line */
.custom-divider {
    width: 100%;
    margin: none;
    padding: none;
    border-top: 2px solid white;
}

/* Main menu styling */
.main-menu ul {
    display: flex;
    justify-content: center;
    list-style-type: none;
    background-color: rgba(40,3,57,255);
    padding: none;
    margin: none;
}

.main-menu ul li {
    margin: 0 20px;
}

.main-menu ul li a {
    color: white;
    text-decoration: none;
    padding: 10px;
    display: block;
}

.text_container {
    color: white;
    text-align: center;
}

.text_container h1 {
    font-size: 50px;
    text-decoration: bold;
    color: white;
}

.text_container h2 {
    font-size: 18px;
    text-decoration: none;
    color: white;
    font-family: courier,monospace;
}

.text_container h3 {
     margin-top:70px;
    font-size: 30px;
    text-decoration: none;
    color: red;
    font-family: courier,monospace;
}

/* Main content area should grow and fill available space */
.container {
    flex-grow: 1; /* Allow the container to take up the remaining space */
}

/* Footer styling */
.footer {
    width: 100%;
    position: relative; /* Keeps footer below content */
    bottom: 0;
    background-color: rgba(40, 3, 57, 255); /* Dark background */
    color: white;
    padding: 20px 0; /* Add spacing around footer */
    text-align: center;
}

.footer .img-container2 {
    width: 100%; /* Ensure the footer spans the full width */
    background-color: rgba(40, 3, 57, 255); /* Dark background */
    padding: 10px;
}

.footer p {
    font-size: 16px;
    margin-top: 5px;
    color: white;
    font-family: Courier, monospace;
}

.footer .custom-divider {
    width: 100%;
    border-top: 2px solid white;
    margin-bottom: 10px;
}



/* Responsive design adjustments for mobile (max-width: 768px) */
@media only screen and (max-width: 768px) {
    body {
        padding: 0;
        font-size: 14px; /* Reduced font size for mobile */
    }

    .container {
        padding: 10px;
    }

    /* Sidebar */
    .sidebar {
        width: 100%; /* Sidebar takes full width on mobile */
        left: -100%; /* Initially hidden */
    }

    /* Open sidebar */
    .sidebar.open {
        left: 0;
    }

    /* Hamburger icon */
    .hamburger {
        font-size: 30px;
        top: 15px;
        right: 15px;
    }

    /* Image container */
    .img-container {
        height: 200px; /* Reduced height on mobile */
    }

    /* Header image */
    .header-image {
        width: 150px; /* Smaller image on mobile */
        height: 70px;
    }

    /* Header links */
    .header-links {
        flex-direction: column; /* Stack links vertically */
        align-items: center;
    }

    .header-links a {
        font-size: 1.2rem;
        margin: 5px 0;
    }

    /* Main menu links */
    .main-menu ul {
        display: block;
    }

    .main-menu ul li {
        margin: 5px 0;
    }

    .main-menu ul li a {
        padding: 10px;
    }

    /* Text container */
    .text_container h1 {
        font-size: 24px;
    }

    .text_container h2 {
        font-size: 16px;
    }

    .text_container h3 {
        font-size: 20px;
    }

    /* Adjust paragraph and heading styles */
    body p {
        font-size: 16px;
    }

    body h1 {
        font-size: 18px;
    }

    .footer p {
        font-size: 14px;
    }

    .img-container2 {
        height: 100%;
    }
}