@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@500;700;900&display=swap');

:root {
    --accent: #55acee;
    --border: rgba(255,255,255,0.1);
    --card-bg: rgba(255, 255, 255, 0.05);
}

/* Alles in hoofdletters als basis */
* { 
    margin: 0; padding: 0; box-sizing: border-box; 
    font-family: 'Montserrat', sans-serif; 
    text-transform: uppercase; 
}

body { background-color: #000; color: #fff; min-height: 100vh; transition: background 2s; overflow-x: hidden; }

/* Achtergronden */
body.zonnig { background: radial-gradient(circle at 80% 20%, #4a3b00 0%, #000 80%); }
body.regen { background: linear-gradient(180deg, #001a33 0%, #000 100%); }
body.bewolkt { background: linear-gradient(180deg, #1e272e 0%, #000 100%); }
body.nacht { background: radial-gradient(circle at 80% 20%, #0c0c1d 0%, #000 80%); }

.search-bar { padding: 15px 6%; background: rgba(0,0,0,0.8); backdrop-filter: blur(10px); display: flex; gap: 10px; position: sticky; top: 0; z-index: 100; border-bottom: 1px solid var(--border); }
.search-bar input { flex: 1; background: rgba(255,255,255,0.1); border: 1px solid var(--border); padding: 12px; color: #fff; border-radius: 8px; outline: none; }
.search-bar button { padding: 0 20px; border-radius: 8px; border: none; background: var(--accent); font-weight: 700; cursor: pointer; color: #000; }

.alarm-bar { padding: 15px 6%; font-weight: 900; text-align: center; font-size: 0.9rem; color: #000; }
.alarm-geel { background: #ffcc00; }
.alarm-oranje { background: #ff9900; }
.alarm-rood { background: #ff3300; color: #fff; }

section { padding: 30px 6%; border-bottom: 1px solid var(--border); }
.hero-main { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 20px; }
.temp-big { font-size: 5rem; font-weight: 900; letter-spacing: -2px; line-height: 1; }

.wind-arrow { display: inline-block; transition: transform 0.6s ease; transform-origin: center; }
.details-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 15px; margin-top: 20px; font-size: 0.85rem; }

.h-scroll { display: flex; overflow-x: auto; overflow-y: hidden; gap: 15px; padding: 10px 0 20px 0; -webkit-overflow-scrolling: touch; cursor: grab; }
.h-scroll::-webkit-scrollbar { height: 6px; }
.h-scroll::-webkit-scrollbar-thumb { background: var(--border); border-radius: 10px; }

.hour-card { min-width: 145px; background: var(--card-bg); padding: 15px; border-radius: 12px; text-align: center; border: 1px solid var(--border); flex-shrink: 0; }
.day-card { background: var(--card-bg); padding: 20px; border-radius: 15px; margin-bottom: 10px; display: grid; grid-template-columns: 1.2fr 1.2fr 1fr; align-items: center; border: 1px solid var(--border); }

.label { font-size: 0.7rem; color: var(--accent); font-weight: 700; margin-bottom: 4px; }

/* DE UITZONDERING: Analyse niet in hoofdletters */
.meta-text { line-height: 1.8; opacity: 0.9; text-transform: none !important; }
.meta-text p { text-transform: none !important; }
.paragraph { margin-bottom: 25px; }

@media (min-width: 768px) { .temp-big { font-size: 8rem; } }