/* Updated CSS */
body {
    font-family: Arial, sans-serif;
    background-color: #ffc223; /* Dark background matching the image */
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh; /* Full screen height */
    overflow: hidden; /* Prevent scrolling */
    color: white;
}

.top-logo {
    max-width: 100px; /* Adjust size as needed */
    height: auto;
    position: absolute; /* Positioning */
    top: 20px; /* Adjust the distance from the top */
    left: 20px; /* Adjust the distance from the left */
}

.container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1200px; /* Set a max width for larger screens */
    padding: 0 20px; /* Adjust padding for mobile */
    box-sizing: border-box;
}

.text-container {
    flex: 1;
    max-width: 50%;
}

.text-container h1 {
    color: #633b0a; 
	font-size: 80px; /* Large font size */
    font-weight: bold;
    margin: 0;
    line-height: 1.2;
    white-space: pre-line; /* Allows line breaks */
    padding-left: 20px; /* Adjusted padding for mobile */
}

.text-container p {
    color: #633b0a  !important;
	font-size: 18px;
    margin-top: 10px;
    line-height: 1.5;
    color: #bbbbbb;
    padding-left: 20px; /* Adjusted padding for mobile */
}

.logo-container {
	flex: 1;
    display: flex;
    justify-content: flex-end;
    padding-right: 20px; /* Adjusted padding for mobile */
}

.logo-container img {
	/* filter: invert(1); */ 
	max-width: 700px; /* Adjusted logo size */
    height: auto;
}

.white-bars {
    position: fixed;
    left: 0;
    right: 0;
    background-color: white;
    height: 100px;
}

.white-bars.top {
    top: 0;
}

.white-bars.bottom {
    bottom: 0;
}

.footer {
    position: fixed; /* Fixed position to stay at the bottom */
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ffffff; /* White background */
    color: #000000; /* Black text */
    text-align: center; /* Centered text */
    padding: 10px 0; /* Padding for the footer */
    font-size: 14px; /* Font size */
}

@media (max-width: 800px) {
    body {
        height: auto; /* Allow height to adjust */
        overflow: visible; /* Allow scrolling if necessary */
    }

    .container {
        flex-direction: column;
        align-items: center;
        /*padding: 50px 20px;*/
        text-align: center;
        width: 100%; /* Full width for smaller screens */
    }

    .text-container {
        max-width: 100%; /* Full width for mobile */
        padding-left: 0; /* Reset padding */
    }

    .text-container h1 {
        font-size: 40px; /* Smaller font size for mobile */
        padding-left: 0; /* Reset padding */
		margin-top: 150px;
    }

    .text-container p {
        font-size: 16px; /* Slightly smaller text */
        padding-left: 0; /* Reset padding */
    }

    .logo-container {
        justify-content: center; /* Center logo on mobile */
        padding-right: 0; /* Reset padding */
        margin-top: 20px; /* Margin between text and logo */
    }

    .logo-container img {
        max-width: 200px; /* Smaller logo for mobile */
    }
}

@media (max-width: 500px) {
    .text-container h1 {
        font-size: 30px; /* Even smaller font size for very small screens */
    }

    .text-container p {
        font-size: 14px; /* Adjust paragraph size */
    }
}
