/*
Theme Name: Exit Soma
Theme URI: http://exitsoma-fg5jfwjpte.live-website.com
Author: Markus Lackmann & Lajosch Schrot
Description: Offizielles Theme für EXIT SOMA – Progressive Rock aus Bonn
Version: 16.0
License: GNU General Public License v2 or later
Text Domain: exit-soma
*/

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

:root {
  --black:   #0b0c10;
  --dark:    #111318;
  --darker:  #0d0e12;
  --card:    #181a20;
  --border:  #282c36;
  --accent:  #c8a868;   /* Gold aus dem Logo */
  --accent2: #d8bc80;
  --sky:     #7a96b4;   /* Wüstenhimmel */
  --white:   #eceae4;
  --muted:   #72788a;
  --font-head: 'Rajdhani', 'Oswald', sans-serif;
  --font-body: 'Lato', 'Helvetica Neue', Arial, sans-serif;
}

html { scroll-behavior: smooth; }
body { background: var(--black); color: var(--white); font-family: var(--font-body); font-size: 16px; line-height: 1.7; overflow-x: hidden; }
a { color: var(--accent2); text-decoration: none; transition: color .2s; }
a:hover { color: var(--sky); }
img { max-width: 100%; height: auto; display: block; }
h1,h2,h3,h4 { font-family: var(--font-head); font-weight: 700; letter-spacing: .06em; line-height: 1.15; text-transform: uppercase; }

/* ── NAVIGATION ─────────────────────────────── */
#site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(11,12,16,.93); backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  padding: 0 2rem; display: flex; align-items: center; justify-content: space-between; height: 68px;
}
.site-logo {
  display: inline-block; border: 1.5px solid var(--accent); padding: .25rem .9rem;
  font-family: var(--font-head); font-size: 1.3rem; font-weight: 700;
  letter-spacing: .22em; text-transform: uppercase; color: var(--accent); text-decoration: none;
  transition: all .2s; line-height: 1.25;
}
.site-logo:hover { background: rgba(200,168,104,.1); color: var(--accent2); }

#primary-nav ul { display: flex; gap: 1.8rem; list-style: none; }
#primary-nav ul li a { color: var(--muted); font-size: .78rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; transition: color .2s; }
#primary-nav ul li a:hover { color: var(--white); }
.nav-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
.nav-toggle span { display: block; width: 26px; height: 2px; background: var(--white); }

/* ── HERO ───────────────────────────────────── */
#hero {
  position: relative; height: 100vh; min-height: 600px;
  display: flex; align-items: center; justify-content: center;
  text-align: center; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background-image: url('images/hero-bg.jpg');
  background-size: cover; background-position: center 55%;
  filter: brightness(.5) saturate(.75);
}
.hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(11,12,16,.2) 0%, rgba(11,12,16,.65) 100%);
}

.hero-content { position: relative; z-index: 2; max-width: 800px; padding: 0 2rem; }
.hero-eyebrow { font-size: .72rem; font-weight: 600; letter-spacing: .42em; text-transform: uppercase; color: var(--accent); margin-bottom: 2.2rem; font-family: var(--font-body); }

/* THE ACTUAL LOGO IMAGE from the cover */
.hero-logo-img {
  max-width: 680px; width: 90%;
  display: block; margin: 0 auto 2.5rem;
  filter: drop-shadow(0 0 40px rgba(200,168,104,.55)) drop-shadow(0 0 12px rgba(200,168,104,.3));
}

.hero-subtitle { font-size: clamp(.85rem,2.2vw,1rem); color: #888; letter-spacing: .28em; text-transform: uppercase; margin-bottom: 2.2rem; font-family: var(--font-body); }
.hero-cta { display: inline-flex; gap: 1rem; flex-wrap: wrap; justify-content: center; }

.btn { display: inline-block; padding: .7rem 2rem; font-size: .78rem; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; border-radius: 1px; transition: all .25s; font-family: var(--font-head); }
.btn-primary { background: var(--accent); color: var(--black); border: 2px solid var(--accent); }
.btn-primary:hover { background: var(--accent2); border-color: var(--accent2); color: var(--black); transform: translateY(-2px); box-shadow: 0 8px 25px rgba(200,168,104,.3); }
.btn-outline { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,.35); }
.btn-outline:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-2px); }

