body {
    background-color: #FFFFFF; /* White background */
    font-family: Arial, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
}

header, nav, main, footer {
    padding: 20px;
}

.top-band, footer {
    position: relative;  /* Ensure it positions relative to the page */
    left: 0;  /* Align to the left edge */
    right: 0;  /* Align to the right edge */
    width: 100vw; /* Full viewport width */
    margin-left: calc(-50vw + 50%); /* Force to ignore container constraints */
    padding: 0;
}

/* Blue band across the top */
.top-band {
    background-color: #203470; /* Royal Blue */
    height: auto; /* should auto adjust */
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF; /* Text color */
    font-size: 2.0em; /* Default text size */
    padding: 10px;
    box-sizing: border-box;
    width: 100vw; /* Full viewport width */
    margin: 0; /* Ensure no margins */
    overflow: visible; /* for debugging */
    flex-wrap: wrap; /* allow items to stack if no room */
}


.logo {
  height: 200px;
  margin-top: 10px;
  margin-right: 10px;
}

/* Mobile adjustments */
@media only screen and (max-width: 600px) {
    .logo {
        height: 200px; /* Reduce size for mobile */
        margin-top: 5px;
        margin-left: 10px;
        margin-right: 5px;
    }
}

/* Styling the images inside the blue banner
.top-band img {
    height: 150px;
    margin-right: 10px;
}*/

/* Responsive text size for banner and adjustments for mobile */
@media only screen and (max-width: 600px) {
    .top-band {
        font-size: 1.2em; /* Smaller text for mobile */
        height: auto; /* Allow height to adjust based on content */
        padding: 10px; /* Add some padding for better spacing */
        justify-content: center; /* Center the content on mobile */
    }

    /* Eliminate the final_opposite_pool_icon.png on mobile */
    .top-band img:last-child {
        display: none; /* Hide the final_opposite_pool_icon.png */
    }

    .top-band img:first-child {
        margin-left: 10px; /* Add margin to prevent cruz_pool_logo.png from being cut off */
    }
}

/* Align images left, center, and right */
.image-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
}

/* Left and Right Images with 2 images each */
.left-images, .right-images {
    display: flex;
    flex-direction: column;
    gap: 30px; /* Space between images */
    flex: 1;
    text-align: center;
    margin-left: 100px; /* Add left margin */
    margin-right: 2px; /* Add right margin to balance sides */
}

/* Remove margins on mobile */
@media only screen and (max-width: 600px) {
    .left-images, .right-images {
        margin-left: 0; /* Remove left margin on mobile */
        margin-right: 0; /* Remove right margin on mobile */
    }
}

/* Left and right side images */
.side-image {
    width: 100%;
    max-width: 420px; /* Ensure max size for the side images */
    height: 300px;
    object-fit: cover;
    border-radius: 8px; /* Rounded corners */
}

/* Center aligned icons */
.center-icons {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px; /* Default gap for desktop */
    flex: 1;
}

/* Make icons bigger (2-3X larger) for desktop */
.icon {
    width: 150px;
    height: auto;
    margin-bottom: 20px;
}

.icon-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.icon-item a {
    display: flex;
    align-items: center; /* Vertically aligns text and icon */
    text-decoration: none;
    color: #203470; /* or preferred color */
    font-size: 1.5em;
}

/* Mobile-specific sizes and wrapping */
@media only screen and (max-width: 600px) {
    .image-row {
        flex-direction: column; /* Stack images and icons vertically on mobile */
        align-items: center;    /* Center everything */
    }

    .side-image {
        max-width: 100%; /* Allow images to take the full width of the mobile screen */
    }

    .center-icons {
        flex-direction: row; /* Align icons horizontally when stacked */
        flex-wrap: wrap;     /* Wrap icons if they overflow */
        justify-content: center; /* Center the icons */
        gap: 20px; /* Increase gap between icons for mobile */
    }

    .icon {
        width: 200px; /* Resize icons to fit better on mobile */
    }
}

/* Footer navigation bar */
.footer-nav {
    display: flex;
    justify-content: center; /* Center the nav links */
    gap: 20px; /* Space between each link */
    margin-bottom: 10px; /* Add space between nav and copyright text */
}

.footer-nav a {
    color: #FFFFFF; /* Match the text color with the footer text */
    text-decoration: none; /* Remove underlines */
    font-size: 1.2em; /* Slightly larger font for readability */
    transition: color 0.3s ease; /* Smooth transition for hover effect */
}

.footer-nav a:hover {
    color: #f0a500; /* Change color on hover */
}

/* Footer styling */
footer {
    text-align: center;
    padding: 20px;
    background-color: #203470;  /* Matches the colors with the top band background */
    color: #FFFFFF; /* Matches the colors with the top band text */
    width: 100vw; /* Full viewport width */
    margin: 0; /* Ensure no margins */
}

.portfolio-example-banner {
    background-color: #203470; /* Matches the top band color */
    color: #FFFFFF; /* White text */
    text-align: center;
    font-size: 1.5em;
    padding: 10px 20px;
    position: relative;
    z-index: 10;
    width: 100%; /* Full width */
    margin: 0; /* No margin */
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.2); /* Add a subtle shadow */
}

body {
    background-color: #FFFFFF; /* White background */
    font-family: Arial, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    /*background-image: url('background.png');  Add your background image here */
    background-size: cover; /* Cover the entire background */
    background-repeat: no-repeat; /* Do not repeat the image */
    background-attachment: fixed; /* Fixed background for effect */
    background-position: center; /* Center the image */
}

/* Add a semi-transparent overlay to enhance readability */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.5); /* Semi-transparent white overlay */
    z-index: -1; /* Send it behind the content */
}

@media only screen and (max-width: 600px) {
    .top-band {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .logo {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }

}
