* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body,
html {
    height: 100%;
    width: 100%;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

.under-construction-container {
    /* Full height and width */
    height: 100vh;
    width: 100vw;

    /* Move the logo closer to the top (30vh instead of center 50vh) */
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding-top: 15vh;
    align-items: center;

    /* Background Image setup */
    /* Using a placeholder high-quality image from Unsplash since none was provided */
    background-image: url('../img/bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    /* Positioning context for the overlay */
    position: relative;
}

/* Color Overlay */
.color-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* 80% opacity black overlay, assuming this as a premium default */
    background-color: rgba(0, 0, 0, 0.3);
    z-index: 1;
    /* Keep it below the logo */
}

/* Logo Styling */
.logo-wrapper {
    z-index: 2;
    /* Keep it above the overlay */
    width: 400px;
    /* Base size, scales down on smaller screens */
    max-width: 80%;
    /* Slight drop shadow for depth against the background */
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.3));
}

/* Initial animation to make it dynamic */
@keyframes fadeInScale {
    0% {
        opacity: 0;
        transform: scale(0.9);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.logo-wrapper img {
    width: 100%;
    height: auto;
    animation: fadeInScale 1.5s ease-out forwards;
}

/* Social Media Container */
.social-container {
    display: flex;
    gap: 1.5rem;
    margin-top: 4rem;
    z-index: 2;
    /* Above overlay */
    opacity: 0;
    animation: fadeInScale 1.5s ease-out forwards;
    animation-delay: 0.5s;
    /* Slight delay after logo appears */
}

.social-container a {
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s ease, transform 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-container a:hover {
    color: #ffffff;
    transform: translateY(-2px);
}

.social-container svg {
    width: 28px;
    height: 28px;
    fill: currentColor;
}