/* travel-specific.css - Reisebudsjett-spesifikk styling */

/* Reise-specifik gradient (tropisk blå/grønn for reise/ferie-tema) */
body {
    background: linear-gradient(135deg, #0891b2 0%, #06b6d4 25%, #22d3ee 50%, #67e8f9 75%, #a7f3d0 100%);
}

.calculator-card {
    border: 2px solid rgba(8, 145, 178, 0.3);
}

/* Reise-spesifikke resultat-bokser */
.results {
    background: linear-gradient(135deg, #ecfeff 0%, #cffafe 100%);
    border-left: 5px solid #0891b2;
}

.breakdown {
    background: rgba(8, 145, 178, 0.05);
    border: 1px solid rgba(8, 145, 178, 0.1);
}

.breakdown h3 {
    color: #0369a1;
    margin-bottom: 15px;
    font-size: 1.3em;
}

.budget-item {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid rgba(8, 145, 178, 0.05);
}

.budget-item:last-child {
    border-bottom: none;
}

.section-header {
    background: rgba(8, 145, 178, 0.1);
    padding: 10px 15px;
    border-radius: 8px;
    margin: 20px 0 15px 0;
    font-weight: 600;
    color: #0369a1;
    border-left: 4px solid #0891b2;
}

.budget-tips {
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.3);
    border-radius: 10px;
    padding: 15px;
    margin-top: 15px;
    color: #16a34a;
}

.destination-info {
    background: rgba(251, 191, 36, 0.1);
    border: 1px solid rgba(251, 191, 36, 0.3);
    border-radius: 10px;
    padding: 15px;
    margin-top: 15px;
    color: #d97706;
}

.per-person-total {
    background: rgba(8, 145, 178, 0.15);
    border-radius: 10px;
    padding: 15px;
    margin-top: 15px;
    text-align: center;
}

.currency-converter {
    background: rgba(6, 182, 212, 0.05);
    border: 1px solid rgba(6, 182, 212, 0.1);
    border-radius: 10px;
    padding: 15px;
    margin-top: 15px;
}

/* Reise-spesifikke høydepunkter */
.calculate-btn {
    background: linear-gradient(135deg, #0891b2 0%, #0369a1 100%);
}

.calculate-btn:hover {
    box-shadow: 0 15px 30px rgba(8, 145, 178, 0.4);
}

input[type="number"]:focus, select:focus {
    border-color: #0891b2;
    box-shadow: 0 0 0 3px rgba(8, 145, 178, 0.1);
}

.info-note {
    background: rgba(8, 145, 178, 0.1);
    border: 1px solid rgba(8, 145, 178, 0.2);
}

/* Spesielle reise-elementer */
.travel-visual {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin: 20px 0;
}

.travel-card {
    background: rgba(255, 255, 255, 0.9);
    padding: 15px;
    border-radius: 10px;
    border-left: 4px solid #0891b2;
    text-align: center;
}

.travel-icon {
    font-size: 2em;
    margin-bottom: 10px;
    display: block;
}

/* Destinasjon-spesifikke farger */
.europe { border-left-color: #3b82f6; }
.asia { border-left-color: #f59e0b; }
.america { border-left-color: #ef4444; }
.nordic { border-left-color: #06b6d4; }