/* deVillo Solutions - Landing Page Redesign (Earth Tones) */

:root {
    --earth-sage: #8A9A5B;
    --earth-cedar: #4A3728;
    --earth-tan: #D2B48C;
    --earth-white: #FFFFFF;
    --earth-bone: #F5F5F4;
    --text-dark: #2C2C2B;
    --text-muted: #6B7280;
    --wood-border: #A07855;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--earth-white);
    color: var(--text-dark);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 2rem;
}

.content {
    width: 100%;
    max-width: 650px;
    text-align: center;
    animation: fadeIn 1s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Logo Styles */
.logo-container {
    margin-bottom: 3.5rem;
}

.brand-logo {
    max-width: 250px;
    height: auto;
    /* Subtle filter if needed to blend with earth tones */
    /* filter: sepia(0.2); */
}

/* Status Message */
.status-message {
    margin-bottom: 4rem;
}

.status-message h2 {
    font-family: 'Libre Baskerville', serif;
    font-size: 1.6rem;
    margin-bottom: 1.25rem;
    color: var(--earth-cedar);
}

.status-message p {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.6;
    font-weight: 300;
}

/* Contact Form */
.contact-box {
    background: var(--earth-bone);
    border: 1px solid var(--earth-tan);
    border-top: 4px solid var(--wood-border);
    padding: 3rem;
    border-radius: 4px;
    text-align: left;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.contact-box h3 {
    font-family: 'Libre Baskerville', serif;
    font-size: 1.3rem;
    margin-bottom: 2rem;
    color: var(--earth-cedar);
    border-bottom: 1px solid var(--earth-tan);
    padding-bottom: 0.5rem;
    display: inline-block;
}

.input-group {
    margin-bottom: 1.75rem;
}

.input-group label {
    display: block;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1rem;
    margin-bottom: 0.6rem;
    color: var(--earth-cedar);
    font-weight: 600;
}

input,
textarea {
    width: 100%;
    padding: 0.9rem;
    background: var(--earth-white);
    border: 1px solid var(--earth-tan);
    border-radius: 2px;
    color: var(--text-dark);
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

input:focus,
textarea:focus {
    outline: none;
    border-color: var(--earth-sage);
}

.submit-btn {
    width: 100%;
    padding: 1.1rem;
    background: var(--earth-cedar);
    color: var(--earth-white);
    border: none;
    border-radius: 2px;
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15rem;
    cursor: pointer;
    transition: background 0.3s ease;
}

.submit-btn:hover {
    background: var(--wood-border);
}

/* Footer */
.footer {
    margin-top: 4rem;
    font-size: 0.85rem;
    color: var(--text-muted);
}

@media (max-width: 600px) {
    .brand-logo {
        max-width: 180px;
    }

    .contact-box {
        padding: 2rem 1.5rem;
    }

    .status-message h2 {
        font-size: 1.4rem;
    }
}