﻿/* Suggestions and Feedback Style */

/* Main wrapper */
.community-engagement-body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 15px;
    padding-bottom: 40px;
}

.community-engagement-inputfields-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 15px;
    box-shadow: 0px 4px 4px 0px rgb(120, 120, 120, 0.25);
    padding: clamp(30px, 4vw, 60px) clamp(20px, 6vw, 100px) clamp(20px, 3vw, 40px) clamp(20px, 6vw, 100px);
}

    .community-engagement-inputfields-content h1 {
        font-size: clamp(18px, 2.4vw, 32px);
        color: #3A6F43;
        font-family: 'Graphie-bold';
        text-align: center;
    }

    .community-engagement-inputfields-content p {
        font-size: clamp(14px, 1.6vw, 20px);
        color: #00301C;
        font-family: 'Graphie-Light';
        text-align: center;
    }

/* Wrapper (background of the section) */
.Suggestions-and-Feedback-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 32px 16px 48px;
    background: #ffffff;
}

/* Main card */
.Suggestions-and-Feedback-card {
    width: min(1110px, 100%);
    background: #ffffff;
    border-radius: 28px;
    border: 1px solid #3A6F43;
    box-shadow: 0 18px 40px rgba(6, 69, 36, 0.04);
    padding: 40px 80px;
    box-sizing: border-box;
    position: relative;
    overflow: hidden;
}

    /* Rounded corners like the screenshot */
    .Suggestions-and-Feedback-card::before,
    .Suggestions-and-Feedback-card::after {
        content: "";
        position: absolute;
        inset: 0;
        border-radius: 28px;
        pointer-events: none;
    }

/* Section header */
.Suggestions-and-Feedback-section-head {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 22px;
}

    .Suggestions-and-Feedback-section-head h2 {
        font-size: 24px;
        color: #3A6F43;
        font-family: 'Graphie-Bold';
        padding-left: 12px;
        padding-right: 5px;
        padding-bottom: 10px;
        width: fit-content;
        border-bottom: 2px solid #3A6F43;
    }

/* Grid for personal details */
.Suggestions-and-Feedback-grid-2 {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px 32px;
}

.Suggestions-and-Feedback-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

    .Suggestions-and-Feedback-field label {
        font-size: 16px;
        color: #7B7B7B;
        font-family: 'Graphie-Light';
    }

    .Suggestions-and-Feedback-field input,
    .Suggestions-and-Feedback-field textarea {
        border: 1px solid #3A6F43;
        border-radius: 999px;
        padding: 12px 16px;
        font-size: 16px;
        outline: none;
        transition: 0.2s ease;
        background: #fff;
        font-family: inherit;
    }

    .Suggestions-and-Feedback-field textarea {
        border-radius: 16px;
        min-height: 140px;
        resize: vertical;
        padding: 14px 16px;
    }

        /* Placeholder style */
        .Suggestions-and-Feedback-field input::placeholder,
        .Suggestions-and-Feedback-field textarea::placeholder {
            color: #7a8f80;
        }

        .Suggestions-and-Feedback-field input:focus,
        .Suggestions-and-Feedback-field textarea:focus {
            border-color: #14512f;
            box-shadow: 0 0 0 3px rgba(20, 81, 47, 0.1);
        }

/* Full width fields */
.Suggestions-and-Feedback-full {
    width: 100%;
    margin-bottom: 14px;
}

/* Spacing between sections */
.Suggestions-and-Feedback-mt {
    margin-top: 30px;
}

/* Helper text */
.Suggestions-and-Feedback-helper {
    font-size: 16px;
    color: #00301C;
    margin-bottom: 16px;
    line-height: 1.5;
    font-family: 'Graphie-Light';
}

/* Upload box */
.Suggestions-and-Feedback-upload-box {
    border: 2px dashed #1c6639;
    border-radius: 16px;
    padding: 28px 20px;
    max-width: 400px;
    text-align: center;
    background: rgba(28, 102, 57, 0.03);
    position: relative;
}

.Suggestions-and-Feedback-upload-icon span {
    font-size: 28px;
    display: inline-block;
    margin-bottom: 8px;
    color: #1c6639;
}

    .Suggestions-and-Feedback-upload-icon span img {
        width: 36px;
        height: auto;
    }

.Suggestions-and-Feedback-upload-text {
    font-size: 14px;
    color: #3a4e42;
    margin-bottom: 4px;
}

.Suggestions-and-Feedback-upload-link {
    background: none;
    border: none;
    color: #0f6d42;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    padding: 0;
}

.Suggestions-and-Feedback-upload-note {
    font-size: 14px;
    color: #5B5B5B;
}

.Suggestions-and-Feedback-upload-input {
    position: absolute;
    inset: 0;
    opacity: 0;
    cursor: pointer;
}

/* Section line decorations */
.Suggestions-and-Feedback-section-line {
    /* You can add decorative line styling if needed */
}

.Suggestions-and-Feedback-section-line2 {
    /* Different line style for optional section */
}

/* Submit button */
.Suggestions-and-Feedback-actions {
    margin-top: 32px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.button-style1 {
    text-decoration: none;
    background-color: #3A6F43;
    border-radius: 33px;
    color: white;
    padding: 8px 16px;
    font-size: 16px;
    font-family: 'Graphie-semibold';
    border: 0px;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

    .button-style1:hover {
        background-color: #14512f;
    }

/* Validation styles */
.field-validation-error {
    color: #f44336;
    font-size: 0.85rem;
    margin-top: 0.25rem;
    display: block;
}

.input-validation-error {
    border-color: #f44336 !important;
}

/* Responsive */
@media (max-width: 820px) {
    .Suggestions-and-Feedback-card {
        padding: 28px 20px 32px;
    }

    .Suggestions-and-Feedback-grid-2 {
        grid-template-columns: 1fr;
    }

    .Suggestions-and-Feedback-upload-box {
        max-width: 100%;
    }
}
