/* Arctic Rain – arcticrain.se
   Ren CSS, inga beroenden. Mörkt tema, isblå accent. */

:root {
  --bg: #0c1118;
  --bg-raised: #131a24;
  --text: #dde5ee;
  --text-dim: #8b98a8;
  --accent: #7fc3e8;      /* isblå */
  --accent-dim: #4a7fa0;
  --line: #223041;
  --maxw: 880px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ---------- Hero ---------- */

.hero { position: relative; min-height: 72vh; display: flex; align-items: flex-end; overflow: hidden; }

.hero-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 30%;
}

.hero-overlay {
  position: relative;
  width: 100%;
  padding: 4rem 1.5rem 3rem;
  text-align: center;
  background: linear-gradient(to top, rgba(12,17,24,.96) 0%, rgba(12,17,24,.55) 55%, rgba(12,17,24,0) 100%);
}

.hero-logo { max-width: min(420px, 70vw); height: auto; }

.hero-tag {
  margin-top: .75rem;
  text-transform: uppercase;
  letter-spacing: .35em;
  font-size: .85rem;
  color: var(--accent);
}

.hero-sub { margin-top: .5rem; color: var(--text-dim); font-size: 1.05rem; }

.btn {
  display: inline-block;
  margin-top: 1.5rem;
  padding: .7rem 2.2rem;
  border: 1px solid var(--accent);
  border-radius: 3px;
  color: var(--accent);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .15em;
  font-size: .85rem;
  transition: background .2s, color .2s;
}
.btn:hover { background: var(--accent); color: var(--bg); }

/* ---------- Sektioner ---------- */

main { max-width: var(--maxw); margin: 0 auto; padding: 0 1.25rem; }

section { padding: 3.5rem 0 0; }

h2 {
  text-transform: uppercase;
  letter-spacing: .25em;
  font-size: .95rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 1.5rem;
}

/* ---------- Video ---------- */

.video-wrap { position: relative; aspect-ratio: 16 / 9; background: var(--bg-raised); }
.video-wrap iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

.caption { margin-top: .6rem; font-size: .85rem; color: var(--text-dim); }
.deep-link { color: var(--accent); text-decoration: none; }
.deep-link:hover { text-decoration: underline; }

/* ---------- Citat ---------- */

.quotes { display: grid; gap: 2.2rem; grid-template-columns: 1fr; }
@media (min-width: 720px) { .quotes { grid-template-columns: 1fr 1fr 1fr; gap: 2.5rem; } }

blockquote {
  position: relative;
  padding: 2.2rem 0 0 1.6rem;
}
blockquote::before {
  content: "\201C";
  position: absolute;
  top: -0.5rem; left: -0.2rem;
  font-size: 4.5rem;
  font-family: Georgia, serif;
  color: var(--accent);
  opacity: .3;
  line-height: 1;
}
blockquote p { font-size: 1rem; font-style: italic; color: var(--text); }
blockquote cite {
  display: flex; flex-wrap: wrap; align-items: baseline; gap: .5rem;
  margin-top: .9rem;
  font-style: normal; font-size: .8rem;
}
blockquote cite a {
  color: var(--accent);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .1em;
  font-weight: 600;
}
blockquote cite a:hover { text-decoration: underline; }
.ext { font-size: .75em; margin-left: .3em; }
.about { color: var(--text-dim); }
.about em { color: var(--text-dim); }
.stars { color: var(--accent); letter-spacing: .05em; }

/* ---------- Live ---------- */

.gigs { list-style: none; border-top: 1px solid var(--line); }
.gigs li {
  display: flex; gap: 1.25rem;
  padding: .8rem 0;
  border-bottom: 1px solid var(--line);
}
.gig-when { flex: 0 0 3.2rem; color: var(--accent); font-variant-numeric: tabular-nums; }
.gig-what strong { color: var(--text); }
.gigs li, .gig-what { color: var(--text-dim); }

/* ---------- Musik ---------- */

#music p { margin-bottom: .8rem; }
#music em { color: var(--text); }

.spotify-wrap { margin: 1.25rem 0; }
.spotify-wrap iframe { width: 100%; height: 352px; border: 0; border-radius: 12px; }

.links { display: flex; gap: 1.8rem; flex-wrap: wrap; justify-content: center; margin-bottom: 1.4rem; }
.links a {
  display: inline-flex; align-items: center; gap: .45rem;
  color: var(--accent); text-decoration: none;
}
.links a:hover { text-decoration: underline; }
.links .icon { width: 21px; height: 21px; fill: currentColor; flex: none; }

