/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', sans-serif;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    color: #333;
    line-height: 1.6;
}

.coming-soon-container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Logo Styles */
.logo-container {
    margin-bottom: 2rem;
}

.logo {
    max-width: 300px;
    height: auto;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

/* Typography */
.coming-soon-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.lead {
    font-size: 1.4rem;
    font-weight: 400;
    color: #34495e;
    margin-bottom: 1.5rem;
}

.description p {
    font-size: 1.1rem;
    color: #5a6c7d;
    margin-bottom: 1rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Contact Cards */
.contact-info {
    margin-top: 3rem;
}

.contact-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    padding: 2rem 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.contact-icon {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
}

.contact-card h5 {
    color: #2c3e50;
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.contact-card p {
    color: #5a6c7d;
    margin-bottom: 0;
    font-size: 1rem;
    line-height: 1.5;
}

.contact-card a {
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.contact-card a:hover {
    color: #764ba2;
    text-decoration: none;
}

/* Social Media */
.social-media {
    margin-top: 3rem;
}

.social-media h5 {
    color: #2c3e50;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 50%;
    text-decoration: none;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

.social-link:hover {
    color: white;
    text-decoration: none;
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.6);
}

/* Footer */
.footer {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding: 2rem 0 1rem;
    margin-top: auto;
}

.footer p {
    margin-bottom: 0.5rem;
    color: #5a6c7d;
}

.footer .small {
    font-size: 0.875rem;
    color: #7f8c8d;
}

/* Responsive Design */
@media (max-width: 768px) {
    .coming-soon-title {
        font-size: 2.5rem;
    }
    
    .lead {
        font-size: 1.2rem;
    }
    
    .description p {
        font-size: 1rem;
    }
    
    .logo {
        max-width: 250px;
    }
    
    .contact-card {
        padding: 1.5rem 1rem;
        margin-bottom: 1rem;
    }
    
    .contact-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .social-link {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
}

@media (max-width: 576px) {
    .coming-soon-title {
        font-size: 2rem;
    }
    
    .logo {
        max-width: 200px;
    }
    
    .contact-card {
        padding: 1.2rem 0.8rem;
    }
    
    .description p {
        font-size: 0.95rem;
    }
}

/* Animation for page load */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.logo-container,
.coming-soon-title,
.description,
.contact-info,
.social-media {
    animation: fadeInUp 0.8s ease-out forwards;
}

.coming-soon-title {
    animation-delay: 0.2s;
}

.description {
    animation-delay: 0.4s;
}

.contact-info {
    animation-delay: 0.6s;
}

.social-media {
    animation-delay: 0.8s;
}
