/* style/user-community-bug-report-feedback.css */

/* Base Styles */
.page-user-community-bug-report-feedback {
    font-family: 'Arial', sans-serif;
    color: #333333; /* Dark gray for good contrast on light backgrounds */
    line-height: 1.6;
    background-color: #f8f9fa; /* Light background */
}

.page-user-community-bug-report-feedback__section {
    max-width: 1200px;
    margin: 40px auto;
    padding: 20px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.page-user-community-bug-report-feedback__section-title {
    font-size: 2.5em;
    color: #007bff; /* Main brand color */
    text-align: center;
    margin-bottom: 20px;
    font-weight: bold;
}

.page-user-community-bug-report-feedback__section-description {
    font-size: 1.1em;
    text-align: center;
    margin-bottom: 30px;
    color: #555555;
}

/* Hero Section */
.page-user-community-bug-report-feedback__hero {
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%); /* Darker blue gradient */
    color: #ffffff;
    padding: 80px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 40px;
}

.page-user-community-bug-report-feedback__hero-content {
    max-width: 800px;
}

.page-user-community-bug-report-feedback__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    line-height: 1.2;
    color: #ffffff;
}

.page-user-community-bug-report-feedback__hero-description {
    font-size: 1.3em;
    margin-bottom: 30px;
    color: #e0e0e0;
}

.page-user-community-bug-report-feedback__cta-button {
    display: inline-block;
    background-color: #ffc107; /* Auxiliary brand color */
    color: #333333; /* Dark text for contrast */
    padding: 15px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.page-user-community-bug-report-feedback__cta-button:hover {
    background-color: #e0a800; /* Darker gold on hover */
    transform: translateY(-2px);
}

.page-user-community-bug-report-feedback__hero-image-wrapper {
    margin-top: 40px;
    max-width: 600px;
    width: 100%;
}

.page-user-community-bug-report-feedback__hero-image {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

/* Feedback Types Section */
.page-user-community-bug-report-feedback__feedback-types {
    text-align: center;
}

.page-user-community-bug-report-feedback__type-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-user-community-bug-report-feedback__type-card {
    background-color: #f0f8ff; /* Light blue background */
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-user-community-bug-report-feedback__type-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

.page-user-community-bug-report-feedback__type-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.page-user-community-bug-report-feedback__type-heading {
    font-size: 1.5em;
    color: #007bff;
    margin-bottom: 15px;
}

.page-user-community-bug-report-feedback__type-card p {
    color: #555555;
    font-size: 1em;
}

/* Feedback Form Section */
.page-user-community-bug-report-feedback__feedback-form-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.page-user-community-bug-report-feedback__feedback-form {
    width: 100%;
    max-width: 700px;
    padding: 40px;
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    z-index: 1;
    margin-top: 20px;
}

.page-user-community-bug-report-feedback__form-group {
    margin-bottom: 20px;
}

.page-user-community-bug-report-feedback__form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: #333333;
}

.page-user-community-bug-report-feedback__form-input,
.page-user-community-bug-report-feedback__form-select,
.page-user-community-bug-report-feedback__form-textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #cccccc;
    border-radius: 6px;
    font-size: 1em;
    box-sizing: border-box;
    transition: border-color 0.3s ease;
}

.page-user-community-bug-report-feedback__form-input:focus,
.page-user-community-bug-report-feedback__form-select:focus,
.page-user-community-bug-report-feedback__form-textarea:focus {
    border-color: #007bff;
    outline: none;
}

.page-user-community-bug-report-feedback__form-textarea {
    resize: vertical;
}

.page-user-community-bug-report-feedback__form-file-input {
    padding: 10px 0;
}

.page-user-community-bug-report-feedback__form-help-text {
    font-size: 0.9em;
    color: #777777;
    margin-top: 5px;
    display: block;
}

.page-user-community-bug-report-feedback__submit-button {
    background-color: #007bff; /* Main brand color */
    color: #ffffff;
    padding: 15px 25px;
    border: none;
    border-radius: 6px;
    font-size: 1.1em;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
    width: 100%;
}

.page-user-community-bug-report-feedback__submit-button:hover {
    background-color: #0056b3; /* Darker blue on hover */
    transform: translateY(-2px);
}

.page-user-community-bug-report-feedback__form-illustration {
    position: absolute;
    right: -100px; /* Adjust as needed */
    top: 50%;
    transform: translateY(-50%);
    width: 400px; /* Adjust size */
    height: auto;
    opacity: 0.1; /* Subtle background image */
    z-index: 0;
    pointer-events: none;
}

/* Process Section */
.page-user-community-bug-report-feedback__process {
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-user-community-bug-report-feedback__process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
    z-index: 1;
    position: relative;
}

.page-user-community-bug-report-feedback__step-card {
    background-color: #e6f7ff; /* Lighter blue */
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.page-user-community-bug-report-feedback__step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #ffc107; /* Auxiliary color */
    color: #333333; /* Dark text */
    font-size: 1.8em;
    font-weight: bold;
    margin-bottom: 20px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.page-user-community-bug-report-feedback__step-heading {
    font-size: 1.4em;
    color: #007bff;
    margin-bottom: 10px;
}

.page-user-community-bug-report-feedback__step-card p {
    color: #555555;
}

.page-user-community-bug-report-feedback__process-illustration {
    position: absolute;
    left: -100px; /* Adjust as needed */
    top: 50%;
    transform: translateY(-50%);
    width: 400px;
    height: auto;
    opacity: 0.1;
    z-index: 0;
    pointer-events: none;
}

/* Commitment Section */
.page-user-community-bug-report-feedback__commitment-list {
    list-style: none;
    padding: 0;
    max-width: 800px;
    margin: 30px auto;
}

.page-user-community-bug-report-feedback__commitment-list li {
    background-color: #f9f9f9;
    border-left: 5px solid #007bff;
    padding: 15px 20px;
    margin-bottom: 15px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    font-size: 1.1em;
    color: #444444;
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.05);
}

.page-user-community-bug-report-feedback__list-icon {
    color: #28a745; /* Green for success/check */
    font-size: 1.5em;
    margin-right: 15px;
    font-weight: bold;
}

/* FAQ Section */
.page-user-community-bug-report-feedback__faq-item {
    background-color: #f0f8ff;
    padding: 20px;
    margin-bottom: 15px;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
}

.page-user-community-bug-report-feedback__faq-question {
    font-size: 1.3em;
    color: #007bff;
    margin-bottom: 10px;
    cursor: pointer;
    position: relative;
    padding-right: 30px;
}

.page-user-community-bug-report-feedback__faq-question::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 0;
    font-size: 1.2em;
    transition: transform 0.3s ease;
}

