/* Loading Screen - Centered */
#loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: white;
    display: flex;
    flex-direction: column; /* Stacks logo and text vertically */
    align-items: center;
    justify-content: center;
    text-align: center;
    z-index: 9999;
    padding: 20px; /* Ensures spacing */
}

/* Logo in Loading Screen */
#loading-logo {
    width: 100px; /* Default size for desktop */
    height: auto;
    max-width: 80%; /* Makes it responsive */
    margin-bottom: 15px; /* Space between logo and text */
}

/* Loading Text */
#loading-text {
    font-size: 40px; /* Default font size for desktop */
    font-weight: normal;
    color: #3a2426;
}

/* Responsive Design */
@media (max-width: 1200px) {  /* Large Screens */
    #loading-logo {
        width: 90px;
    }
    #loading-text {
        font-size: 36px;
    }
}

@media (max-width: 992px) {  /* Laptops & Small Desktops */
    #loading-logo {
        width: 85px;
    }
    #loading-text {
        font-size: 34px;
    }
}

@media (max-width: 768px) {  /* Tablets */
    #loading-logo {
        width: 80px;
    }
    #loading-text {
        font-size: 32px;
    }
}

@media (max-width: 576px) {  /* Large Mobile Phones */
    #loading-logo {
        width: 75px;
    }
    #loading-text {
        font-size: 30px;
    }
}

@media (max-width: 480px) {  /* Small Mobile Phones */
    #loading-logo {
        width: 70px;
    }
    #loading-text {
        font-size: 28px;
    }
}
