@import url('https://fonts.googleapis.com/css2?family=Inter&display=swap');

body {
    font-family: 'Inter', sans-serif;
    /* REMOVED: margin-left: 270px; */
    background: #000;
    color: #fff;
    overflow-x: hidden; /* Prevent horizontal scrollbar caused by content going out of bounds */
}

/* Style for elements that fade in once */
.fade-in-once {
    opacity: 0;
    transition: opacity 5s ease; /* Adjust duration as needed */
}

.fade-in-once.visible {
    opacity: 1;
}

/* Fixed return button styling */
.fixed-return2 {
    position: fixed;
    top: 80%;
    left: 100px; /* Keep fixed to the viewport's left edge */
    transform: translateY(-50%);
    font-family: 'Inter', sans-serif;
    font-size: 30px; /* adjust as needed */
    text-decoration: none;
    color: white;
    z-index: 100; /* Ensure it stays on top of other content */
}

/* Page wrapper for layout */
.page-wrapper {
    display: flex;
    flex-direction: row; /* Explicitly set to row for side-by-side */
    /* Updated max-width to accommodate both images + gap: 599px + 599px + 40px = 1238px */
    max-width: 1250px; /* Give a little extra room */
    margin: 0 auto; /* Center the page-wrapper horizontally */
    gap: 40px; /* Spacing between the images */
    align-items: flex-start; /* Aligns their top edges if they have different heights */
    /* The font-size on page-wrapper typically applies to text children, not images themselves */
    /* font-size: 30px; */
    padding: 20px; /* Add some padding to prevent images from touching screen edges */
    box-sizing: border-box; /* Include padding in max-width calculation */
}

/* General link styling */
a:hover {
    font-family: 'Inter', sans-serif;
    color: #aaa; /* lighter grey */
}

a {
    position: relative;
    display: inline-block;
    font-family: 'Inter', sans-serif;
}

/* General fade-in for other content (if you have elements with this class) */
.content-fade {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 1.2s ease, transform 1.2s ease;
}

.content-fade.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive adjustments for smaller screens */
@media (max-width: 1300px) { /* Adjust breakpoint as needed for when images should stack */
    .page-wrapper {
        flex-direction: column; /* Stack images vertically on smaller screens */
        align-items: center; /* Center images within the column */
        max-width: 100%; /* Allow wrapper to take full width */
        gap: 20px; /* Adjust gap for vertical stacking */
    }
    .page-wrapper img {
        /* You might want to constrain image width for smaller screens when stacked */
        max-width: 90%; /* Max 90% of parent width */
        height: auto; /* Maintain aspect ratio */
    }
}

@media (max-width: 768px) {
    .fixed-return2 {
        left: 20px; /* Adjust button position on very small screens */
        font-size: 24px;
    }
}