/* Get Involved Page Styles - get-involved.css */

:root {
    --main-green: #386641;
    --accent-brown: #a6814c;
    --offwhite: #f9f7f2;
    --text-dark: #222;
    --tile-green-light: #a7c957;
    --focus-bg: #f7ffe0;
    --shadow: 0 2px 12px rgba(60, 80, 60, 0.08);
    --radius: 18px;

}

/* Base Styles */
* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Roboto', Arial, sans-serif;
    background: var(--offwhite);
    color: var(--text-dark);
    margin: 0;
    padding: 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    /* padding: 0 1.5rem; */
}





/* Contact Section */
.contact {
    background: linear-gradient(135deg, #fff8ee 0%, #f7ffe0 50%, #fff8ee 100%);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(167, 201, 87, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(56, 102, 65, 0.06) 0%, transparent 50%);
    pointer-events: none;
}

.contact .container {
    position: relative;
    z-index: 2;
}

.contact-flex {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin-top: 3rem;
}

.contact-info {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border-radius: var(--radius);
    padding: 2.5rem;
    box-shadow: var(--shadow);
    border: 1px solid rgba(167, 201, 87, 0.2);
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.contact-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--main-green), var(--accent-brown));
}

.contact-info:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(60, 120, 90, 0.2);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-info h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: var(--main-green);
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.contact-info h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--main-green), var(--accent-brown));
    border-radius: 2px;
}

.contact-info>p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-dark);
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem auto;
    opacity: 0.9;
    font-weight: 400;
    animation: fadeInUp 0.6s ease-out 0.2s both;
}

.contact-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--main-green);
    margin: 2rem 0 1rem 0;
    position: relative;
    padding-left: 2rem;
    font-weight: 600;
    transition: color 0.3s ease;
}

.contact-info h3::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 40px;
    background: linear-gradient(180deg, var(--main-green), var(--accent-brown));
    border-radius: 3px;
}

.contact-info h3:hover {
    color: var(--accent-brown);
}

.contact-info h3:hover::before {
    background: linear-gradient(180deg, var(--accent-brown), var(--main-green));
    transition: background 0.3s ease;
}

.contact-info p {
    font-size: 1.1rem;
    line-height: 1.75;
    color: var(--text-dark);
    margin-bottom: 2rem;
    padding-left: 2rem;
    position: relative;
    opacity: 0.9;
    animation: fadeInUp 0.6s ease-out 0.1s both;
}

.contact-info .btn-primary {
    display: inline-block;
    background: linear-gradient(135deg, var(--main-green) 0%, var(--accent-brown) 100%);
    color: #fff;
    border-radius: 30px;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    text-align: center;
    box-shadow: 0 4px 15px rgba(60, 102, 65, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    margin: 2rem auto;
    display: block;
    max-width: 300px;
}

.contact-info .btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.contact-info .btn-primary:hover::before {
    left: 100%;
}

.contact-info .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(56, 102, 65, 0.4);
    border-color: rgba(255, 255, 255, 0.3);
}

.newsletter {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 2.5rem;
    border: 1px solid rgba(167, 201, 87, 0.2);
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.8s ease-out 0.6s both;
    text-align: center;
}

.newsletter::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--main-green), var(--accent-brown));
}

.newsletter:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(60, 120, 90, 0.2);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.newsletter h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--main-green);
    margin-bottom: 1.5rem;
    position: relative;
    font-weight: 600;
    transition: color 0.3s ease;
}

.newsletter h3::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -10px;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--main-green), var(--accent-brown));
    border-radius: 2px;
}

.newsletter h3:hover {
    color: var(--accent-brown);
}

.newsletter p {
    font-size: 1.1rem;
    line-height: 1.75;
    color: var(--text-dark);
    margin-bottom: 2rem;
    opacity: 0.9;
    animation: fadeInUp 0.6s ease-out 0.1s both;
}

.newsletter form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 400px;
    margin: 0 auto;
}

.newsletter input[type="email"] {
    padding: 1rem;
    font-size: 1rem;
    border: 2px solid rgba(167, 201, 87, 0.3);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.9);
    color: var(--text-dark);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.newsletter input[type="email"]:focus {
    outline: none;
    border-color: var(--main-green);
    box-shadow: 0 0 8px rgba(56, 102, 65, 0.2);
}

