#al-get-involved {
    font-family: 'Nunito', sans-serif;
}

/* Wider layout for get-involved */
#al-get-involved {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 30px;
}

/* Hero section */
.al-hero {
    position: relative;
    background: url('/wp-content/plugins/amelias-light-interest-form/assets/img/heart-background.png') center center repeat;
    background-size: cover;
    padding: 80px 30px 60px;
    border-radius: 24px;
    text-align: center;
    max-width: 1100px;
    margin: 0 auto 60px;
    overflow: hidden;
    z-index: 1;
}

.al-hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-color: rgba(255, 255, 255, 0.8);
    z-index: 0;
}

.al-hero > * {
    position: relative;
    z-index: 1;
}

.al-hero h1 {
    color: #5c247a;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.al-hero p {
    font-size: 1.125rem;
    line-height: 1.6;
    color: #444;
    max-width: 800px;
    margin: 0 auto 30px;
}

.al-facts {
    display: flex;
    flex-direction: column;
    gap: 12px;
    font-size: 16px;
    color: #333;
    margin-bottom: 30px;
}

.al-facts strong {
    color: #5c247a;
}

.al-downloads {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.al-downloads a {
    padding: 14px 30px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
    font-size: 17px;
    color: white;
    border-radius: 40px;
    font-weight: bold;
    text-decoration: none;
    transition: background 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.al-downloads a:hover {
    color: #ffffff;
}

.al-downloads a.trustee {
    background: #ed2e8c; /* pink */
}

.al-downloads a.trustee:hover {
    background: #c9227b;
}

.al-downloads a.volunteer {
    background: #5c247a; /* purple */
}

.al-downloads a.volunteer:hover {
    background: #441c5c;
}

.al-downloads a i {
    font-size: 18px;
}


/* Form Wrapper */
.al-form-heading {
    font-size: 28px;
    font-weight: bold;
    text-align: center;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #5c247a;
}

#al-interest-form {
    max-width: 600px;
    margin: 60px auto;
    padding: 30px;
    background: #ffeaf4;
    border-radius: 20px;
    box-shadow: 0 0 10px rgba(237, 46, 140, 0.15);
    font-family: 'Nunito', 'Comic Sans MS', cursive, sans-serif;
    font-size: 16px;
    color: #5c247a;
}

/* Section Labels */
#al-interest-form p {
    margin-bottom: 20px;
}

#al-interest-form p label {
    font-weight: bold;
    font-size: 16px;
    color: #5c247a;
    margin-bottom: 8px;
    display: block;
}

/* Inputs and Textareas */
#al-interest-form input[type="text"],
#al-interest-form input[type="email"],
#al-interest-form textarea {
    width: 100%;
    padding: 12px 14px;
    border: 2px solid #fdd4eb;
    border-radius: 10px;
    font-size: 15px;
    background-color: #fff;
    transition: border 0.3s;
    margin-top: 6px;
    box-sizing: border-box;
}

#al-interest-form input[type="text"]:focus,
#al-interest-form input[type="email"]:focus,
#al-interest-form textarea:focus {
    border-color: #ed2e8c;
    outline: none;
}

/* Checkboxes */
#al-interest-form .al-checkbox-wrapper {
    margin-bottom: 20px;
}

#al-interest-form .al-checkbox-group {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

#al-interest-form input[type="checkbox"] {
    appearance: checkbox;
    -webkit-appearance: checkbox;
    -moz-appearance: checkbox;
    width: 18px;
    height: 18px;
    margin-right: 10px;
    vertical-align: middle;
    accent-color: #ed2e8c;
    cursor: pointer;
    border: 1px solid #999;
    background: white;
    box-sizing: border-box;
    position: relative;
}

#al-interest-form input[type="checkbox"]::before,
#al-interest-form input[type="checkbox"]::after {
    display: none !important;
}

#al-interest-form .al-checkbox-group label {
    color: #5c247a;
    font-weight: 500;
    font-size: 16px;
    cursor: pointer;
    margin: 0;
}

/* Submit Button */
#al-interest-form button[type="submit"] {
    background: #ed2e8c;
    color: #fff;
    padding: 12px 28px;
    font-size: 16px;
    font-weight: bold;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: background 0.3s ease;
    display: inline-block;
    margin-top: 10px;
}

#al-interest-form button[type="submit"]:hover {
    background: #c9227b;
}

/* Loader Styles */
#al-loader-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 20px;
    text-align: center;
}

#al-loader {
    width: 40px;
    height: 40px;
    border: 6px solid #ffe3f0;
    border-top: 6px solid #ed2e8c;
    border-radius: 50%;
    animation: al-spin 1s linear infinite;
}

@keyframes al-spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.al-loader-text {
    color: #5c247a;
    font-weight: bold;
    margin-top: 10px;
    font-size: 15px;
}

/* Success/Error Message */
#al-response {
    margin-top: 20px;
    font-weight: bold;
    text-align: center;
    color: #5c247a;
}

/* Responsive */
@media (max-width: 600px) {
    #al-interest-form {
        padding: 20px;
        margin: 30px 10px;
    }

    #al-interest-form input,
    #al-interest-form textarea,
    #al-interest-form button {
        font-size: 15px;
    }
}

/* Thank You Page Styling */
.al-thank-you-wrapper {
    background: #fff0f6 url('/wp-content/plugins/amelias-light/assets/heart-texture.png') repeat top center;
    background-size: cover;
    padding: 80px 30px;
    border-radius: 20px;
    box-shadow: 0 0 10px rgba(237, 46, 140, 0.15);
    max-width: 750px;
    margin: 80px auto;
    text-align: center;
    font-family: 'Nunito', 'Comic Sans MS', cursive, sans-serif;
    color: #5c247a;
}

.al-thank-you-wrapper h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #ed2e8c;
    font-weight: 800;
}

.al-thank-you-wrapper p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 16px;
    color: #5c247a;
}

.al-home-btn {
    display: inline-block;
    margin-top: 40px;
    background: #ed2e8c;
    color: #fff;
    padding: 14px 32px;
    border-radius: 40px;
    font-size: 16px;
    font-weight: bold;
    text-decoration: none;
    transition: background 0.3s ease;
}

.al-home-btn:hover {
    background: #c9227b;
    color: #ffffff;
}

/* Responsive tweaks */
@media (max-width: 600px) {
    .al-thank-you-wrapper {
        padding: 40px 20px;
        margin: 40px 15px;
    }

    .al-thank-you-wrapper h1 {
        font-size: 32px;
    }

    .al-home-btn {
        padding: 12px 24px;
        font-size: 15px;
    }
}

