/* Custom Fonts */
@font-face {
    font-family: 'Baskerville Bold';
    src: url('/assets/fonts/Baskerville Bold/Baskerville Bold.otf') format('opentype');
    font-weight: bold;
    font-style: normal;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

main {
    flex: 1;
}

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

/* Navigation */
.navbar {
    background: transparent;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: none;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar-solid {
    background: #fff;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar-solid .nav-link {
    color: #333;
}

.navbar-solid .nav-link:hover {
    color: #666;
}

.navbar-solid .nav-link.active {
    color: #2c5530;
}

.navbar-solid .nav-link.active::after {
    background: #2c5530;
}

.navbar-solid .bar {
    background: #333;
}

.navbar.scrolled {
    background: #fff;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.logo-img {
    height: 40px;
    width: auto;
    transition: opacity 0.3s ease;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: #fff;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.navbar.scrolled .nav-link {
    color: #333;
}

.nav-link:hover {
    color: rgba(255, 255, 255, 0.8);
}

.nav-link.active {
    color: #fff;
}

.navbar.scrolled .nav-link:hover {
    color: #666;
}

.navbar.scrolled .nav-link.active {
    color: #333;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #fff;
    transition: background 0.3s ease;
}

.navbar.scrolled .nav-link.active::after {
    background: #2c5530;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: #fff;
    margin: 3px 0;
    transition: 0.3s;
}

.navbar.scrolled .bar {
    background: #333;
}

/* Mobile menu open — force solid navbar so links are visible */
.navbar.menu-open {
    background: #fff;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar.menu-open .nav-link {
    color: #333;
}

.navbar.menu-open .nav-link:hover {
    color: #666;
}

.navbar.menu-open .nav-link.active {
    color: #2c5530;
}

.navbar.menu-open .nav-link.active::after {
    background: #2c5530;
}

.navbar.menu-open .bar {
    background: #333;
}

/* Hero Section */
.hero {
    color: white;
    padding: 120px 0 80px;
    display: flex;
    align-items: center;
    min-height: 100vh;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.hero h1.mission-statement {
    font-family: 'Baskerville Bold', serif;
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    line-height: 1.2;
    color: white;
    background: rgba(255, 255, 255, 0.091);
    padding: 2rem 3rem;
    border-radius: 15px;
    display: inline-block;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: #2c5530;
    color: #fff;
}

.btn-primary:hover {
    background: #fff;
    color: #2c5530;
    border-color: #2c5530;
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: #fff;
    border-color: #fff;
}

.btn-secondary:hover {
    background: #fff;
    color: #2c5530;
    transform: translateY(-2px);
}


/* Section Styles */
section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    color: #2c5530;
    margin-bottom: 1rem;
    font-weight: 700;
}

.section-header p {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* About Section */
.about {
    background: #f8f9fa;
    position: relative;
    z-index: 2;
}

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

.about-text h3 {
    color: #2c5530;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.about-text p {
    margin-bottom: 2rem;
    color: #666;
    line-height: 1.7;
}

.values-list {
    list-style: none;
}

.values-list li {
    display: flex;
    align-items: center;
    margin-bottom: 0.8rem;
    color: #666;
}

.values-list i {
    color: #2c5530;
    margin-right: 0.8rem;
    font-size: 1.1rem;
}

.about-facts {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.fact-item {
    background: #fff;
    padding: 1.5rem;
    border-radius: 15px;
    border-left: 4px solid #2c5530;
    text-align: left;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.fact-item h3 {
    color: #2c5530;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.fact-image {
    width: 100%;
    max-width: 150px;
    height: auto;
    border-radius: 10px;
    margin-bottom: 1rem;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    display: block;
}

.fact-image[src*="grady_truck.jpg"] {
    height: 140px;
    object-fit: cover;
    object-position: top;
}

.fact-image[src*="old_store.jpg"] {
    max-width: 100%;
    max-height: 200px;
    width: auto;
    height: auto;
    object-fit: contain;
    object-position: center;
}

.fact-item p {
    color: #666;
    line-height: 1.6;
    font-size: 1rem;
    margin: 0;
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.service-card {
    background: #fff;
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.service-image {
    width: 250px;
    height: 250px;
    margin: 0 auto 1.5rem;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.service-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-card:hover .service-img {
    transform: scale(1.05);
}

.service-card h3 {
    color: #2c5530;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.service-card p {
    color: #666;
    line-height: 1.6;
}

/* Contact Section */
.contact {
    background: #f8f9fa;
}

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

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

.contact-item i {
    color: #2c5530;
    font-size: 1.5rem;
    margin-right: 1rem;
    margin-top: 0.2rem;
}

.contact-item h4 {
    color: #2c5530;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.contact-item p {
    color: #666;
    line-height: 1.6;
}

.contact-form {
    background: #fff;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

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

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

/* Employees Page */
.page-hero {
    background: linear-gradient(135deg, #2c5530 0%, #4a7c59 100%);
    color: #fff;
    padding: 6rem 0 3rem;
    margin-top: 70px;
    text-align: center;
}

.hero-title {
    font-family: 'Baskerville Bold', serif;
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto;
}

.employees-section {
    padding: 4rem 0;
    background: #f8fafc;
}

.employees-grid {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.department-section {
    width: 100%;
}

.department-header {
    font-family: 'Baskerville Bold', serif;
    font-size: 2rem;
    color: #1e293b;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 3px solid #2c5530;
    font-weight: 700;
}

.department-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    padding: 1rem;
}

.department-grid-2col {
    grid-template-columns: repeat(2, 1fr);
}

.full-width-employee {
    width: 100%;
    padding: 1rem;
    margin-bottom: 2rem;
}

.full-width-employee .employee-card {
    max-width: 100%;
}

.employee-card {
    background: #fff;
    border-radius: 20px;
    padding: 10px 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.employee-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #2c5530 0%, #4a7c59 100%);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.employee-card:hover::before {
    transform: scaleX(1);
}

.employee-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(44, 85, 48, 0.15);
}

.employee-image-wrapper {
    width: calc(100% - 0px);
    height: 280px;
    margin: 0 0 1.5rem 0;
    border-radius: 12px;
    overflow: hidden;
    background: linear-gradient(135deg, #e5e7eb 0%, #d1d5db 100%);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    position: relative;
}

.employee-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.4s ease;
}

.employee-card:hover .employee-image {
    transform: scale(1.1);
}

.employee-info {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 0 1rem 1rem 1rem;
}

.employee-name {
    font-family: 'Baskerville Bold', serif;
    font-size: 1.5rem;
    color: #1e293b;
    margin: 0 0 0.25rem 0;
    font-weight: 700;
}

.employee-title {
    color: #2c5530;
    font-weight: 600;
    font-size: 0.95rem;
    margin: 0 0 0.5rem 0;
}

.employee-bio {
    color: #64748b;
    line-height: 1.7;
    font-size: 0.95rem;
    margin: 0;
}

/* Mobile responsive */
@media (max-width: 1200px) {
    .department-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .department-grid-2col {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .department-grid,
    .department-grid-2col {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .employee-card {
        padding: 10px;
    }

    .employee-image-wrapper {
        width: 100%;
        height: 250px;
    }

    .department-header {
        font-size: 1.5rem;
    }

    .full-width-employee {
        padding: 0.5rem;
    }
}

.loading-spinner,
.empty-state,
.error-state {
    grid-column: 1 / -1;
    text-align: center;
    padding: 4rem 2rem;
    color: #64748b;
}

.loading-spinner i,
.empty-state i,
.error-state i {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #2c5530;
}

.loading-spinner i {
    color: #2c5530;
}

.error-state i {
    color: #dc2626;
}

.loading-spinner p,
.empty-state p,
.error-state p {
    font-size: 1.1rem;
}

/* Footer */
.footer {
    background: #2c5530;
    color: #fff;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    font-weight: 600;
}

.footer-section p {
    color: #b8c5ba;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #b8c5ba;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #fff;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #fff;
    color: #2c5530;
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1rem;
    text-align: center;
    color: #b8c5ba;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: #fff;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        margin: 1rem 0;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .hero h1.mission-statement {
        font-size: 2.5rem;
    }

    .hero-buttons {
        justify-content: center;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-facts {
        padding: 1.5rem;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero h1.mission-statement {
        font-size: 2rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .about-facts {
        padding: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 300px;
    }
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Employment Page Specific Styles */
.employment-hero {
    background: linear-gradient(135deg, #2c5530 0%, #4a7c59 100%);
    color: white;
    padding: 120px 0 80px;
    text-align: center;
}

.employment-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.employment-hero p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* Why Work Section */
.why-work {
    background: #f8f9fa;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.benefit-card {
    background: #fff;
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #2c5530, #4a7c59);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.benefit-icon i {
    font-size: 2rem;
    color: #fff;
}

.benefit-card h3 {
    color: #2c5530;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.benefit-card p {
    color: #666;
    line-height: 1.6;
}

/* Positions Section */
.positions {
    padding: 80px 0;
}

.positions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 450px), 1fr));
    gap: 2rem;
    justify-items: center;
}

.positions-grid > * {
    width: 100%;
    max-width: 580px;
}

.position-card {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.position-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.position-header {
    background: linear-gradient(135deg, #2c5530, #4a7c59);
    color: white;
    padding: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.position-header h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0;
}

.position-type {
    background: rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

.position-details {
    padding: 1.5rem 2rem;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #666;
    font-size: 0.9rem;
}

.detail-item i {
    color: #2c5530;
    width: 16px;
}

.position-description {
    padding: 2rem;
}

.position-description p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.position-description h4 {
    color: #2c5530;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.position-description ul {
    list-style: none;
    padding: 0;
}

.position-description ul li {
    color: #666;
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.position-description ul li::before {
    content: '•';
    color: #2c5530;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.position-actions {
    padding: 1.5rem 2rem;
    display: flex;
    gap: 1rem;
    background: #f8f9fa;
}

.position-actions .btn {
    flex: 1;
    text-align: center;
    padding: 12px 20px;
    font-size: 0.9rem;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: #fff;
    margin: 2% auto;
    padding: 0;
    border-radius: 20px;
    width: 90%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-content h2 {
    background: linear-gradient(135deg, #2c5530, #4a7c59);
    color: white;
    padding: 2rem;
    margin: 0;
    border-radius: 20px 20px 0 0;
    font-size: 1.5rem;
}

.close {
    color: white;
    float: right;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    line-height: 1;
    margin-top: -0.5rem;
}

.close:hover {
    opacity: 0.7;
}

#applicationForm {
    padding: 2rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #2c5530;
    font-weight: 500;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

.checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 0.5rem 0;
}

.checkbox-group label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    color: #666;
    font-weight: normal;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin: 0;
}

.file-upload {
    border: 2px dashed #e9ecef;
    border-radius: 8px;
    padding: 2rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.file-upload:hover {
    border-color: #2c5530;
    background: #f8f9fa;
}

.file-hint {
    color: #666;
    margin-top: 0.5rem;
    font-size: 0.9rem;
}

.checkbox-container {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    cursor: pointer;
    color: #666;
    font-weight: normal;
}

.checkbox-container input[type="checkbox"] {
    width: auto;
    margin-top: 0.3rem;
}

.no-positions {
    text-align: center;
    padding: 3rem;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.no-positions h3 {
    color: #2c5530;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.no-positions p {
    color: #666;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

.loading-positions {
    text-align: center;
    padding: 3rem;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.loading-positions i {
    font-size: 2rem;
    color: #2c5530;
    margin-bottom: 1rem;
}

.loading-positions p {
    color: #666;
    font-size: 1.1rem;
}

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

.form-group input[readonly] {
    background-color: #f8f9fa;
    color: #666;
}

.form-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid #e9ecef;
}

.form-actions .btn {
    flex: 1;
    text-align: center;
}

/* Responsive Design for Employment Page */
@media (max-width: 768px) {
    .employment-hero h1 {
        font-size: 2.5rem;
    }
    
    .positions-grid {
        grid-template-columns: 1fr;
    }
    
    .position-details {
        flex-direction: column;
        gap: 1rem;
    }
    
    .position-actions {
        flex-direction: column;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .modal-content {
        width: 95%;
        margin: 5% auto;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .employment-hero h1 {
        font-size: 2rem;
    }
    
    .position-header {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .position-details {
        padding: 1rem;
    }
    
    .position-description {
        padding: 1rem;
    }
    
    .position-actions {
        padding: 1rem;
    }
}

/* Giving Page Specific Styles */
.giving-hero {
    background: linear-gradient(135deg, #2c5530 0%, #4a7c59 100%);
    color: white;
    padding: 120px 0 80px;
    text-align: center;
}

.giving-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.giving-hero p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 800px;
    margin: 0 auto;
}

/* Mission Statement Section */
.mission-statement {
    padding: 80px 0;
}

.mission-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.mission-text h2 {
    color: #2c5530;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.mission-text p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.mission-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.mission-placeholder {
    background: linear-gradient(135deg, #2c5530, #4a7c59);
    border-radius: 20px;
    padding: 4rem;
    text-align: center;
    color: white;
    box-shadow: 0 20px 40px rgba(44, 85, 48, 0.3);
}

.mission-placeholder i {
    font-size: 4rem;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.mission-placeholder p {
    font-size: 1.2rem;
    opacity: 0.9;
    margin: 0;
}

/* Causes Section */
.causes {
    background: #f8f9fa;
    padding: 80px 0;
}

.causes-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.cause-card {
    background: #fff;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.cause-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.cause-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #2c5530, #4a7c59);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.cause-icon i {
    font-size: 2rem;
    color: #fff;
}

.cause-card h3 {
    color: #2c5530;
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.organization-links {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.organization-links a {
    color: #2c5530;
    font-size: 1.2rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.organization-links a:hover {
    color: #4a7c59;
    transform: translateY(-2px);
}

.cause-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.cause-details {
    margin-top: 1.5rem;
}

.cause-details .detail-item {
    display: flex;
    align-items: center;
    margin-bottom: 0.8rem;
    color: #666;
    font-size: 0.95rem;
}

.cause-details .detail-item i {
    color: #2c5530;
    margin-right: 0.8rem;
    font-size: 1rem;
}

/* Impact Section */
.impact {
    padding: 80px 0;
    background: linear-gradient(135deg, #2c5530 0%, #4a7c59 100%);
    color: white;
}

.impact .section-header h2,
.impact .section-header p {
    color: white;
}

.impact-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.impact-stat {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.impact-stat .stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #fff;
}

.impact-stat .stat-label {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    font-size: 1rem;
}

/* Get Involved Section */
.get-involved {
    background: #f8f9fa;
    padding: 80px 0;
}

.involvement-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.involvement-card {
    background: #fff;
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.involvement-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.involvement-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #2c5530, #4a7c59);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.involvement-icon i {
    font-size: 2rem;
    color: #fff;
}

.involvement-card h3 {
    color: #2c5530;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.involvement-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

/* Giving Contact Section */
.giving-contact {
    padding: 80px 0;
}

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

.giving-contact .contact-info h2 {
    color: #2c5530;
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.giving-contact .contact-info p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.contact-methods {
    margin-top: 2rem;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.contact-method i {
    color: #2c5530;
    font-size: 1.5rem;
    margin-right: 1rem;
    margin-top: 0.2rem;
}

.contact-method h4 {
    color: #2c5530;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.contact-method p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.giving-contact .contact-form {
    background: #fff;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.giving-contact .contact-form h3 {
    color: #2c5530;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.giving-contact .contact-form select {
    width: 100%;
    padding: 12px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: inherit;
    background-color: #fff;
}

.giving-contact .contact-form select:focus {
    outline: none;
    border-color: #2c5530;
}

/* Responsive Design for Giving Page */
@media (max-width: 768px) {
    .giving-hero h1 {
        font-size: 2.5rem;
    }
    
    .mission-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .mission-text h2 {
        font-size: 2rem;
    }
    
    .causes-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
    }
    
    .impact-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .involvement-options {
        grid-template-columns: 1fr;
    }
    
    .giving-contact .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    .giving-hero h1 {
        font-size: 2rem;
    }
    
    .mission-text h2 {
        font-size: 1.8rem;
    }
    
    .impact-stats {
        grid-template-columns: 1fr;
    }
    
    .cause-card,
    .involvement-card {
        padding: 2rem;
    }
    
    .giving-contact .contact-form {
        padding: 2rem;
    }
}

/* Toast Notifications */
.toast-container {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10000;
    display: flex;
    flex-direction: column;
    align-items: center;
    pointer-events: none;
    padding-top: 1rem;
}

.toast {
    pointer-events: auto;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    border-radius: 10px;
    color: white;
    font-size: 0.95rem;
    font-weight: 500;
    line-height: 1.4;
    max-width: 500px;
    width: calc(100% - 2rem);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    transform: translateY(-120%);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    margin-bottom: 0.5rem;
}

.toast.show {
    transform: translateY(0);
    opacity: 1;
}

.toast.toast-success {
    background: #16a34a;
}

.toast.toast-error {
    background: #dc2626;
}

.toast.toast-warning {
    background: #d97706;
}

.toast i {
    font-size: 1.2rem;
    flex-shrink: 0;
}

.toast .toast-message {
    flex: 1;
}

.toast .toast-close {
    background: none;
    border: none;
    color: rgba(255,255,255,0.7);
    cursor: pointer;
    font-size: 1.2rem;
    padding: 0 0 0 0.5rem;
    flex-shrink: 0;
    transition: color 0.2s;
}

.toast .toast-close:hover {
    color: white;
}

