/* Travel Personality Quiz Styles CSS */

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.app-container {
    background: linear-gradient(135deg, #2c3e50 0%, #3887bc 25%, #aa564d 50%, #d99b37 75%, #209953 100%);
    animation: gradientShift 15s ease infinite;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.quiz-container {
    width: 100%;
    position: relative;
    overflow: hidden;
    display: block;
}

.welcome-screen, .quiz-section {
    display: block;
    padding: 0rem;
}


.app-title {
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(45deg, #3498db, #e74c3c, #f39c12);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.app-subtitle {
    font-size: 1.2rem;
    line-height: 1.6;
    color: rgb(255, 255, 255);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.begin-button, .nav-button, .restart-button {
    background: linear-gradient(45deg, #e74c3c, #f39c12);
    border: none;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(231, 76, 60, 0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-button {
    background: linear-gradient(45deg, #e74c3c, #f39c12);
    box-shadow: 0 8px 25px rgba(231, 76, 60, 0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.begin-button:hover, .nav-button:hover, .restart-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(231, 76, 60, 0.6);
    background: linear-gradient(45deg, #c0392b, #d35400);
}

.quiz-content {
    display: none;
}

.quiz-content.active {
    display: block;
}

.progress-section {
    margin-bottom: 2rem;
}

.progress-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.quiz-counter {
    font-size: 1.1rem;
    color: #3498db;
    font-weight: 600;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: rgba(52, 152, 219, 0.2);
    border-radius: 10px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #3498db, #2ecc71);
    border-radius: 10px;
    transition: width 0.5s ease;
    box-shadow: 0 2px 10px rgba(52, 152, 219, 0.4);
}

.question-title {
    color: #ecf0f1;
    line-height: 1.4;
}

.answers-container {
}

.answer-option {
    background: rgba(52, 152, 219, 0.1);
    border: 2px solid rgba(52, 152, 219, 0.3);
    color: #ecf0f1;
    line-height: 1.4;
}

.answer-option:hover {
    background: rgba(52, 152, 219, 0.2);
    border-color: rgba(52, 152, 219, 0.6);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(52, 152, 219, 0.2);
}

.answer-option.selected {
    background: rgba(46, 204, 113, 0.2);
    border-color: #2ecc71;
    box-shadow: 0 8px 20px rgba(46, 204, 113, 0.3);
}

.navigation {
}

.nav-button {
}

.nav-button:disabled {
    background: rgba(149, 165, 166, 0.5);
    cursor: not-allowed;
    box-shadow: none;
}

.nav-button:disabled:hover {
    transform: none;
    background: rgba(149, 165, 166, 0.5);
    box-shadow: none;
}

.result-section {
    text-align: center;
}

.result-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #2ecc71, #3498db);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.result-subtitle {
    font-size: 1.3rem;
    color: #f39c12;
    font-weight: 600;
    margin-bottom: 2rem;
}

.result-description {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: white;
}

.result-traits {
    background: rgba(52, 152, 219, 0.1);
    border-radius: 15px;
    padding: 2rem;
    margin: 2rem 0;
    color: white;
}

.traits-title {
    font-size: 1.4rem;
    color: #3498db;
    margin-bottom: 1rem;
    font-weight: 600;
}

.traits-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    text-align: left;
}

.trait-item {
    background: rgba(46, 204, 113, 0.1);
    padding: 1rem;
    border-radius: 10px;
    border-left: 4px solid #2ecc71;
}

.destinations {
    background: rgba(231, 76, 60, 0.1);
    border-radius: 15px;
    padding: 2rem;
    margin: 2rem 0;
}

.destinations-title {
    font-size: 1.4rem;
    color: #bb1f0f;
    margin-bottom: 1rem;
    font-weight: 600;
}

.destinations-list {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.destination-tag {
    background: rgba(243, 156, 18, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    color: white;
    font-weight: 600;
    border: 1px solid rgba(243, 156, 18, 0.3);
}

@media screen and (max-width: 480px) {
    .welcome-screen {
        margin-bottom: 1rem;
    }
    .result-traits {
        padding: 0.3rem;
    }
    .traits-list {
        gap: 0.5rem;
    }
    .destinations {
        padding: 0.4rem;
    }
    .destinations-list {
        gap: 0.5rem;
    }
}