body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: linear-gradient(135deg, #f5f5f5, #d7d7f8);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 100vh;
}

.tagline {
    font-size: 1.8em;
    color: #5a3f8e;
    margin: 20px 0;
    font-style: italic;
    animation: fadeIn 2s;
}

.coming-soon-container {
    text-align: center;
    padding: 20px;
}

.logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px; /* Add space between logos */
    margin-top: 50px;
    flex-wrap: wrap; /* Ensures wrapping for small screens */
}

.logo {
    max-width: 300px;
    height: auto;
    animation: fadeIn 2s;
}

.secondary-logo {
    border-left: 2px solid #5a3f8e; /* Add a slight border */
    padding-left: 10px;
}

.logo-container {
    display: flex;
    justify-content: center; /* Center align the logos */
    align-items: center; /* Vertically align the logos */
    gap: 20px; /* Space between logos */
    margin-top: 50px;
}

.logo {
    max-width: 300px;
    height: auto;
}

.secondary-logo-container {
    display: flex;
    flex-direction: column; /* Stack logo and text vertically */
    align-items: center; /* Center align the logo and text */
}

.secondary-logo {
    max-width: 150px; /* Adjust the size for the secondary logo */
    height: auto;
}

.subtext {
    margin-top: 10px; /* Space between the logo and text */
    font-size: 1.2em;
    color: #5a3f8e;
    text-align: center;
    animation: fadeIn 2s;
}


.headline {
    font-size: 2.5em;
    color: #5a3f8e;
    margin-top: 20px;
    animation: slideIn 1.5s;
}

.subtext {
    font-size: 1.2em;
    color: #5a3f8e;
    margin: 10px 0;
    animation: fadeIn 2s;
}

.animation-container {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.circle {
    width: 15px;
    height: 15px;
    margin: 0 5px;
    background: #5a3f8e;
    border-radius: 50%;
    animation: bounce 1.5s infinite;
}

.circle:nth-child(2) {
    animation-delay: 0.2s;
}

.circle:nth-child(3) {
    animation-delay: 0.4s;
}

footer {
    text-align: center;
    padding: 10px;
    background: #5a3f8e;
    color: #fff;
}

/* Responsive styles for smaller screens */
@media screen and (max-width: 768px) {
    .logo-container {
        flex-direction: column; /* Stack logos vertically */
        gap: 10px;
    }

    .secondary-logo {
        border-left: none; /* Remove border in vertical stack */
        padding-left: 0;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideIn {
    from {
        transform: translateY(-20px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes bounce {
    0%, 80%, 100% {
        transform: scale(1);
    }
    40% {
        transform: scale(1.5);
    }
}
