/* General body styling */
body {
    font-family: 'Roboto', sans-serif;
    background-color: #f4f4f4; /* Light gray background */
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center; /* Center horizontally */
    align-items: center; /* Center vertically */
    height: 100vh; /* Full viewport height */
    text-align: center; /* Center text */
}

/* Styling for the content */
.content {
    max-width: 900px;
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.9); /* Slightly transparent white background */
    border-radius: 15px;
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.1);
    position: relative; /* Make sure it can hold positioned elements */
    background-image: url('USAARMWTFMOnnents.png'); /* Replace with your image path */
    background-size: 200px 200px; /* Adjust the size of the image */
    background-position: bottom left; /* Position it at the bottom left */
    background-repeat: no-repeat; /* Ensure the image doesn't repeat */
    background-blend-mode: overlay; /* Blend the image with the background color */
    background-color: rgba(255, 255, 255, 0.6); /* Make the background slightly transparent to show the image */
}

/* Heading and subheading styling */
.coming-soon {
    font-size: 3rem;
    color: #1E3A8A; /* Brighter, bolder dark blue for better contrast */
    margin-bottom: 10px;
    text-shadow: 4px 4px 6px rgba(0, 0, 0, 0.5); /* Stronger shadow for more pop */
    transition: transform 0.3s ease; /* Add transition for hover effect */
}

.coming-soon:hover {
    transform: translateY(-8px); /* Slightly raise text more for hover effect */
}

/* Styling for the paragraph text */
p {
    font-size: 1.2rem;
    color: #000000; /* Full black for maximum contrast */
    font-weight: 700; /* Make text bold */
    margin: 10px 0;
    text-shadow: 2px 3px 3px rgba(255, 215, 0, 0.7); /* Softer golden yellow shadow */
}

/* Styling for the footer */
.footer {
    position: fixed;
    bottom: 20px; /* Increase the distance from the bottom */
    left: 50%;
    transform: translateX(-50%);
    padding: 20px; /* Add padding around the footer */
    background-color: #f4f4f4; /* Optional: Set a background color for the footer */
    border-radius: 10px; /* Optional: Add rounded corners */
    width: 90%; /* Optional: Set the width for better control */
    text-align: center; /* Ensure the text is centered */
}

/* Social media icon container */
.social-icons {
    display: flex;
    justify-content: center; /* Center the icons horizontally */
    gap: 20px; /* Increase space between icons */
    padding: 10px; /* Add padding around the icons */
}

/* Ensure tooltips position correctly */
.social-icon {
    font-size: 2rem;
    color: #2c3e50; /* Dark color for the icons */
    transition: transform 0.3s ease, color 0.3s ease;
    padding: 10px;
    position: relative; /* Add this to make the tooltip relative to the icon */
}

/* Tooltip text */
.social-icon::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: -35px; /* Adjust position below the icon */
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(0, 0, 0, 0.8);
    color: #fff;
    font-size: 0.8rem;
    padding: 5px 8px;
    border-radius: 5px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, transform 0.3s ease;
    z-index: 10; /* Ensure tooltip is above other elements */
}

/* Show tooltip on hover */
.social-icon:hover::after {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(-5px); /* Slight lift effect */
}


/* Copyright text styling */
.copyright {
    font-size: 1rem;
    font-weight: 400; /* Normal weight to avoid bold appearance */
    color: #000; /* Ensure black text for contrast */
    background: none; /* Remove any unwanted background color */
    padding: 0;
    margin: 10px 0;
    text-shadow: none; /* Ensure no extra shadows are applied */
}


/* Responsive adjustments for smaller screens */
@media (max-width: 768px) {
    .coming-soon {
        font-size: 2.5rem;
    }

    p {
        font-size: 1rem;
    }

    .social-icon {
        font-size: 1.5rem; /* Smaller icons on mobile */
    }
}
