/* Additional styles for pages without sidebar (About, Contact) */

.page-container {
    max-width: 1400px;
    margin: 0 auto;
    background: white;
}

.page-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 3rem 4rem;
}

/* Contact Page Styles */
.contact-header {
    margin-bottom: 3rem;
    text-align: center;
}

.contact-header h1 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.contact-header p {
    font-size: 1.1rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
}

.contact-form-wrapper {
    max-width: 600px;
    margin: 0 auto;
}

.contact-form {
    background: white;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #2c3e50;
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s, box-shadow 0.3s;
    background: white;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #c2885c;
    box-shadow: 0 0 0 3px rgba(194, 136, 92, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #94a3b8;
}

/* Cloudflare Turnstile Container */
.cf-turnstile {
    margin: 1rem 0;
}

.submit-button {
    width: 100%;
    padding: 1rem 2rem;
    background: #c2885c;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s, transform 0.1s;
}

.submit-button:hover {
    background: #a67248;
}

.submit-button:active {
    transform: scale(0.98);
}

.submit-button:disabled {
    background: #94a3b8;
    cursor: not-allowed;
}

/* Success Message */
.success-message {
    display: none;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    background: #f0fdf4;
    border: 1px solid #86efac;
    border-radius: 6px;
    color: #166534;
    margin-top: 1.5rem;
}

.success-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    color: #22c55e;
}

.success-message span {
    font-weight: 500;
}

/* Error Message */
.error-message {
    display: none;
    padding: 1rem 1.5rem;
    background: #fef2f2;
    border: 1px solid #fecaca;
    border-radius: 6px;
    color: #991b1b;
    margin-top: 1.5rem;
}

.error-message span {
    font-weight: 500;
}

/* Responsive for pages without sidebar */
@media (max-width: 968px) {
    .page-content {
        padding: 2rem 1.5rem;
    }

    .contact-header h1 {
        font-size: 2rem;
    }

    .contact-form-wrapper {
        padding: 0;
    }
}

@media (max-width: 640px) {
    .page-content {
        padding: 1.5rem 1rem;
    }

    .contact-header {
        margin-bottom: 2rem;
    }

    .contact-header h1 {
        font-size: 1.75rem;
    }

    .contact-header p {
        font-size: 1rem;
    }

    .form-group input,
    .form-group textarea {
        padding: 0.65rem 0.85rem;
        font-size: 0.95rem;
    }

    .submit-button {
        padding: 0.85rem 1.5rem;
    }
}
