/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    min-height: 100vh;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
}

.construction-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.construction-content {
    background: rgba(255, 255, 255, 0.95);
    padding: 3rem;
    border-radius: 15px;
    text-align: center;
    max-width: 600px;
    width: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

h1 {
    font-size: 3.5rem;
    color: #2563eb;
    margin-bottom: 1rem;
    font-weight: 700;
}

.tagline {
    font-size: 1.2rem;
    color: #4b5563;
    margin-bottom: 2rem;
}

.logo-image {
    margin: 2rem 0;
    padding: 1rem;
}

.main-logo {
    max-width: 100%;
    height: auto;
    max-height: 200px;
    object-fit: contain;
}

.construction-message {
    margin: 2rem 0;
    padding: 2rem;
    background: #f8fafc;
    border-radius: 10px;
}

.construction-message h2 {
    color: #1e293b;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.construction-message p {
    color: #64748b;
    margin-bottom: 0.5rem;
}

.contact-info {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #e2e8f0;
}

.contact-info p {
    color: #64748b;
    margin-bottom: 0.5rem;
}

.email {
    color: #2563eb !important;
    font-weight: 600;
    font-size: 1.1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .construction-content {
        padding: 2rem;
    }

    h1 {
        font-size: 2.5rem;
    }

    .tagline {
        font-size: 1rem;
    }

    .construction-message h2 {
        font-size: 1.5rem;
    }

    .main-logo {
        max-height: 150px;
    }
}

@media (max-width: 480px) {
    .construction-content {
        padding: 1.5rem;
    }

    h1 {
        font-size: 2rem;
    }

    .construction-message {
        padding: 1.5rem;
    }

    .main-logo {
        max-height: 120px;
    }
} 