/* ---------- Band ---------- */

.band-photo { width: 100%; height: auto; border-radius: 4px; }

.members { list-style: none; margin-top: 1.25rem; display: grid; gap: .4rem; grid-template-columns: 1fr; }
@media (min-width: 600px) { .members { grid-template-columns: 1fr 1fr; } }
.members li { color: var(--text); }
.members span { color: var(--text-dim); margin-left: .5rem; font-size: .9rem; }

/* ---------- Booking ---------- */

.booking {
  text-align: center;
  background: var(--bg-raised);
  border: 1px solid var(--line);
  border-radius: 6px;
  margin-top: 3.5rem;
  padding: 2.5rem 1.5rem;
}
.booking h2 { margin-bottom: .75rem; }
.booking-name { font-size: 1.2rem; font-weight: 600; }
.booking-contact { margin-top: .5rem; line-height: 1.9; }
.booking-contact a { color: var(--accent); text-decoration: none; font-size: 1.05rem; }
.booking-contact a:hover { text-decoration: underline; }
.booking-meta { margin-top: 1.4rem; font-size: .85rem; color: var(--text-dim); line-height: 1.7; }

/* ---------- Footer ---------- */

footer {
  margin-top: 4rem;
  padding: 2rem 1.25rem 2.5rem;
  text-align: center;
  color: var(--text-dim);
  font-size: .8rem;
  border-top: 1px solid var(--line);
}

/* ---------- Mobil: visa hela bandet, text under bilden ---------- */

@media (max-width: 640px) {
  .hero { display: block; min-height: 0; }
  .hero-img { position: static; width: 100%; height: auto; }
  .hero-overlay {
    margin-top: -2.5rem;
    padding: 3rem 1.25rem 2rem;
    background: linear-gradient(to top, var(--bg) 82%, rgba(12,17,24,0) 100%);
  }
  .hero-logo { max-width: 78vw; }
}

/* ---------- Press-sidan ---------- */

.presshead {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 3.5rem 1.25rem 0;
  text-align: center;
}
.presshead-logo { max-width: min(340px, 70vw); height: auto; }
.presshead .hero-tag { margin-top: 1rem; }
.presshead .hero-sub { margin-top: .75rem; }

.press-grid { display: grid; gap: 1.5rem; grid-template-columns: 1fr; }
@media (min-width: 720px) { .press-grid { grid-template-columns: 1fr 1fr 1fr; } }

.press-grid figure, .logo-tile { margin: 0; }
.press-grid img { width: 100%; height: auto; border-radius: 4px; display: block; }
.press-grid figcaption, .logo-tile figcaption {
  padding: .6rem 0 0;
  display: flex; flex-wrap: wrap; gap: .3rem .9rem; align-items: baseline;
}

.dl { color: var(--accent); text-decoration: none; font-size: .85rem; font-weight: 600; }
.dl:hover { text-decoration: underline; }
.dl::before { content: "↓ "; }
.meta { color: var(--text-dim); font-size: .78rem; }

.logo-grid { display: grid; gap: 1.5rem; grid-template-columns: 1fr; }
@media (min-width: 720px) { .logo-grid { grid-template-columns: 1fr 1fr 1fr; } }
.logo-tile {
  background: var(--bg-raised);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 1.5rem 1rem 1rem;
  display: flex; flex-direction: column; justify-content: space-between;
}
.logo-tile img { max-width: 100%; height: auto; align-self: center; }
.logo-tile img.symbol { max-width: 140px; }

.copy-block {
  background: var(--bg-raised);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 1.25rem 1.4rem;
  margin-bottom: 1rem;
}
.copy-block h3 {
  font-size: .75rem; text-transform: uppercase; letter-spacing: .2em;
  color: var(--text-dim); margin-bottom: .6rem;
}
.copy-block p { font-size: .95rem; }

.note a { color: var(--accent); }
footer a { color: var(--text-dim); }
footer a:hover { color: var(--accent); }

.subpage main { padding-top: 0; }
.subpage section:first-child { padding-top: 2.5rem; }

.bio-intro { color: var(--text-dim); font-size: .9rem; margin: -0.8rem 0 1.2rem; }

.logo-tile-light { background: #e9edf2; border-color: #cfd6de; }
.logo-tile-light .meta { color: #5a6675; }

/* Bättre kontrast på ljusa logotypplattor */
.logo-tile-light .meta { color: #3d4754; }
.logo-tile-light .dl { color: #17618d; }
.booking-meta a { color: var(--accent); text-decoration: none; }
.booking-meta a:hover { text-decoration: underline; }
