/* Contact Page Styles */

/* Page Title Styles */
.page-title-container {
    text-align: center;
    max-width: 1800px;
    width: 95%;
    margin: 8rem auto 2rem;
    padding: 0 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.page-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.7rem;
    font-weight: 700;
    color: #d14b00;
    margin-bottom: 0.8rem;
    position: relative;
    display: inline-block;
}

.page-title::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: #d14b00;
    border-radius: 3px;
}

.page-subtitle {
    font-family: 'Lora', serif;
    font-size: 1.1rem;
    color: #5c534a;
    max-width: 680px;
    margin: 1.5rem auto 0;
    line-height: 1.5;
    min-height: 1.8rem;
    width: 100%;
    font-style: italic;
}

/* Contact Container Styles */
.contact-container {
    position: relative;
    z-index: 2;
    margin: 2rem auto 4rem;
    padding: 0 2rem;
    max-width: 1200px;
    width: 95%;
}

.contact-content {
    display: flex;
    background: #fef9f6;
    border-radius: 18px;
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.1);
    padding: 3rem;
    gap: 4rem;
}

.contact-info {
    flex: 0 0 35%;
}

.contact-info h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: #b94700;
    margin-bottom: 1.5rem;
}

.contact-info p {
    font-family: 'Lora', serif;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #5c534a;
    margin-bottom: 2rem;
}

.contact-method {
    margin-bottom: 1.5rem;
}

.contact-method h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: #d14b00;
    margin-bottom: 0.5rem;
}

.contact-method p {
    margin-bottom: 0.5rem;
}

.contact-method a {
    color: #b94700;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-method a:hover {
    color: #d14b00;
    text-decoration: underline;
}

/* Form Styles */
.contact-form-container {
    flex: 1;
    position: relative;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-family: 'Lora', serif;
    font-size: 1rem;
    color: #5c534a;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
    padding: 1rem;
    border: 1px solid #eae0d7;
    border-radius: 8px;
    font-family: 'Lora', serif;
    font-size: 1rem;
    color: #36302A;
    background-color: rgba(255, 255, 255, 0.7);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #d14b00;
    box-shadow: 0 0 0 2px rgba(209, 75, 0, 0.2);
}

.submit-button {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 1px;
    padding: 1rem 2rem;
    background-color: #d14b00;
    color: #fff;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
    align-self: flex-start;
    margin-top: 1rem;
}

.submit-button:hover {
    background-color: #a63b00;
    transform: translateY(-2px);
}

/* Form Message Styles */
.form-message {
    margin-top: 2rem;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    text-align: center;
    font-family: 'Lora', serif;
    display: none;
}

.success-message {
    background-color: rgba(76, 175, 80, 0.1);
    color: #2e7d32;
    border: 1px solid rgba(76, 175, 80, 0.3);
}

.error-message {
    background-color: rgba(244, 67, 54, 0.1);
    color: #c62828;
    border: 1px solid rgba(244, 67, 54, 0.3);
}

/* Responsive Adjustments */
@media (max-width: 1200px) {
    .page-title {
        font-size: 3rem;
    }
    
    .page-subtitle {
        font-size: 1.2rem;
    }
    
    .contact-content {
        padding: 2.5rem;
        gap: 3rem;
    }
}

@media (max-width: 992px) {
    .contact-content {
        flex-direction: column;
        gap: 3rem;
    }
    
    .contact-info {
        flex: 0 0 100%;
    }
}

@media (max-width: 768px) {
    .page-title-container {
        margin: 2rem auto 1rem;
    }
    
    .page-title {
        font-size: 2.2rem;
    }
    
    .page-title::after {
        width: 60px;
        height: 2px;
    }
    
    .page-subtitle {
        font-size: 1rem;
        max-width: 90%;
    }
    
    .contact-container {
        margin: 1.5rem auto 3rem;
        padding: 0 1.5rem;
    }
    
    .contact-content {
        padding: 1.5rem;
        gap: 2rem;
    }
    
    .contact-info h2 {
        font-size: 1.6rem;
    }
    
    .contact-info p {
        font-size: 1rem;
    }
    
    .contact-method h3 {
        font-size: 1.2rem;
    }
    
    .submit-button {
        width: 100%;
        padding: 0.9rem;
    }
} 