/* =======================================
   ZOE BROOKS — TEKSTY UTWORÓW
   Minimalizm • Klimat • Skupienie
   ======================================= */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  height: 100%;
  font-family: "Aptos Display", system-ui, Arial, sans-serif;
  color: white;
}

/* =======================================
   TŁO
   ======================================= */

body {
  background:
    linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.65)),
    url("tlo.jpg") no-repeat center center fixed;
  background-size: cover;
}

/* =======================================
   HEADER
   ======================================= */

.site-header {
  backdrop-filter: blur(8px);
  background: rgba(0, 0, 0, 0.55);
  border-bottom: 1px solid rgba(255,255,255,0.15);
  padding: 16px 28px;
}

.brand {
  display: flex;
  flex-direction: column;
}

.logo {
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 1.1rem;
}

.tag {
  font-size: 0.85rem;
  opacity: 0.8;
  margin-top: 4px;
}

/* =======================================
   LAYOUT
   ======================================= */

.wrap {
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 24px;
}

/* =======================================
   HERO
   ======================================= */

.hero {
  text-align: center;
  margin-bottom: 40px;
}

.hero h1 {
  font-size: 2.4rem;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.hero p {
  opacity: 0.85;
  font-size: 1rem;
}

/* =======================================
   TEKST UTWORU
   ======================================= */

.lyrics-section {
  display: flex;
  justify-content: center;
}

.lyrics-content {
  width: 100%;
  max-width: 720px;
  padding: 60px 50px;
  background: rgba(0, 0, 0, 0.55);
  border-radius: 18px;
  backdrop-filter: blur(4px);
  line-height: 1.9;
  font-size: 1.05rem;
  white-space: pre-line;
  text-align: left;
  letter-spacing: 0.3px;
}

/* =======================================
   STOPKA
   ======================================= */

.site-footer {
  text-align: center;
  padding: 40px 20px;
  margin-top: 60px;
  font-size: 0.9rem;
  opacity: 0.7;
  border-top: 1px solid rgba(255,255,255,0.15);
}