/* Import Fonts */
@import url('https://fonts.googleapis.com/css2?family=Exo:wght@400;600;700&display=swap');

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

/* Base Styles */
body {
    font-family: 'Exo', Arial, sans-serif; /* Default Font */
    background: url('pulbic/images/background.png') no-repeat center center/cover;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    overflow: hidden;
    text-align: center;
    color: #333; /* Default text color */
}

/* Logo Styles */
.logo {

    max-width: 500px; /* Prevent excessive size on very large screens */
    margin-bottom: 2rem; /* Fixed spacing below logo */
}

.responsive-svg {
    width: 100%; /* Full width of the .logo div */
    height: auto;
    display: block; /* Remove inline spacing */
}

/* Typing Animation Text */
.text {
    font-size: 36px; /* Increased font size for prominence */
    font-weight: 600;
    color: #B22222;
    margin: 20px 0; /* Fixed spacing */
    height: 50px; /* Prevent page shifting */
    display: flex;
    align-items: center;
    justify-content: center;
}

#typing-text {
    border-right: 4px solid #B22222; /* Thicker cursor for visibility */
    padding-right: 10px;
    white-space: nowrap;
    overflow: hidden;
    /* Blinking Cursor Animation */
    animation: blink-cursor 0.7s steps(44) infinite;
}

/* Coming Soon Section */
.coming-soon {
    margin-top: 30px; /* Fixed spacing */
    font-size: 40px; /* Increased font size for prominence */
    font-weight: 700;
    color: #006400;
}

/* Keyframes for Blinking Cursor */
@keyframes blink-cursor {
    0% { border-color: #B22222; }
    50% { border-color: transparent; }
    100% { border-color: #B22222; }
}

/* Responsive Adjustments */

/* Extra Large Screens (≥1200px) */
@media (min-width: 1200px) {
    .logo {
        max-width: 600px; /* Adjusted max-width */
        margin-bottom: 2rem;
    }

    .text {
        font-size: 40px; /* Larger font size */
        height: 60px;
    }

    .coming-soon {
        font-size: 45px;
    }
}

/* Large Screens (992px–1199px) */
@media (min-width: 992px) and (max-width: 1199px) {
    .logo {
        max-width: 50%;
        margin-bottom: 2rem;
    }

    .text {
        font-size: 36px;
        height: 55px;
    }

    .coming-soon {
        font-size: 40px;
    }
}

/* Medium Screens (768px–991px) */
@media (min-width: 768px) and (max-width: 991px) {
    .logo {
        max-width: 60%;
        margin-bottom: 2rem;
    }

    .text {
        font-size: 32px;
        height: 50px;
    }

    .coming-soon {
        font-size: 35px;
    }
}

/* Small Screens (≤767px) */
@media (max-width: 767px) {
    .logo {
        max-width: 70%;
    }

    .text {
        font-size: 28px;
        height: 45px;
    }

    .coming-soon {
        font-size: 30px;
    }
}

/* Extra Small Screens (≤480px) */
@media (max-width: 480px) {
    .logo {
        max-width: 80%;
    }

    .text {
        font-size: 24px;
        height: 40px;
    }

    .coming-soon {
        font-size: 25px;
    }
}