/* General body styling */
body {
    font-family: 'Poppins', Arial, sans-serif; /* Sets the Poppins font, with Arial as a fallback */
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh; /* Full viewport height */
    overflow: hidden; /* Prevents scrolling */
    background-color: #000; /* Sets background to black */
}

/* Styling for the container */
.container {
    display: flex; /* Enables flexbox */
    width: 100%; /* Full width */
    height: 100%; /* Full height */
}

/* Styling for the image section */
.image-section {
    flex: 0 0 70%; /* Allocates 70% of the space to the image section */
    width: 70%; /* Explicitly defining width */
	padding: 20px; /* Adds padding around the image inside the section */
    box-sizing: border-box; /* Ensures the padding does not add to the width */
}

.image-section img {
    width: 100%; /* Full width of the section */
    height: 100%; /* Stretch to fill container vertically */
    object-fit: cover; /* Ensures image covers the area without distortion */
	display: block; /* Removes any default image margin */
}

/* Styling for the text section */
.text-section {
    flex: 0 0 30%; /* Allocates 30% of the space to the text section */
    width: 30%; /* Explicitly defining width */
    color: #aaa; /* Sets text color to grey */
    padding: 20px; /* Space inside the text section */
    display: flex;
    flex-direction: column;
    justify-content: center; /* Center content vertically */
    text-align: center; /* Centers text horizontally */
	box-sizing: border-box; /* Includes padding in the width calculation */
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .container {
        flex-direction: column; /* Stack vertically on small screens */
    }

    .image-section, .text-section {
        width: 100%; /* Each takes full width on small screens */
        flex: 0 0 auto; /* Resets the flex sizing for mobile */
    }
}
.social-icons a {
    color: #555; /* Icon color */
    margin: 0 10px; /* Space between icons */
    font-size: 24px; /* Icon size */
    text-decoration: none; /* Removes underline from links */
}

.social-icons a:hover, .social-icons a:focus {
    color: #334455; /* Icon color on hover/focus */
}

.image-container {
    width: 100%;
    height: 85%;
    display: flex;
    justify-content: center;
    align-items: center;
	opacity: 1;
    transition: opacity 2s ease-in-out;
}

.image-container img {
    width: 100%;
    height: 100%;
    display: block;
}

.image-container.fade-out {
    opacity: 0;
}

.fade-out {
    opacity: 0;
}

.fade-in {
    opacity: 1;
}


