/* =========================
   VARIABLES
========================= */
:root {
  --neon-core: #ffd2a6;
  --neon-hot: #ff7a2b;
  --neon-outer: #ff2a00;

  --tube-core: #ffe3c7;
  --tube-warm: #cc7a2c;
  --glow-hot: #ff6a2a;
  --glow-red: #ff2a00;

  --bg: #050505;
  --footer-neon: #aefcde;
}

/* =========================
   BASE SETUP (FIXED MOBILE BG + BLACK FALLBACK)
========================= */
html,
body {
  min-height: 100%;
  margin: 0;
  padding: 0;
  font-family: 'Gentium Book Basic', serif;
  color: #fff;

  /* fallback behind everything */
  background-color: #000;
}

/* Fixed background layer (prevents "bg ends halfway down") */
body {
  position: relative;
  z-index: 0;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;

  background-color: #000;
  background-image: url('resources/bg-presse.png');
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;

  transform: translateZ(0);
}

/* Links */
a,
a:visited {
  color: #C5C5C5;
  text-decoration: none;
}
a:hover { color: #ffffff; }
a:active { color: #C5C5C5; }

/* Container */
.container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 10px;
}

/* Header spacing (since top bar is fixed) */
header {
  text-align: center;
  margin: 90px 0 30px;
}

header p { color: #fff; }

h1 {
  font-size: 33pt;
  color: #fff;
  font-weight: 300;
}

h2 {
  font-family: 'Urbanist', sans-serif;
  font-weight: 300;
  font-size: 19pt;
  text-transform: uppercase;
  letter-spacing: 0.05em;

  color: #bdf1d6;

  /* subtle glow */
  text-shadow:
    0 0 6px rgba(132,229,196,0.35),
    0 0 14px rgba(132,229,196,0.15);
}

p {
  font-family: "Inter", sans-serif;
  font-weight: 300;
  letter-spacing: 0.01em;
  font-size: 14px;
}


@media (max-width: 768px) {
  h2 { text-align: center; }
}

#English { color: #A7A7A7; }

.top-spacer { height: 100px; }

@media (max-width: 600px) {
  .top-spacer { display: none;}  /* tweak: 30–60px usually feels right */
}

/* =========================
   TOP SOCIAL BAR
========================= */
.top-social-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #000;

  display: flex;
  justify-content: space-between;
  align-items: center;

  padding: 10px 20px;
  z-index: 9999;

  box-shadow:
    0 0 5px #ffffff,
    0 0 10px #ff5555,
    0 0 20px #ff0000;
}

.press-kit-text {
  text-align: left;
  padding-left: 20px;
}

.press-kit-text img {
  width: 100%;
  max-width: 300px;
  height: auto;
  display: inline-block;
}

/* Shared social icon styling (works for top + footer) */
.social-icons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.social-icon {
  display: inline-block;
}

.social-icon img {
  width: 32px;
  height: 32px;
  transition: transform 0.3s ease;
}

.social-icon:hover img {
  transform: scale(1.15);
  cursor: pointer;
}

/* Top bar spacing (desktop) */
.top-social-icons {
  margin-right: 35px;
}

@media (min-width: 900px) {
  .top-social-icons {
    margin-right: 105px;
  }
}

/* =========================
   MOBILE: top bar = logo only (icons move to footer)
========================= */
@media (max-width: 600px) {

  .top-social-bar {
    flex-direction: column;
    justify-content: center;
    align-items: center;

    padding: 14px 0;   /* 🔥 remove horizontal padding */
    text-align: center;
  }

  .press-kit-text {
    padding: 0;
    margin: 0;
    text-align: center;
  }

  .press-kit-text img {
    display: block;
    margin: 0 auto;
    width: 90%;
    max-width: 400px;
  }

  .top-social-icons {
    display: none;
  }

  body {
    padding-top: 170px;
  }
}

.controls .btn {
  appearance: none;
  -webkit-appearance: none; /* iOS Safari */
  border: none;
  background: transparent;
  color: white;
  font-size: 22px;
  cursor: pointer;
  padding: 10px;
}

/* Remove grey tap highlight on iOS */
.controls .btn {
  -webkit-tap-highlight-color: transparent;
}

/* Optional: prevent iOS rounded default look */
.controls .btn:focus {
  outline: none;
}


/* =========================
   CONTENT SECTIONS
========================= */
.content-section {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  margin: 40px 0;
}

.column {
  flex: 2;
  max-width: 700px;
}

@media (max-width: 600px) {
  .content-section {
    flex-direction: column;
    align-items: center;
	  gap: 0px;
  margin: 0px 0;  
  }

  .music-player {
    max-width: 100%;
    margin-top: 25px;
  }
}

/* =========================
   PHOTOS
========================= */
.photo-grid {
  display: flex;
  justify-content: flex-start;
  gap: 20px;
  flex-wrap: wrap;
}

.photo {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
}

.photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.photo.widescreen {
  flex: 0 0 calc(65% - 10px);
  height: 320px;
}

.photo.square {
  flex: 0 0 calc(35% - 10px);
  height: 320px;
}

.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
  opacity: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: opacity 0.3s;
}

