/* Homepage Specific CSS for Wizard & Hero */

.hp-hero-section {
    margin-top: 80px;
    text-align: center;
    padding: 2rem 1.5rem;
}

.hp-hero-content {
    max-width: 800px;
    margin: 0 auto 2rem;
}

.hp-hero-content h1 {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 1rem;
}

.hp-hero-content p {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 0;
}

.hp-wizard-container {
    max-width: 900px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 2rem;
    text-align: left;
}

.hp-wizard-progress {
    display: flex;
    justify-content: space-between;
    margin-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 1rem;
}

.hp-wizard-step {
    display: none;
}

.hp-wizard-step.is-active {
    display: block;
}

.hp-wizard-step h3 {
    margin-top: 0;
    margin-bottom: 1.5rem;
    color: var(--text-main);
}

.hp-grid-3-2-1 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

@media (max-width: 900px) {
    .hp-grid-3-2-1 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .hp-grid-3-2-1 {
        grid-template-columns: 1fr;
    }
}

.hp-cruise-tile, .hp-ship-tile, .hp-date-tile {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 1.5rem;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: center;
}

.hp-cruise-tile:hover, .hp-ship-tile:hover, .hp-date-tile:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary);
}

.hp-cruise-tile strong, .hp-ship-tile strong, .hp-date-tile strong {
    display: block;
    font-size: 1.1rem;
    color: var(--text-main);
    margin-bottom: 0.5rem;
}

.hp-cruise-tile span {
    font-size: 0.85rem;
    color: var(--primary);
    background: rgba(16, 185, 129, 0.1);
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
}

.hp-manual-fallback {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 0, 0, 0.05);
    border: 1px dashed var(--border-color);
    border-radius: 8px;
    margin-top: 1.5rem;
}

.hp-manual-fallback p {
    color: var(--text-main);
    margin-bottom: 1rem;
}

.hp-back-button {
    margin-top: 1.5rem;
}

.hp-hero-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}
.hp-date-nights { font-size:0.85rem; color:var(--text-muted); }
