/* Reset some default styles and apply basic styling */
body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
}

/* Style the header container */
.main-header {
    position: relative;
    background-size: cover;
    background-image: url('header.jpg');
    color: #fff;
    text-align: center;
    padding: 80px 0;
}


/* Style the navigation menu */
nav ul {
    list-style-type: none;
    padding: 0;
}

nav ul li {
    display: inline;
    margin: 0 20px;
}

/* Responsive styles for smaller screens */
@media (max-width: 768px) {
    .main-header {
        padding: 60px 0;
    }

    nav ul li {
        display: block;
        margin: 10px 0;
    }
}

/* Style the navigation menu links */
nav ul li a {
    text-decoration: none; /* Remove underlines from links */
    color: #000; /* Set the link color to black (or your preferred color) */
    font-weight: bold; /* Make the text bold */
    padding: 5px 10px; /* Add padding to create clickable area */
    transition: color 0.3s; /* Add a smooth color transition on hover */

    /* Optionally, you can style other link states (hover, active, visited) */
}

/* Change link color on hover */
nav ul li a:hover {
    color: #007bff; /* Change the color on hover (blue in this example) */
}

/* Style the content container */
.content-container {
    max-width: 800px; /* Adjust the maximum width as needed */
    margin: 0 auto; /* Center the container horizontally */
    padding: 20px; /* Add padding to create space around the content */
}

/* Style the container for side-by-side containers */
.container {
    display: flex; /* Use flexbox to arrange containers side by side */
    justify-content: space-between; /* Distribute space between containers */
    max-width: 1000px; /* Adjust the maximum width as needed */
    margin: 0 auto; /* Center the container horizontally */
}

/* Style each content container */
.content-container {
    flex: 1; /* Allow containers to expand to fill available space */
    padding: 20px; /* Add padding to create space around each container */
    border: 0px solid #ddd; /* Add a border for separation (optional) */
    box-sizing: border-box; /* Include padding and border in the container's total width */
}

        /* CSS for text blocks */
        .text-block {
            text-align: center;
            padding: 20px;
        }

        /* CSS for the padded image */
        .padded-image {
            text-align: center;
            padding: 20px;
        }

        /* CSS for the gallery thumbnails */
        .thumbnail {
            width: 100px;
            height: 100px;
            margin: 5px;
            cursor: pointer;
        }

        /* CSS for the modal */
        .modal {
            display: none; /* Initial state is hidden */
            position: fixed;
            z-index: 1;
            background-color: rgba(0, 0, 0, 0.7);
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            text-align: center;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        /* CSS for the modal content */
        .modal-content {
            max-width: 90%;
            max-height: 90%;
        }

        /* CSS for the previous and next buttons */
        .prev, .next {
            cursor: pointer;
            position: absolute;
            top: 50%;
            width: auto;
            padding: 16px;
            margin-top: -22px;
            color: white;
            font-weight: bold;
            font-size: 24px;
        }

        .prev {
            left: 0;
        }

        .next {
            right: 0;
        }

        /* CSS for the image inside the modal */
        #modalImage {
            max-width: 100%;
            max-height: 100%;
        }