/* =============== COMING SOON PAGE =============== */
:root {
    --primary-blue: #2F6FB3;
    --secondary-purple: #6A3FB5;
    --gradient: linear-gradient(135deg, #2F6FB3 0%, #6A3FB5 100%);
    --dark-grey: #4A4A4A;
    --white: #FFFFFF;
    --light-grey: #F5F5F5;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--gradient);
    color: var(--white);
    overflow: hidden;
}

/* =============== FLOATING ANIMATION =============== */
@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* =============== CONTAINER =============== */
.coming-soon-container {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    padding: 20px;
}

.content-wrapper {
    text-align: center;
    animation: fadeIn 1s ease-out;
}

/* =============== LOGO =============== */
.logo-wrapper {
    margin-bottom: 50px;
    animation: fadeIn 0.8s ease-out;
}

.floating-logo {
    max-width: 200px;
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.2));
    animation: float 3s ease-in-out infinite;
}

/* =============== TEXT =============== */
.coming-soon-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: -1px;
    animation: fadeIn 1s ease-out 0.2s backwards;
}

.coming-soon-subtitle {
    font-size: 1.3rem;
    font-weight: 400;
    margin-bottom: 50px;
    opacity: 0.95;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    animation: fadeIn 1s ease-out 0.4s backwards;
}

/* =============== EMAIL SIGNUP =============== */
.email-signup {
    display: flex;
    gap: 10px;
    margin-bottom: 40px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeIn 1s ease-out 0.6s backwards;
}

.email-input {
    padding: 15px 25px;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    width: 300px;
    color: var(--dark-grey);
    font-family: 'Inter', sans-serif;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.email-input:focus {
    outline: none;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.email-input::placeholder {
    color: #999;
}

.email-btn {
    padding: 15px 40px;
    background: var(--white);
    color: var(--primary-blue);
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.email-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.email-btn:active {
    transform: translateY(0px);
}

/* =============== FOOTER TEXT =============== */
.contact-text {
    font-size: 1rem;
    opacity: 0.9;
    animation: fadeIn 1s ease-out 0.8s backwards;
}

.contact-text a {
    color: var(--white);
    text-decoration: underline;
    transition: opacity 0.3s ease;
}

.contact-text a:hover {
    opacity: 0.8;
}

/* =============== RESPONSIVE =============== */
@media (max-width: 768px) {
    .coming-soon-title {
        font-size: 2.5rem;
    }
    
    .coming-soon-subtitle {
        font-size: 1.1rem;
        margin-bottom: 40px;
    }
    
    .floating-logo {
        max-width: 150px;
    }
    
    .email-signup {
        flex-direction: column;
        align-items: center;
    }
    
    .email-input {
        width: 100%;
        max-width: 400px;
    }
    
    .email-btn {
        width: 100%;
        max-width: 400px;
    }
}

@media (max-width: 480px) {
    .coming-soon-title {
        font-size: 2rem;
    }
    
    .coming-soon-subtitle {
        font-size: 1rem;
    }
    
    .logo-wrapper {
        margin-bottom: 30px;
    }
}