/* Quiz Results Styles */

.results-container {
    background-color: #E8E8D6;
    border-radius: 18px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    text-align: center;
    position: relative;
    display: none;
}

.results-container.show {
    display: block;
    animation: fadeIn 0.5s ease forwards;
}

.results-header {
    margin-bottom: 30px;
}

.results-header h2 {
    font-family: 'Paytone One', sans-serif;
    font-size: 2.2rem;
    color: #000000;
    margin-bottom: 15px;
}

.results-header p {
    font-family: 'Minion Pro', serif;
    font-size: 1.2rem;
    color: #444;
}

.persona-container {
    background-color: #fff;
    border-radius: 15px;
    padding: 30px;
    margin: 20px 0 40px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.persona-name {
    font-family: 'Paytone One', sans-serif;
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.persona-description {
    font-family: 'Minion Pro', serif;
    font-size: 1.1rem;
    color: #000000;
    margin-bottom: 20px;
    line-height: 1.6;
}

.persona-image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 20px;
    border: 5px solid #E8E8D6;
}

.next-step-btn {
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 5px;
    padding: 12px 30px;
    font-family: 'Minion Pro', serif;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 20px;
}

.next-step-btn:hover {
    background-color: #b56e4c;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(203, 124, 87, 0.3);
}

/* Second Quiz Styles */
.second-quiz-container {
    background-color: #E8E8D6;
    border-radius: 18px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    position: relative;
    display: none;
}

.second-quiz-container.show {
    display: block;
    animation: fadeIn 0.5s ease forwards;
}

.second-quiz-header {
    text-align: center;
    margin-bottom: 30px;
}

.second-quiz-header h2 {
    font-family: 'Paytone One', sans-serif;
    font-size: 2.2rem;
    color: #000000;
    margin-bottom: 15px;
}

.second-quiz-header p {
    font-family: 'Minion Pro', serif;
    font-size: 1.2rem;
    color: #444;
}

.involvement-options {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
}

.involvement-option {
    background-color: #fff;
    border: 2px solid #ddd;
    border-radius: 10px;
    padding: 12px 25px;
    font-family: 'Minion Pro', serif;
    font-size: 1.1rem;
    color: #000000;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.involvement-option:hover {
    border-color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.involvement-option.selected {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
    box-shadow: 0 5px 15px rgba(203, 124, 87, 0.3);
}

.dropdown-section {
    margin-bottom: 30px;
}

.dropdown-section h3 {
    font-family: 'Paytone One', sans-serif;
    font-size: 1.5rem;
    color: #000000;
    margin-bottom: 15px;
    text-align: left;
}

.custom-select {
    position: relative;
    width: 100%;
    margin-bottom: 15px;
}

.custom-select select {
    width: 100%;
    padding: 12px 15px;
    font-family: 'Minion Pro', serif;
    font-size: 1.1rem;
    color: #000000;
    border: 2px solid #ddd;
    border-radius: 10px;
    background-color: #fff;
    appearance: none;
    cursor: pointer;
}

.custom-select::after {
    content: '';
    position: absolute;
    right: 15px;
    top: 50%;
    width: 10px;
    height: 10px;
    border-right: 2px solid var(--primary-color);
    border-bottom: 2px solid var(--primary-color);
    transform: translateY(-70%) rotate(45deg);
    pointer-events: none;
    transition: transform 0.3s ease;
}

.custom-select:hover::after {
    transform: translateY(-30%) rotate(45deg);
}

.custom-select select:focus {
    outline: none;
    border-color: var(--primary-color);
}

.submit-interests-btn {
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 5px;
    padding: 12px 30px;
    font-family: 'Minion Pro', serif;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 20px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.submit-interests-btn:hover {
    background-color: #b56e4c;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(203, 124, 87, 0.3);
}