/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: #f1f8e9;
    min-height: 100vh;
    color: #333;
    line-height: 1.6;
}

.container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
}

.content {
    background: white;
    border-radius: 12px;
    padding: 40px 30px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    text-align: center;
    max-width: 400px;
    width: 100%;
}

/* Logo section */
.logo h1 {
    font-size: 2rem;
    font-weight: 600;
    color: #4caf50;
    margin-bottom: 8px;
}

.subtitle {
    font-size: 1rem;
    color: #666;
    font-weight: 400;
    margin-bottom: 30px;
}

/* Construction message */
.construction-message {
    margin-bottom: 30px;
}

.construction-message h2 {
    font-size: 1.25rem;
    color: #333;
    margin-bottom: 12px;
    font-weight: 500;
}

.construction-message p {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 8px;
}

/* Contact info */
.contact-info {
    margin-bottom: 20px;
}

.contact-info h3 {
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 12px;
    font-weight: 500;
}

.contact-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 8px;
    color: #4caf50;
    font-size: 0.9rem;
}

.contact-item span:first-child {
    font-size: 1rem;
}

/* Instagram link styling */
a.contact-item {
    text-decoration: none;
    transition: color 0.2s ease;
}

a.contact-item:hover {
    color: #388e3c;
}



/* Responsive design */
@media (max-width: 768px) {
    .content {
        padding: 30px 20px;
        margin: 20px;
    }
    
    .logo h1 {
        font-size: 1.75rem;
    }
} 