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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

/* Coming Soon Page Styles */
.coming-soon-container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 40px 20px;
}

.background-gradient {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
    z-index: -1;
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.content-wrapper {
    max-width: 1200px;
    width: 100%;
    z-index: 1;
    animation: fadeInUp 1s ease-out;
}

.two-column-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    width: 100%;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.left-column {
    display: flex;
    align-items: center;
    justify-content: center;
}

.right-column {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
}

.logo-section {
    margin-bottom: 30px;
    position: relative;
    display: inline-block;
}

.logo {
    font-size: 3.5rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: -2px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    margin-bottom: 10px;
    position: relative;
    z-index: 2;
}

.logo-accent {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 4px;
    background: linear-gradient(90deg, transparent, #ffffff, transparent);
    border-radius: 2px;
    animation: expandAccent 1.5s ease-out 0.5s both;
}

@keyframes expandAccent {
    from {
        width: 0;
        opacity: 0;
    }
    to {
        width: 120px;
        opacity: 1;
    }
}

.animation-container {
    width: 100%;
    max-width: 100%;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.animation-container::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    filter: blur(40px);
    animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.5;
        transform: scale(0.95);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.05);
    }
}

#lottie-animation {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 15px 40px rgba(0, 0, 0, 0.3));
    position: relative;
    z-index: 1;
}

.text-content {
    margin-bottom: 30px;
}

.main-heading {
    font-size: 2rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    line-height: 1.2;
    text-align: left;
}

.subheading {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 25px;
    font-weight: 300;
    letter-spacing: 0.5px;
    text-align: left;
}

.divider {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.6), transparent);
    margin: 25px 0;
    border-radius: 2px;
}

.description {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    margin: 0;
    font-weight: 300;
    text-align: left;
}

.social-links {
    display: flex;
    justify-content: flex-start;
    gap: 20px;
    margin-top: 10px;
}
.social-links a{ color: #ffffff;}
.social-link {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.coming-soon-footer {
    margin-top: auto;
    padding-top: 40px;
    text-align: center;
}

.coming-soon-footer p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    font-weight: 300;
}

/* Responsive Design */
@media (max-width: 968px) {
    .two-column-layout {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .right-column {
        text-align: center;
    }
    
    .main-heading,
    .subheading,
    .description {
        text-align: center;
    }
    
    .divider {
        margin: 25px auto;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
    }
    
    .social-links {
        justify-content: center;
    }
    
    .animation-container {
        height: 350px;
    }
}

@media (max-width: 768px) {
    .logo {
        font-size: 3rem;
    }
    
    .main-heading {
        font-size: 2rem;
    }
    
    .subheading {
        font-size: 1.1rem;
    }
    
    .animation-container {
        height: 300px;
    }
    
    .description {
        font-size: 0.95rem;
        padding: 0 20px;
    }
}

@media (max-width: 480px) {
    .logo {
        font-size: 2.5rem;
    }
    
    .main-heading {
        font-size: 1.75rem;
    }
    
    .animation-container {
        height: 250px;
    }
}