.newsletter button {
    background: linear-gradient(135deg, var(--main-green) 0%, var(--accent-brown) 100%);
    color: #fff;
    border: none;
    border-radius: 30px;
    padding: 1rem;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(56, 102, 65, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.newsletter button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.newsletter button:hover::before {
    left: 100%;
}

.newsletter button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(56, 102, 65, 0.4);
}

#newsletter-msg {
    margin-top: 1rem;
    font-size: 1rem;
    color: var(--main-green);
    animation: fadeInUp 0.6s ease-out;
}



/* Animations (Consistent with about.css) */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}



/* Responsive Styles (Consistent with about.css) */
@media (max-width: 1024px) {
    .contact h2 {
        font-size: 2.5rem;
    }

    .contact-info h3,
    .newsletter h3 {
        font-size: 1.8rem;
    }


}



@media (max-width: 768px) {

    .contact {
        padding: 3rem 0;
    }

    .contact-info {
        padding: 2rem;
        margin: 0 1rem;
    }

    .contact-info h2 {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }

    .contact-info>p {
        font-size: 1.1rem;
        padding: 0 1rem;
    }

    .contact-info h3 {
        font-size: 1.5rem;
        padding-left: 1.5rem;
    }

    .contact-info h3::before {
        width: 4px;
        height: 30px;
    }

    .contact-info p {
        font-size: 1rem;
        padding-left: 1.5rem;
    }

    .contact-info .btn-primary {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
        max-width: 250px;
    }

    .newsletter {
        padding: 2rem;
        margin: 0 1rem;
    }

    .newsletter h3 {
        font-size: 1.5rem;
    }

    .newsletter p {
        font-size: 1rem;
    }

    .newsletter form {
        max-width: 350px;
    }

    .newsletter input[type="email"] {
        padding: 0.8rem;
        font-size: 0.95rem;
    }

    .newsletter button {
        padding: 0.8rem;
        font-size: 1rem;
    }

    .container {
        padding: 0 1rem;
    }
}



@media (max-width: 560px) {
    .container {
        padding: 0 0.8rem;
    }
}

@media (max-width: 480px) {
    .contact {
        padding: 2rem 0;
    }

    .contact-info {
        padding: 1.5rem;
        margin: 0 0.5rem;
    }

    .contact-info h2 {
        font-size: 1.8rem;
    }

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

    .contact-info h3 {
        font-size: 1.3rem;
        padding-left: 1rem;
    }

    .contact-info p {
        font-size: 0.95rem;
        padding-left: 1rem;
    }

    .contact-info .btn-primary {
        padding: 0.7rem 1.2rem;
        font-size: 0.95rem;
        max-width: 200px;
    }

    .newsletter {
        padding: 1.5rem;
        margin: 0 0.5rem;
    }

    .newsletter h3 {
        font-size: 1.3rem;
    }

    .newsletter p {
        font-size: 0.95rem;
    }

    .newsletter form {
        max-width: 300px;
    }

    .newsletter input[type="email"] {
        padding: 0.7rem;
        font-size: 0.9rem;
    }

    .newsletter button {
        padding: 0.7rem;
        font-size: 0.95rem;
    }


}

/* Print Styles (Consistent with about.css) */
@media print {
    .contact {
        background: white !important;
        padding: 1rem 0;
    }

    .contact::before {
        display: none;
    }

    .contact-info,
    .newsletter {
        box-shadow: none;
        border: 1px solid #ccc;
    }


}

/* High Contrast Mode Support (Consistent with about.css) */
@media (prefers-contrast: high) {

    .contact-info,
    .newsletter {
        background: white;
        border: 2px solid var(--main-green);
    }

    .contact-info h2::after,
    .newsletter h3::before {
        background: var(--main-green);
    }

    .contact-info h3::before {
        background: var(--main-green);
    }

    .newsletter input[type="email"] {
        border-color: var(--main-green);
    }
}

/* Reduced Motion Support (Consistent with about.css) */
@media (prefers-reduced-motion: reduce) {

    .contact-info,
    .contact-info h2,
    .contact-info>p,
    .contact-info h3,
    .contact-info p,
    .newsletter,
    .newsletter h3,
    .newsletter p,
    #newsletter-msg {
        animation: none;
    }

    .contact-info:hover,
    .newsletter:hover,
    .contact-info .btn-primary:hover,
    .newsletter button:hover {
        transform: none;
    }
}

