/* Questionnaire Styles */
body {
    font-family: 'Cormorant Garamond', serif;
}

.hotel-green {
    background-color: #81b622;
}

.hotel-green:hover {
    background-color: #6d9a1d;
}

/* Language Selection Styles */
.language-button {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem 2rem;
    background-color: #81b622;
    color: white;
    border-radius: 0.5rem;
    font-size: 1.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
    min-width: 200px;
    width: 100%;
    max-width: 300px;
}

.language-button:hover {
    background-color: #6d9a1d;
    transform: scale(1.05);
}

.language-button span {
    font-size: 2rem;
}

@media (max-width: 640px) {
    .language-button {
        min-width: 150px;
        padding: 1rem 1.5rem;
        font-size: 1.25rem;
    }
    .language-button span {
        font-size: 1.75rem;
    }
}

.radio-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 1.5rem;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.rating-labels {
    display: flex;
    justify-content: space-between;
    width: 100%;
    max-width: calc(10 * 2.5rem + 9 * 0.5rem);
    margin: 0 auto;
    padding: 0;
}

.rating-text {
    color: white;
    font-size: 1rem;
    line-height: 1;
    transform: translateX(-50%);
}

.rating-text:last-child {
    transform: translateX(50%);
}

.radio-label {
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    min-width: 2.5rem;
    padding: 0.5rem;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
}

.radio-label:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.radio-label input[type="radio"] {
    margin-bottom: 0.25rem;
    transform: scale(1.2);
    accent-color: #81b622;
}

.radio-label input[type="radio"]:checked + span {
    transform: scale(1.2);
}

.radio-label span {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.question-card {
    background-color: #81b622;
    color: white;
    padding: 2rem;
    display: none;
}

.question-card.active {
    display: block;
}

.question-text {
    font-size: 1.75rem;
    font-weight: 700;
    line-height: 1.4;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.help-text {
    font-size: 1.25rem;
    font-style: italic;
    margin-top: 0.5rem;
    opacity: 0.9;
}

.nav-buttons {
    display: none;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.nav-buttons.active {
    display: flex;
}

.nav-button {
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid #81b622;
}

.clear-button {
    background-color: #fff;
    color: #000;
}

.clear-button:hover {
    background-color: #f0f0f0;
    border-color: #6d9a1d;
}

.next-button {
    background-color: #fff;
    color: #000;
}

.next-button:hover {
    background-color: #f0f0f0;
    border-color: #6d9a1d;
}

.next-button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    border-color: #ccc;
    color: #666;
}

.prev-button {
    background-color: #fff;
    color: #000;
}

.prev-button:hover {
    background-color: #f0f0f0;
    border-color: #6d9a1d;
}

.prev-button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    border-color: #ccc;
    color: #666;
}

.email-container,
.personal-info-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 2rem;
    width: 100%;
}

.email-input,
.form-input {
    width: 100%;
    max-width: 400px;
    padding: 0.75rem 1rem;
    font-size: 1.25rem;
    border: 2px solid #81b622;
    border-radius: 0.5rem;
    outline: none;
    transition: all 0.3s ease;
    background-color: white;
    color: #000;
    margin-bottom: 1rem;
}

.email-input:focus,
.form-input:focus {
    border-color: #6d9a1d;
    box-shadow: 0 0 0 3px rgba(129, 182, 34, 0.2);
}

.email-error {
    font-size: 1rem;
    margin-top: 0.5rem;
    color: #ff0000;
}

.submit-button {
    background-color: #fff;
    color: #000;
    border: 2px solid #81b622;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 1.25rem;
}

.submit-button:hover {
    background-color: #f0f0f0;
    border-color: #6d9a1d;
}

.submit-button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    border-color: #ccc;
    color: #666;
}

#comment-input {
    width: 100%;
    max-width: 900px;
    min-width: 200px;
    min-height: 160px;
    height: 180px;
    margin: 0 auto 1rem auto;
    display: block;
    font-size: 1.25rem;
    resize: vertical;
}

@media (max-width: 1024px) {
    #comment-input {
        max-width: 100%;
        min-height: 120px;
        height: 140px;
    }
} 