.photo:hover .overlay { opacity: 1; }

.download-links a {
  color: #fff;
  padding: 5px 10px;
  border-radius: 6px;
  background-color: rgba(0,0,0,0.6);
}

@media (max-width: 768px) {
  .photo-grid {
    flex-direction: column;
    gap: 20px;
    align-items: center;
  }

  .photo.widescreen,
  .photo.square {
    flex: 0 0 100%;
    max-width: 500px;
    height: auto;
  }

  .photo img { height: auto; }
}

/* =========================
   MUSIC PLAYER
========================= */
.music-player {
  flex: 1;
  max-width: 350px;
  background: #111;
  padding: 20px;
  border-radius: 12px;
  color: #eee;
  font-family: 'Helvetica Neue', Arial, sans-serif;
  box-shadow: 0 8px 20px rgba(0,0,0,0.6);
  text-align: center;
}

.album-art img {
  width: 100%;
  border-radius: 10px;
  transition: transform 0.5s ease;
}

.album-art img.playing {
  transform: scale(1.07);
}

.info h3 {
  padding-top: 2px;
  font-size: 1.1rem;
  margin: 0;
}

.info #artist {
  font-size: 0.85rem;
  opacity: 0.8;
  margin: 1px 0;
}

.controls { margin: 15px 0; }

.btn {
  background: none;
  border: none;
  color: #eee;
  font-size: 1.4rem;
  margin: 0 12px;
  cursor: pointer;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.btn:hover {
  transform: scale(1.2);
  opacity: 0.7;
}

.progress-container {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.8rem;
}

#progress-bar {
  flex: 1;
  height: 6px;
  background: #333;
  border-radius: 3px;
  overflow: hidden;
  cursor: pointer;
}

#progress {
  width: 0%;
  height: 100%;
  background: #eee;
}

/* =========================
   RELEASES (FIXED)
========================= */
.releases-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 20px;
}

.release {
  flex: 0 1 280px;
  background-color: #111;
  padding: 10px;
  border-radius: 8px;
  text-align: center;
  color: #fff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.release:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 20px rgba(0,0,0,0.5);
  cursor: pointer;
}

.release img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 6px;
  margin-bottom: 10px;
  display: block;
}

.release-title,
.release-date {
  display: block;
  margin-bottom: 4px;
  font-weight: 500;
}

/* =========================
   VIDEO PLAYER
========================= */
.video-card {
  background: #111;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.5);
  display: inline-block;
  max-width: 100%;
}

.video-container {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  flex-wrap: wrap;
}

.main-video {
  flex: 2;
  min-width: 320px;
}

.main-video video {
  width: 100%;
  border-radius: 10px;
  background: #000;
}

.playlist {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 180px;
}

.playlist button.track {
  background-color: transparent;
  color: #eee;
  border: none;
  padding: 8px 12px;
  text-align: left;
  border-radius: 6px;
  cursor: pointer;
  transition: transform 0.2s ease;
  font-size: 0.9rem;
}

.playlist button.track:hover { transform: scale(1.02); }

.track-artist {
  display: block;
  font-weight: bold;
  font-size: 0.85rem;
}

.track-title {
  display: block;
  font-size: 0.8rem;
  opacity: 0.8;
}

@media (max-width: 900px) {
  .video-container { flex-direction: column; }

  .playlist {
    align-items: center;
    min-width: 100%;
    gap: 12px;
  }

  .playlist button.track {
    width: 100%;
    max-width: 420px;
    text-align: center;
    padding: 12px 14px;
    font-size: 1rem;
  }

  .track-artist { font-size: 0.95rem; }
  .track-title { font-size: 0.9rem; opacity: 0.85; }
}

/* =========================
   FOOTER
========================= */
.site-footer {
  background: #000;
  text-align: center;
  padding: 40px 20px;
	  box-shadow:
    0 0 5px #ffffff,
    0 0 10px #ff5555,
    0 0 20px #ff0000;
}

/* footer socials hidden by default */
.footer-social-icons {
  display: none;
  margin-bottom: 18px;
}

/* mobile: show footer socials */
@media (max-width: 600px) {
  .footer-social-icons {
    display: flex;
  }
}

.site-footer p {
  margin: 0;

  font-family: "Futura PT", "ITC Avant Garde Gothic", "Century Gothic", sans-serif;
  font-weight: 300;
  font-size: 12px;
  letter-spacing: 0.10em;
  line-height: 1.8;
  text-transform: uppercase;

  color: #fff;

  text-shadow:
    0 0 1px rgba(255,230,210,0.25),
    0 0 6px rgba(170,6,0,0.85),
    0 0 14px rgba(170,6,0,0.75),
    0 0 28px rgba(120,0,0,0.65);
}