/* Careers Section */
.careers {
    padding: 4rem 0;
    background: white;
}

.careers h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    color: var(--main-green);
    text-align: center;
    margin-bottom: 1rem;
    font-weight: 700;
    position: relative;
}

.careers h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--main-green), var(--accent-brown));
    border-radius: 2px;
}

.careers-intro {
    font-size: 1.2rem;
    line-height: 1.7;
    color: var(--text-dark);
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem auto;
    opacity: 0.9;
}

/* Job Posting */
.job-posting {
    background: linear-gradient(135deg, white 0%, #f8fcf8 100%);
    border: 2px solid rgba(56, 102, 65, 0.1);
    border-radius: var(--radius);
    box-shadow: 0 8px 30px rgba(56, 102, 65, 0.12);
    overflow: hidden;
    margin-top: 2rem;
}

.job-header {
    background: linear-gradient(135deg, var(--main-green) 0%, var(--accent-brown) 100%);
    color: white;
    padding: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.job-title-section h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin: 0 0 1rem 0;
    font-weight: 700;
}

.job-meta {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.job-meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    opacity: 0.9;
}

.job-meta i {
    font-size: 1rem;
}

.job-apply .btn-primary {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.job-apply .btn-primary:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

/* Job Content */
.job-content {
    padding: 2.5rem;
}

.job-section {
    margin-bottom: 2.5rem;
}

.job-section:last-child {
    margin-bottom: 0;
}

.job-section h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: var(--main-green);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-weight: 600;
}

.job-section h4 i {
    color: var(--accent-brown);
    font-size: 1.2rem;
}

.job-section p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.job-section a {
    color: var(--accent-brown);
    text-decoration: none;
    font-weight: 600;
}

.job-section a:hover {
    text-decoration: underline;
}

/* Responsibilities Grid */
.responsibilities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.responsibility-category {
    background: rgba(167, 201, 87, 0.05);
    border: 1px solid rgba(56, 102, 65, 0.1);
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.responsibility-category:hover {
    background: rgba(167, 201, 87, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(56, 102, 65, 0.1);
}

.responsibility-category h5 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: var(--main-green);
    margin-bottom: 1rem;
    font-weight: 600;
}

.responsibility-category ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.responsibility-category li {
    position: relative;
    padding: 0.5rem 0 0.5rem 1.5rem;
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-dark);
}

.responsibility-category li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent-brown);
    font-weight: bold;
    font-size: 1.2rem;
}

/* Qualifications and Traits Lists */
.qualifications-list,
.traits-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.qualifications-list li,
.traits-list li {
    position: relative;
    padding: 0.8rem 0 0.8rem 2rem;
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-dark);
    border-bottom: 1px solid rgba(56, 102, 65, 0.05);
}

.qualifications-list li:last-child,
.traits-list li:last-child {
    border-bottom: none;
}

.qualifications-list li::before,
.traits-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--main-green);
    font-weight: bold;
    font-size: 1.1rem;
}

/* Responsive Design for Careers */
@media (max-width: 768px) {
    .careers {
        padding: 3rem 0;
    }

    .careers h2 {
        font-size: 2.2rem;
    }

    .careers-intro {
        font-size: 1.1rem;
        padding: 0 1rem;
    }

    .job-header {
        flex-direction: column;
        align-items: flex-start;
        padding: 1.5rem;
    }

    .job-title-section h3 {
        font-size: 1.6rem;
    }

    .job-meta {
        gap: 1rem;
        margin-bottom: 1rem;
    }

    .job-content {
        padding: 1.5rem;
    }

    .responsibilities-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .responsibility-category {
        padding: 1.2rem;
    }

    .job-section h4 {
        font-size: 1.2rem;
    }

    .job-section p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .careers h2 {
        font-size: 1.8rem;
    }

    .job-header {
        padding: 1.2rem;
    }

    .job-title-section h3 {
        font-size: 1.4rem;
    }

    .job-meta {
        flex-direction: column;
        gap: 0.5rem;
    }

    .job-content {
        padding: 1.2rem;
    }

    .responsibility-category {
        padding: 1rem;
    }

    .qualifications-list li,
    .traits-list li {
        padding: 0.6rem 0 0.6rem 1.5rem;
        font-size: 0.95rem;
    }
}