.page-user-community-bug-report-feedback__faq-question.active::after {
    content: '-';
    transform: rotate(180deg);
}

.page-user-community-bug-report-feedback__faq-answer {
    font-size: 1em;
    color: #555555;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out, padding 0.5s ease-out;
    padding-top: 0;
}

.page-user-community-bug-report-feedback__faq-answer.active {
    max-height: 200px; /* Adjust as needed for content */
    padding-top: 10px;
}

/* Contact Other Section */
.page-user-community-bug-report-feedback__contact-other {
    text-align: center;
    background-color: #e6f7ff;
    border-left: 5px solid #ffc107;
}

.page-user-community-bug-report-feedback__contact-button {
    display: inline-block;
    background-color: #007bff; /* Main brand color */
    color: #ffffff;
    padding: 15px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    margin-top: 20px;
}

.page-user-community-bug-report-feedback__contact-button:hover {
    background-color: #0056b3; /* Darker blue on hover */
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-user-community-bug-report-feedback__hero-title {
        font-size: 2.8em;
    }
    .page-user-community-bug-report-feedback__hero-description {
        font-size: 1.1em;
    }
    .page-user-community-bug-report-feedback__form-illustration,
    .page-user-community-bug-report-feedback__process-illustration {
        display: none; /* Hide illustrations on smaller screens */
    }
}

@media (max-width: 768px) {
    .page-user-community-bug-report-feedback__section {
        margin: 20px auto;
        padding: 15px;
    }
    .page-user-community-bug-report-feedback__hero {
        padding: 60px 15px;
    }
    .page-user-community-bug-report-feedback__hero-title {
        font-size: 2.2em;
    }
    .page-user-community-bug-report-feedback__section-title {
        font-size: 2em;
    }
    .page-user-community-bug-report-feedback__type-grid {
        grid-template-columns: 1fr;
    }
    .page-user-community-bug-report-feedback__feedback-form {
        padding: 25px;
    }
    .page-user-community-bug-report-feedback__process-steps {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .page-user-community-bug-report-feedback__hero-title {
        font-size: 1.8em;
    }
    .page-user-community-bug-report-feedback__hero-description {
        font-size: 1em;
    }
    .page-user-community-bug-report-feedback__cta-button,
    .page-user-community-bug-report-feedback__submit-button,
    .page-user-community-bug-report-feedback__contact-button {
        padding: 12px 20px;
        font-size: 1em;
    }
    .page-user-community-bug-report-feedback__section-title {
        font-size: 1.8em;
    }
}