/* Simple Construction Page Styles */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main {
    flex: 1;
}

.hidden {
    display: none !important;
}

/* Construction Container */
.construction-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 2rem;
    align-items: center;
}

@media (max-width: 768px) {
    .construction-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem 1rem;
    }
}

/* Logo Section */
.logo-section {
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo-large {
    width: 40%;
    max-width: 400px;
    height: auto;
    object-fit: contain;
}

@media (max-width: 768px) {
    .logo-large {
        max-width: 200px;
    }
}

/* Content Section */
.content-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.content-box h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #000;
}

@media (max-width: 768px) {
    .content-box h1 {
        font-size: 1.75rem;
    }
}

.subtitle {
    font-size: 1.125rem;
    color: #666;
    margin-bottom: 2rem;
}

/* Contact Section */
.contact-section {
    margin-top: 2rem;
}

.contact-section h2 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #000;
}

.contact-section > p {
    color: #666;
    margin-bottom: 1.5rem;
}

/* Contact Form */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: #000;
}

.form-group input,
.form-group textarea {
    padding: 0.75rem 1rem;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #333;
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.1);
}

.field-error {
    color: #dc2626;
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
    font-family: inherit;
}

.submit-btn {
    padding: 0.875rem 2rem;
    background-color: #000;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
    margin-top: 0.5rem;
}

.submit-btn:hover {
    background-color: #333;
}

.submit-btn:active {
    background-color: #1a1a1a;
}

.form-message {
    padding: 1rem;
    margin-top: 1rem;
    border-radius: 6px;
    text-align: center;
    font-weight: 500;
}

.form-message.success {
    background-color: #d1fae5;
    color: #065f46;
    border: 1px solid #6ee7b7;
}

.form-message.error {
    background-color: #fee2e2;
    color: #991b1b;
    border: 1px solid #fca5a5;
}

/* Footer */
footer {
    background-color: #1a1a1a;
    color: white;
    margin-top: 4rem;
    padding: 3rem 1rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-grid {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2rem;
    margin-bottom: 2rem;
}

@media (max-width: 768px) {
    .footer-grid {
        flex-direction: column;
        gap: 1.5rem;
        justify-content: center;
        align-items: center;
    }
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    font-weight: 600;
}

.footer-section p {
    font-size: 0.875rem;
    color: #9ca3af;
    line-height: 1.6;
}

.footer-section {
    flex: 1;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-icons {
    display: flex;
    gap: 1.5rem;
    margin-top: 1rem;
    justify-content: center;
}

.footer-icons a {
    font-size: 1.25rem;
    transition: opacity 0.3s;
    text-decoration: none;
}

.footer-icons a:hover {
    opacity: 0.7;
}

.footer-divider {
    border-top: 1px solid #374151;
    margin: 2rem auto;
    text-align: center;
}

.footer-copyright {
    text-align: center;
    font-size: 0.75rem;
    color: #9ca3af;
}

/* Responsive Mobile */
@media (max-width: 640px) {
    .construction-container {
        padding: 1.5rem 1rem;
        gap: 1.5rem;
    }

    .content-box h1 {
        font-size: 1.5rem;
    }

    .contact-section h2 {
        font-size: 1.25rem;
    }

    footer {
        padding: 2rem 1rem;
        margin-top: 2rem;
    }
}