.scroll-hint {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%); z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: .5rem;
  color: var(--muted); font-size: .65rem; letter-spacing: .25em; text-transform: uppercase;
  animation: bounce 2.5s ease-in-out infinite;
}
.scroll-hint::after { content: ''; display: block; width: 1px; height: 36px; background: linear-gradient(to bottom, var(--accent), transparent); }
@keyframes bounce { 0%,100%{transform:translateX(-50%) translateY(0)} 50%{transform:translateX(-50%) translateY(8px)} }

/* ── SECTIONS ───────────────────────────────── */
.section { padding: 90px 2rem; max-width: 1100px; margin: 0 auto; }
.section-label { font-family: var(--font-body); font-size: .7rem; font-weight: 700; letter-spacing: .42em; text-transform: uppercase; color: var(--accent); margin-bottom: .8rem; }
.section-title { font-size: clamp(1.9rem,5vw,2.9rem); color: var(--white); margin-bottom: 1.5rem; }
.section-title span { color: var(--accent); }
.divider { width: 50px; height: 2px; background: var(--accent); margin-bottom: 3rem; }

/* ── ABOUT – Earth-from-space background ────── */
#about {
  position: relative;
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
}
#about::before {
  /* solid dark section - no bg image */
  content: ''; position: absolute; inset: 0;
  
  background-size: cover; background-position: center;
  filter: brightness(.18) saturate(.6);
}
.about-inner {
  position: relative; z-index: 1;
  max-width: 1100px; margin: 0 auto; padding: 90px 2rem;
  display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center;
}
.about-text p { color: #b0aaa0; margin-bottom: 1.1rem; font-size: 1.02rem; }
.about-members { display: flex; flex-direction: column; gap: 1.5rem; }
.member-card { background: rgba(24,26,32,.85); border: 1px solid var(--border); border-left: 3px solid var(--accent); padding: 1.4rem 1.5rem; transition: transform .2s, box-shadow .2s; }
.member-card:hover { transform: translateX(5px); box-shadow: -5px 0 18px rgba(200,168,104,.15); }
.member-name { font-family: var(--font-head); font-size: 1.15rem; color: var(--white); margin-bottom: .25rem; letter-spacing: .1em; }
.member-role { font-size: .7rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--accent); margin-bottom: .6rem; }
.member-desc { color: var(--muted); font-size: .93rem; }

