/* Contact Page Specific Styles */
/* This file adds styles for the contact page while reusing all base styles from styles.css */

.contact-hook {
    background: var(--white);
    padding: 8rem 4rem;
    position: relative;
}

.contact-hook-container {
    max-width: 1200px;
    margin: 0 auto;
}

.contact-header {
    text-align: Left;
    margin: 0;
    margin-bottom: 4rem;
}

.contact-header h1 {
    position: relative;
    display: inline-block;

    /* highlight offset */
    padding: 0 40px 0 10px;
    transform: translateX(-10px);
    margin-bottom: 2rem;

    font-family: 'Newsreader', serif;
    font-size: 8rem;
    font-weight: 700;
    color: var(--navy);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.00) 44%, #BDF5E4 45%, #BDF5E4 90%, rgba(255, 255, 255, 0.00) 91%);
}

.contact-header h1::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40%;
    height: 20px;
    background: var(--turquoise);
    z-index: -1;
}

.contact-subtitle {
    font-size: 1.25rem;
    color: var(--navy);
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.contact-description {
    font-size: 1rem;
    color: #666;
    line-height: 1.7;
}

.contact-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 8rem;
    align-items: start;
}

.contact-form-section {
    background: var(--white);
    padding: 0;
}

/* Contact Form ----------------------------------------------------------- */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 1rem 0;
    border: none;
    border-bottom: 2px solid var(--Gray-Mid-Tone, #6D6D6D);
    font-size: 1.2rem;
    font-family: 'DM Sans', sans-serif;
    background: transparent;

    transition: border-color 0.5s ease, box-shadow 0.5s ease;
    box-shadow: 0 1px 0 0 rgba(0, 0, 0, 0); 
}

.contact-message-box {
    min-height: 80px;
    max-height: 300px;
    resize: vertical;
    overflow-y: auto;
    line-height: 1.5;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-bottom-color: var(--Gray-Mid-Tone, #323232);
    box-shadow: 0 1px 0 0 var(--Gray-Mid-Tone, #323232);
}


.contact-form textarea {
    resize: vertical;
    min-height: 80px;
}

.contact-form button {
    align-self: flex-start;
    margin-top: 1rem;
}

.contact-info-section {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.contact-info-block h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--navy);
    margin: 1.25rem 0;
}

.contact-detail {
    font-size: 1.1rem;
    color: var(--navy);
    margin-bottom: 0.75rem;
    font-weight: 500;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links .social-icon {
    font-size: 1.5rem;
}

/* Responsive */
@media (max-width: 1080px) {
    .contact-info-section {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
    }

    .contact-header h1 {
        font-size: 6rem;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .contact-header h1 {
        font-size: 3.5rem;
    }

    .contact-subtitle {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .contact-hook {
        padding: 3rem 1.5rem 4rem;
    }

    .contact-header h1 {
        font-size: 3.5rem;
    }

    .contact-header {
        margin-bottom: 3rem;
    }
}