/* Contact Page Styles */

/* Newsletter Section */
.newsletter-section {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), 
                url('https://user-images.strikinglycdn.com/res/hrscywv4p/image/upload/c_clip,w_960,h_720,f_auto,q_auto/unsplashcom/photo-1520762042279-ae3264026bd2');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 6rem 0;
    text-align: center;
    color: white;
}

.newsletter-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.newsletter-title {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 1rem;
    font-family: Georgia, serif;
}

.newsletter-subtitle {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    opacity: 0.9;
}

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

.form-row {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.newsletter-input {
    flex: 1;
    padding: 1rem;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    background: white;
    color: #333;
}

.newsletter-input::placeholder {
    color: #666;
}

.newsletter-btn {
    background-color: #2d5a2d;
    color: white;
    border: none;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    white-space: nowrap;
}

.newsletter-btn:hover {
    background-color: #1a3d1a;
}

/* Contact Section */
.contact-section {
    background-color: white;
    padding: 4rem 0;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.contact-header {
    text-align: center;
    margin-bottom: 3rem;
}

.contact-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: #2d3748;
    margin-bottom: 1rem;
    font-family: Georgia, serif;
}

.contact-subtitle {
    font-size: 1.1rem;
    color: #2d5a2d;
    font-family: Georgia, serif;
    font-weight: 300;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

/* Contact Form */
.contact-form {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.form-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: #2d3748;
    margin-bottom: 2rem;
}

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

.form-input,
.form-textarea {
    padding: 1rem;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: #2d5a2d;
}

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

.form-btn {
    background-color: #2d5a2d;
    color: white;
    border: none;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    align-self: flex-start;
}

.form-btn:hover {
    background-color: #1a3d1a;
}

/* Contact Information */
.contact-info {
    padding: 2rem 0;
}

.info-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: #2d3748;
    margin-bottom: 2rem;
}

.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
    gap: 1rem;
}

.info-icon {
    font-size: 1.5rem;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.info-content {
    flex: 1;
}

.info-label {
    font-size: 1.1rem;
    font-weight: bold;
    color: #2d3748;
    margin-bottom: 0.5rem;
}

.info-text {
    font-size: 1rem;
    color: #4a5568;
    line-height: 1.5;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .newsletter-title {
        font-size: 2.5rem;
    }
    
    .contact-title {
        font-size: 2.2rem;
    }
    
    .contact-content {
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .newsletter-section {
        padding: 4rem 0;
    }
    
    .newsletter-title {
        font-size: 2rem;
    }
    
    .newsletter-subtitle {
        font-size: 1rem;
    }
    
    .form-row {
        flex-direction: column;
        gap: 1rem;
    }
    
    .newsletter-input {
        width: 100%;
    }
    
    .newsletter-btn {
        width: 100%;
    }
    
    .contact-section {
        padding: 3rem 0;
    }
    
    .contact-title {
        font-size: 2rem;
    }
    
    .contact-subtitle {
        font-size: 1rem;
    }
    
    .contact-container {
        padding: 0 1.5rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
    
    .info-item {
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 480px) {
    .newsletter-section {
        padding: 3rem 0;
    }
    
    .newsletter-title {
        font-size: 1.75rem;
    }
    
    .newsletter-subtitle {
        font-size: 0.9rem;
    }
    
    .newsletter-container {
        padding: 0 1rem;
    }
    
    .contact-section {
        padding: 2.5rem 0;
    }
    
    .contact-title {
        font-size: 1.75rem;
    }
    
    .contact-subtitle {
        font-size: 0.9rem;
    }
    
    .contact-container {
        padding: 0 1rem;
    }
    
    .contact-header {
        margin-bottom: 2rem;
    }
    
    .contact-form {
        padding: 1.25rem;
    }
    
    .form-title,
    .info-title {
        font-size: 1.3rem;
    }
    
    .form-input,
    .form-textarea {
        padding: 0.75rem;
        font-size: 0.9rem;
    }
    
    .form-btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .info-item {
        margin-bottom: 1rem;
        gap: 0.75rem;
    }
    
    .info-icon {
        font-size: 1.25rem;
    }
    
    .info-label {
        font-size: 1rem;
    }
    
    .info-text {
        font-size: 0.9rem;
    }
} 