/* ── ALBUM ──────────────────────────────────── */
#album { background: var(--black); position: relative; }
#album::before {
  content: ''; position: absolute; inset: 0;
  background-size: cover; background-position: center;
  filter: brightness(.13) saturate(.5);
}
.album-section-inner { max-width: 1100px; margin: 0 auto; padding: 90px 2rem; position: relative; z-index: 1; }
.album-grid { display: grid; grid-template-columns: 320px 1fr; gap: 4rem; align-items: start; margin-top: 3rem; }
.album-cover-wrap img { width: 100%; border-radius: 2px; box-shadow: 0 20px 60px rgba(0,0,0,.85), 0 0 0 1px var(--border); }
.album-title { font-size: clamp(1.6rem,4vw,2.3rem); color: var(--white); margin-bottom: .4rem; }
.album-year { font-size: .72rem; letter-spacing: .25em; text-transform: uppercase; color: var(--muted); margin-bottom: 1.4rem; font-family: var(--font-body); }
.tags { display: flex; gap: .5rem; flex-wrap: wrap; margin-bottom: 1.5rem; }
.tag { font-size: .67rem; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; color: var(--accent); border: 1px solid var(--accent); padding: .25rem .7rem; }
.album-desc { color: #b0aaa0; margin-bottom: 2.2rem; font-size: 1.02rem; line-height: 1.8; }
.streaming-label { font-family: var(--font-body); font-size: .7rem; font-weight: 700; letter-spacing: .22em; text-transform: uppercase; color: var(--muted); margin-bottom: .9rem; }
.streaming-links { display: flex; gap: .6rem; flex-wrap: wrap; margin-bottom: 1.8rem; }
.streaming-btn { display: inline-flex; align-items: center; gap: .4rem; padding: .55rem 1.1rem; font-size: .74rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; border: 1px solid var(--border); color: var(--white); transition: all .2s; }
.streaming-btn:hover { border-color: var(--accent); color: var(--accent); background: rgba(200,168,104,.07); }
.streaming-btn.spotify:hover { border-color:#1DB954;color:#1DB954;background:rgba(29,185,84,.07); }
.streaming-btn.apple:hover { border-color:#fc3c44;color:#fc3c44; }
.streaming-btn.youtube:hover { border-color:#ff0000;color:#ff0000; }
.cd-note { background: var(--card); border: 1px solid var(--border); padding: 1.1rem 1.4rem; font-size: .9rem; color: var(--muted); }
.cd-note a { color: var(--accent2); }

/* ── NEXT ALBUM – cracked earth background ──── */
#next-album {
  position: relative;
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
}
#next-album::before {
  content: ''; position: absolute; inset: 0;
  background-size: cover; background-position: center center;
  filter: brightness(.30) saturate(.7);
}
.next-album-inner { position: relative; z-index: 1; max-width: 1000px; margin: 0 auto; padding: 90px 2rem; display: grid; grid-template-columns: 160px 1fr; gap: 3.5rem; align-items: start; }
.next-album-vinyl { width: 90px; height: 90px; border-radius: 50%; border: 7px solid var(--border); position: relative; animation: spin 10s linear infinite; margin: 0 auto; }
.next-album-vinyl::after { content:''; position:absolute; top:50%;left:50%; transform:translate(-50%,-50%); width:14px;height:14px; background:var(--accent); border-radius:50%; }
@keyframes spin { to { transform:rotate(360deg); } }
.liner-quote { background: rgba(200,168,104,.07); border-left: 3px solid var(--accent); padding: 1.1rem 1.4rem; margin-bottom: 1.1rem; color: #c0b8a8; font-style: italic; font-size: .95rem; line-height: 1.7; }
.liner-quote cite { display:block; margin-top:.7rem; font-size:.76rem; font-style:normal; color:var(--muted); letter-spacing:.08em; }

/* ── GALLERY ────────────────────────────────── */

.gallery-teaser { display: grid; grid-template-columns: repeat(3,1fr); gap: 8px; }
.gallery-thumb { overflow:hidden; aspect-ratio:4/3; background:#111; }
.gallery-thumb img { width:100%;height:100%;object-fit:cover;transition:transform .4s,opacity .3s;opacity:.75; }
.gallery-thumb:hover img { transform:scale(1.06);opacity:1; }

/* ── PRESS ──────────────────────────────────── */

.press-grid { display:grid; grid-template-columns:1fr 1fr; gap:1.5rem; }
.press-card { background:var(--card); border:1px solid var(--border); border-top:2px solid var(--accent); padding:1.6rem; transition:transform .2s,box-shadow .2s; }
.press-card:hover { transform:translateY(-4px); box-shadow:0 12px 30px rgba(0,0,0,.5); }
.press-source { font-family:var(--font-head); font-size:1.1rem; color:var(--white); margin-bottom:.25rem; letter-spacing:.1em; }
.press-date { font-size:.7rem; font-weight:700; letter-spacing:.2em; text-transform:uppercase; color:var(--accent); margin-bottom:.9rem; }
.press-desc { color:#999; font-size:.93rem; margin-bottom:1.3rem; line-height:1.6; }

/* ── CONTACT – meadow background ───────────── */
#contact { position: relative; border-top: 1px solid var(--border); }
#contact::before {
  content: ''; position: absolute; inset: 0;
  background-image: url('images/bg-contact.jpg');
  background-size: cover; background-position: center 40%;
  filter: brightness(.15) saturate(.5);
}
.contact-inner { position: relative; z-index: 1; max-width: 680px; margin: 0 auto; text-align: center; padding: 90px 2rem; }
.contact-inner p { color: var(--muted); margin-bottom: 2.2rem; font-size: 1.02rem; }
.contact-email { display:inline-flex; align-items:center; gap:.7rem; background:rgba(24,26,32,.8); border:1px solid var(--border); padding:.9rem 2rem; color:var(--white); font-size:.98rem; margin-bottom:3rem; transition:border-color .2s; }
.contact-email:hover { border-color:var(--accent); color:var(--white); }

/* ── FOOTER ─────────────────────────────────── */
#site-footer { background: var(--darker); border-top: 1px solid var(--border); padding: 2.5rem 2rem; text-align: center; }
.footer-logo { font-family: var(--font-head); font-size: 1.15rem; font-weight: 700; letter-spacing: .2em; color: var(--accent); border: 1.5px solid var(--accent); display: inline-block; padding: .2rem .9rem; margin-bottom: .6rem; }
.footer-tagline { font-size: .72rem; letter-spacing: .18em; text-transform: uppercase; color: var(--muted); margin-bottom: 1.2rem; }
.footer-copy { font-size: .72rem; color: #383c48; }

/* ── INNER PAGES ────────────────────────────── */
.page-hero { padding: 140px 2rem 70px; text-align: center; background: var(--darker); border-bottom: 1px solid var(--border); }
.entry-content { max-width: 750px; margin: 0 auto; padding: 60px 2rem; }
.entry-content p { color: #b0aaa0; margin-bottom: 1.2rem; }
.entry-content h2,.entry-content h3 { color: var(--white); margin: 2rem 0 1rem; }
.posts-list { max-width: 800px; margin: 0 auto; padding: 60px 2rem; }
.post-item { border-bottom: 1px solid var(--border); padding: 2rem 0; }
.post-item:last-child { border-bottom: none; }
.post-item h2 { font-size: 1.4rem; margin-bottom: .4rem; }
.post-item .post-meta { font-size: .72rem; color: var(--muted); letter-spacing: .1em; margin-bottom: .8rem; }
.post-item p { color: #b0aaa0; }

/* Gallery page */
.gallery-page { max-width: 1200px; margin: 0 auto; padding: 60px 2rem 100px; }
.photo-grid { display:grid; grid-template-columns:repeat(auto-fill,minmax(260px,1fr)); gap:10px; }
.photo-item { overflow:hidden; cursor:pointer; aspect-ratio:4/3; background:#111; }
.photo-item img { width:100%;height:100%;object-fit:cover;transition:transform .4s,opacity .3s;opacity:.8; }
.photo-item:hover img { transform:scale(1.05);opacity:1; }
#lightbox { display:none;position:fixed;inset:0;z-index:9999;background:rgba(0,0,0,.96);align-items:center;justify-content:center;cursor:zoom-out; }
#lightbox.active { display:flex; }
#lb-img { max-width:90vw;max-height:90vh;object-fit:contain; }
#lb-prev,#lb-next { position:absolute;top:50%;transform:translateY(-50%);background:rgba(200,168,104,.85);color:#111;border:none;font-size:1.4rem;padding:.9rem .7rem;cursor:pointer;z-index:2; }
#lb-prev{left:1.5rem}#lb-next{right:1.5rem}
#lb-close{position:absolute;top:1rem;right:1.5rem;background:none;border:none;color:#666;font-size:1.8rem;cursor:pointer;}
#lb-close:hover{color:#fff}

/* ── RESPONSIVE ─────────────────────────────── */
@media(max-width:900px) {
  .about-inner{grid-template-columns:1fr;gap:3rem}
  .album-grid{grid-template-columns:1fr}
  .album-cover-wrap{max-width:300px;margin:0 auto}
  .next-album-inner{grid-template-columns:1fr}
  .next-album-vinyl{display:none}
  .press-grid{grid-template-columns:1fr}
  .gallery-teaser{grid-template-columns:repeat(2,1fr)}
}
@media(max-width:600px) {
  #primary-nav{display:none}
  #primary-nav.open{display:flex;position:fixed;top:68px;left:0;right:0;bottom:0;background:rgba(11,12,16,.98);flex-direction:column;align-items:center;justify-content:center;}
  #primary-nav.open ul{flex-direction:column;gap:2rem;text-align:center}
  #primary-nav.open ul li a{font-size:1.1rem}
  .nav-toggle{display:flex}
  .section,.about-inner,.contact-inner,.album-section-inner,.next-album-inner{padding:65px 1.5rem}
  .hero-logo-img{max-width:320px}
}

/* ── Gallery background (sorted out) */
#fotos {
  position: relative;
  border-top: 1px solid var(--border);
}
#fotos::before {
  content: ''; position: absolute; inset: 0;
  background-size: cover; background-position: center;
  filter: brightness(.12) saturate(.5);
}
#fotos .section { position: relative; z-index: 1; }

/* ── Press background (sorted out) */
#presse::before {
  content: ''; position: absolute; inset: 0;
  background-size: cover; background-position: center;
  filter: brightness(.15) saturate(.5);
}
#presse { position: relative; }
#presse .section { position: relative; z-index: 1; }
