/* Contact Page Styles - Billy Parisi Style */

.contact-page {
    padding: 80px 0;
    background: #fff;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Contact Header */
.contact-header {
    text-align: center;
    margin-bottom: 80px;
}

.page-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5em;
    color: #333;
    margin: 0 0 30px 0;
    font-weight: 400;
    letter-spacing: -1px;
}

.page-subtitle {
    font-family: 'Roboto', sans-serif;
    font-size: 1.1em;
    color: #666;
    line-height: 1.6;
    margin: 0;
    max-width: 600px;
    margin: 0 auto;
}

.page-subtitle a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-subtitle a:hover {
    color: #007cba;
    text-decoration: none;
}

/* Contact Content */
.contact-content {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Contact Form - Billy Parisi Style */
.contact-form-section {
    background: #fff;
    padding: 0;
    max-width: 600px;
    width: 100%;
    text-align: center;
}

.contact-form-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8em;
    color: #333;
    margin: 0 0 40px 0;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-form {
    max-width: 100%;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 30px;
}

.form-group label {
    display: block;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    color: #333;
    margin-bottom: 8px;
    font-size: 0.9em;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 0;
    border: none;
    border-bottom: 1px solid #ddd;
    font-family: 'Roboto', sans-serif;
    font-size: 1em;
    color: #333;
    background: transparent;
    transition: border-color 0.3s ease;
    box-sizing: border-box;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-bottom-color: #333;
}

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

.submit-btn {
    background: #333;
    color: #fff;
    border: none;
    padding: 15px 40px;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 0.9em;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.submit-btn:hover {
    background: #007cba;
}

.submit-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
}

/* Form Message */
.form-message {
    margin-top: 20px;
    padding: 15px;
    text-align: center;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    display: none;
}

.form-message.success {
    color: #28a745;
}

.form-message.error {
    color: #dc3545;
}

/* Footer Links */
.footer-container {
    margin-bottom: 20px;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
}

.footer-logo {
    max-width: 150px;
    height: auto;
}

.footer-socials {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.footer-socials a {
    color: #666;
    font-size: 1.2em;
    transition: color 0.3s ease, transform 0.3s ease;
}

.footer-socials a:hover {
    color: #007cba;
    transform: translateY(-2px);
}

.footer-links {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

.footer-link {
    color: #666;
    text-decoration: none;
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    font-size: 0.95em;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #007cba;
    text-decoration: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .page-title {
        font-size: 2.5em;
    }
    
    .contact-page {
        padding: 60px 0;
    }
    
    .footer-links {
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .contact-page {
        padding: 40px 0;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .page-title {
        font-size: 2em;
    }
    
    .contact-header {
        margin-bottom: 60px;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 15px;
    }
}
