/* Simple Coming Soon Page */

/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body */
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background-color: #ffffff;
    color: #333333;
    line-height: 1.6;
}

/* Container */
.container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Content */
.content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem;
}

/* Logo */
.logo {
    max-width: 300px;
    width: 100%;
    height: auto;
    margin-bottom: 3rem;
}

/* Message */
.message {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 3rem;
    letter-spacing: 0.5px;
}

/* Contact */
.contact {
    margin-bottom: 2rem;
}

.contact-label {
    font-size: 1.125rem;
    color: #4a5568;
    margin-bottom: 1rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    align-items: center;
}

.contact-item {
    font-size: 1.125rem;
    font-weight: 500;
    color: #4a5568;
    text-decoration: none;
    transition: color 0.2s ease;
}

.contact-item.email {
    color: #1E90FF;
    font-weight: 600;
    font-size: 1.25rem;
}

.contact-item.email:hover {
    color: #0F2557;
    text-decoration: underline;
}

.contact-item.phone {
    color: #1E90FF;
    font-weight: 600;
}

.contact-item.phone:hover {
    color: #0F2557;
    text-decoration: underline;
}

.contact-item.address {
    color: #4a5568;
    font-size: 1rem;
    line-height: 1.5;
}

/* Footer */
.footer {
    padding: 2rem 0;
    text-align: center;
    background-color: #0F2557;
    color: white;
}

.footer p {
    font-size: 0.875rem;
}

/* Mobile */
@media (max-width: 768px) {
    .content {
        padding: 1.5rem;
    }
    
    .logo {
        max-width: 250px;
        margin-bottom: 2rem;
    }
    
    .message {
        margin-bottom: 2rem;
    }
    
    .contact {
        margin-bottom: 1.5rem;
    }
    
    .contact-item {
        font-size: 1rem;
    }
    
    .contact-item.email {
        font-size: 1.125rem;
    }
}

@media (max-width: 480px) {
    .content {
        padding: 1rem;
    }
    
    .logo {
        max-width: 200px;
        margin-bottom: 1.5rem;
    }
    
    .message {
        margin-bottom: 1.5rem;
    }
    
    .contact {
        margin-bottom: 1rem;
    }
    
    .contact-item {
        font-size: 0.95rem;
    }
    
    .contact-item.email {
        font-size: 1.05rem;
    }
} 