/* Basic Styling */
body {
    font-family: sans-serif;
    margin: 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    background-image: url('background-image.jpg'); 
    background-size: cover;
    color: white; 
    padding: 20px 0; 
    position: relative; /* For hamburger positioning */
}

.logo {
    font-size: 1.5em;
    font-weight: bold;
}

.nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex; /* Use flexbox for horizontal nav */
}

.nav-list li {
    margin-left: 20px;
}

.nav-list a {
    color: white;
    text-decoration: none;
}

/* Hamburger Menu (initially hidden) */
.hamburger {
    display: none;
    cursor: pointer;
    position: absolute; 
    top: 25px; 
    right: 20px; 
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: white;
    margin-bottom: 5px;
}

/* Intro Banner */
.intro-banner {
    background-color: lightgray;
    padding: 40px 0;
    text-align: center;
}

/* Content Section */
.content {
    padding: 40px 0;
}

.flex-container {
    display: flex;
    justify-content: space-around; /* Space between boxes */
    align-items: center; /* Center vertically */
}

.text-box, .image-box {
    width: 45%; /* Adjust as needed */
}

.image-box img {
    max-width: 100%;
    height: auto;
}

.text-area {
    margin-top: 40px;
}

/* Footer */
footer {
    background-color: #333;
    color: white;
    padding: 20px 0;
    text-align: center;
}

.footer-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
}

.footer-links li {
    margin: 0 10px;
}

.footer-links a {
    color: white;
    text-decoration: none;
}

.social-media {
    margin-top: 10px;
}

.social-media a {
    color: white;
    margin: 0 5px;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .flex-container {
        flex-direction: column; /* Stack boxes vertically */
    }

    .text-box, .image-box {
        width: 90%; /* Take up more width on smaller screens */
        margin-bottom: 20px;
    }
}

@media (max-width: 450px) {
    .nav-list {
        display: none; /* Hide nav on small screens */
    }

    .hamburger {
        display: block; /* Show hamburger menu */
    }

    /* Add styles for the open hamburger menu here (using JavaScript) */
}