/* Expedition Planner Styles */

:root {
    --accent: #FF6B00;
    --dark: #111111;
    --slate: #2F3E46;
    --glass: rgba(255, 255, 255, 0.1);
    --glass-heavy: rgba(255, 255, 255, 0.2);
    --text-light: #f8f9fa;
    --mono: 'Courier Prime', monospace;
    --serif: 'Playfair Display', serif;
}

body.planner-page {
    background: #0a0a0a;
    color: var(--text-light);
    min-height: 100vh;
    overflow-x: hidden;
}

.planner-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.8)),
        url('../images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    z-index: -1;
}

.planner-container {
    max-width: 900px;
    margin: 80px auto;
    padding: 20px;
}

/* Glass Card */
.wizard-card {
    background: rgba(10, 10, 10, 0.7);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 50px;
    position: relative;
    box-shadow: 0 50px 100px rgba(0, 0, 0, 0.5);
}

/* Progress Bar (Mountain Theme) */
.progress-track {
    display: flex;
    justify-content: space-between;
    margin-bottom: 50px;
    position: relative;
}

.progress-track::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    z-index: 1;
}

.progress-step {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--dark);
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    font-family: var(--mono);
    color: #666;
    transition: all 0.3s;
}

.progress-step.active {
    background: var(--accent);
    color: white;
    border-color: var(--accent);
    box-shadow: 0 0 20px rgba(255, 107, 0, 0.4);
}

.progress-step.completed {
    background: var(--text-light);
    border-color: var(--text-light);
    color: var(--dark);
}

/* Wizard Steps */
.wizard-step {
    display: none;
    animation: fadeIn 0.5s ease;
}

.wizard-step.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.step-title {
    font-family: var(--serif);
    font-size: 2.5rem;
    margin-bottom: 30px;
    text-align: center;
}

/* Region & Vibe Cards */
.selection-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.selection-card {
    background: var(--glass);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
}

.selection-card i {
    font-size: 2rem;
    color: var(--accent);
    margin-bottom: 15px;
    display: block;
}

.selection-card h4 {
    font-family: var(--mono);
    font-size: 1rem;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.selection-card p {
    font-size: 0.8rem;
    color: #aaa;
    margin: 0;
}

.selection-card:hover {
    background: var(--glass-heavy);
    transform: translateY(-5px);
}

.selection-card.selected {
    border-color: var(--accent);
    background: rgba(255, 107, 0, 0.1);
    box-shadow: 0 0 30px rgba(255, 107, 0, 0.2);
}

/* Budget Slider */
.budget-section {
    background: var(--glass);
    padding: 40px;
    border-radius: 15px;
}

.budget-slider {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    margin: 40px 0;
}

.budget-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 24px;
    height: 24px;
    background: var(--accent);
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 0 20px rgba(255, 107, 0, 0.5);
}

.vibe-check {
    font-family: var(--mono);
    text-align: center;
    background: var(--accent);
    padding: 10px 20px;
    border-radius: 4px;
    display: inline-block;
    color: white;
    margin-top: 20px;
}

/* Form Controls */
.nav-buttons {
    display: flex;
    justify-content: space-between;
    margin-top: 50px;
}

.btn-planner-nav {
    padding: 15px 40px;
    font-family: var(--mono);
    letter-spacing: 2px;
    border-radius: 30px;
    transition: all 0.3s;
}

.btn-prev {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
}

.btn-prev:hover {
    background: var(--glass);
}

.btn-next {
    background: var(--accent);
    border: none;
    color: white;
}

.btn-next:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(255, 107, 0, 0.3);
}

/* Custom Input Styling */
.planner-input {
    background: var(--glass);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    padding: 15px 25px;
    border-radius: 10px;
    width: 100%;
    font-size: 1.1rem;
    transition: all 0.3s;
}

.planner-input:focus {
    background: var(--glass-heavy);
    border-color: var(--accent);
    outline: none;
    box-shadow: 0 0 20px rgba(255, 107, 0, 0.1);
}

/* Responsive */
@media (max-width: 768px) {
    .wizard-card {
        padding: 30px 20px;
    }

    .step-title {
        font-size: 1.8rem;
    }
}