/* --- Fonts --- */
@font-face {
  font-family: 'MedanosSectionCaps';
  src: url('fonts/MedanosSectionCaps-Regular.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

/* --- Variables --- */
:root {
  --bg: #0c0c0c;
  --bg-card: #141414;
  --text: #e8e6e3;
  --text-muted: #9a9590;
  --accent: #e63946;
  --accent-soft: #c1121f;
  --spotify: #1db954;
  --ig: #e4405f;
  --yt: #ff0000;
  --apple: #fa243c;
  --tiktok: #000000;
  --border: #2a2a2a;
  --font-display: "Bebas Neue", sans-serif;
  --font-body: "Outfit", sans-serif;
  --font-ep-title: "Permanent Marker", cursive;
}

/* --- Reset & base --- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 400;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

/* --- Header --- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1rem 1.5rem;
  background: rgba(12, 12, 12, 0.9);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}
.nav {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  font-family: var(--font-display);
  font-size: 1.75rem;
  letter-spacing: 0.15em;
  color: var(--text);
  text-decoration: none;
  transition: color 0.2s;
}
.logo:hover { color: var(--accent); }
.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 300;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--accent); }

/* Google Translate widget in header */
.translate-wrapper {
  display: flex;
  align-items: center;
}
.translate-wrapper .skiptranslate {
  font-size: 0.85rem;
}
.translate-wrapper select,
.translate-wrapper .goog-te-combo {
  background: var(--bg-card);
  color: var(--text);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 0.35rem 0.5rem;
  font-family: var(--font-body);
  font-size: 0.85rem;
  cursor: pointer;
}
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  width: 22px;
  height: 2px;
  background: var(--text);
}

/* --- Hero --- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem 1.5rem 4rem;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 50% 40%, rgba(230, 57, 70, 0.15) 0%, transparent 50%),
    linear-gradient(180deg, rgba(12, 12, 12, 0.75) 0%, rgba(12, 12, 12, 0.85) 50%, rgba(12, 12, 12, 0.9) 100%),
    url('images/background1.png') center / cover no-repeat;
  pointer-events: none;
}
.hero-content { position: relative; z-index: 1; }
.hero-title {
  margin: 0 0 0.5rem;
  line-height: 0;
}
.hero-title-img {
  display: block;
  width: min(85vw, 520px);
  max-width: 100%;
  height: auto;
  margin: 0 auto;
  filter: drop-shadow(0 0 60px rgba(230, 57, 70, 0.2));
}
.hero-tagline {
  font-weight: 300;
  font-size: 1.1rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin: 0 0 2.5rem;
}
.hero-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.85rem 1.75rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-decoration: none;
  border-radius: 4px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.btn:hover { transform: translateY(-2px); }
.btn-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
}
.btn-icon svg {
  display: block;
}
.btn-label {
  display: inline-block;
}
.btn-spotify {
  background: var(--spotify);
  color: #0c0c0c;
}
.btn-spotify:hover { box-shadow: 0 6px 24px rgba(29, 185, 84, 0.4); }
.btn-ig {
  background: var(--ig);
  color: #ffffff;
  border: none;
}
.btn-ig:hover {
  box-shadow: 0 6px 24px rgba(228, 64, 95, 0.4);
}
.btn-yt {
  background: var(--yt);
  color: #ffffff;
  border: none;
}
.btn-yt:hover {
  box-shadow: 0 6px 24px rgba(255, 0, 0, 0.4);
}
.btn-apple {
  background: var(--apple);
  color: #ffffff;
}
.btn-apple:hover {
  box-shadow: 0 6px 24px rgba(250, 36, 60, 0.4);
}
.btn-tiktok {
  background: var(--tiktok);
  color: #ffffff;
  border: 1px solid var(--border);
}
.btn-tiktok:hover {
  box-shadow: 0 6px 24px rgba(255, 255, 255, 0.15);
}
.scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 1.5rem;
  color: var(--text-muted);
  animation: bounce 2s ease-in-out infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* --- Sections --- */
.section {
  padding: 4.5rem 1.5rem;
  border-top: 1px solid var(--border);
}
.container {
  max-width: 700px;
  margin: 0 auto;
}
.section-title {
  font-family: var(--font-ep-title);
  font-size: 2.25rem;
  letter-spacing: 2px;
  margin: 0 0 2rem;
  color: var(--text);
}

/* --- About --- */
.about-grid {
  display: grid;
  gap: 1.5rem;
}
.about-text {
  margin: 0;
  font-weight: 300;
  color: var(--text-muted);
  font-size: 1.05rem;
}
.about-text-en { opacity: 0.9; }

/* --- Members --- */
.members {
  background: var(--bg-card);
}
.members-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1rem;
}
.members-list li {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  font-size: 1.1rem;
}
.role {
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  min-width: 140px;
}

/* --- Music --- */
.music-intro {
  color: var(--text-muted);
  margin: 0 0 1.25rem;
  font-weight: 300;
}
.tracks-list {
  list-style: none;
  margin: 0 0 1.5rem;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
}
.tracks-list li {
  font-size: 1.05rem;
  padding: 0.35rem 0;
  border-bottom: 1px solid var(--border);
}
.music-release {
  margin: 0;
  font-size: 0.95rem;
  color: var(--text-muted);
}
.music-release strong {
  font-family: var(--font-ep-title);
  color: var(--accent);
}

/* --- Merch --- */
.merch-intro {
  color: var(--text-muted);
  margin: 0 0 1.5rem;
  font-weight: 300;
}
.btn-merch {
  background: var(--accent);
  color: #fff;
  border: none;
}
.btn-merch:hover { box-shadow: 0 6px 24px rgba(230, 57, 70, 0.4); }

/* --- Listen (Spotify embed) --- */
.listen {
  background: var(--bg-card);
}
.listen-embed {
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 1.5rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}
.listen-embed iframe { display: block; }
.listen-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

/* --- News --- */
.news {
  background: var(--bg-card);
}
.news-intro {
  color: var(--text-muted);
  margin: 0 0 2rem;
  font-weight: 300;
}
.news-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1.5rem;
}
.news-item {
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
}
.news-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.news-date {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--accent);
  margin-bottom: 0.35rem;
}
.news-item-title {
  font-family: var(--font-body);
  font-size: 1.15rem;
  font-weight: 600;
  margin: 0 0 0.5rem;
  color: var(--text);
}
.news-item-title.ep-title-style {
  font-family: var(--font-ep-title);
  font-weight: 400;
}
.news-item-text {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.55;
}

/* --- Tour --- */
.tour-intro {
  color: var(--text-muted);
  margin: 0 0 2rem;
  font-weight: 300;
}
.tour-list {
  display: grid;
  gap: 1rem;
}
.tour-empty {
  margin: 0;
  font-size: 1rem;
  color: var(--text-muted);
  font-weight: 300;
  text-align: center;
  padding: 2rem 1rem;
}
.tour-date {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem 1.5rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
}
.tour-date-day {
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--accent);
  white-space: nowrap;
}
.tour-date-info {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}
.tour-date-venue {
  font-weight: 600;
  color: var(--text);
}
.tour-date-city {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: 300;
}
.tour-date-link {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
  white-space: nowrap;
}
.tour-date-link:hover {
  text-decoration: underline;
}

/* --- Footer --- */
.footer {
  padding: 2.5rem 1.5rem;
  border-top: 1px solid var(--border);
  text-align: center;
}
.footer-brand {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 0.2em;
  margin: 0 0 1rem;
}
.footer-social {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  margin-bottom: 1rem;
}
.footer-social a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.footer-social a:hover { color: var(--accent); }
.footer-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
}
.footer-icon svg { display: block; }
.footer-copy {
  margin: 0;
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 300;
}

/* --- Mobile --- */
@media (max-width: 700px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: 220px;
    background: var(--bg-card);
    border-left: 1px solid var(--border);
    flex-direction: column;
    padding: 5rem 1.5rem 2rem;
    gap: 1.5rem;
    transform: translateX(100%);
    transition: transform 0.3s;
  }
  .nav-links.is-open { transform: translateX(0); }
  .nav-toggle { display: flex; }
  .hero-title-img { width: min(90vw, 420px); }
  .hero-tagline { letter-spacing: 0.15em; font-size: 0.95rem; }
  .section { padding: 3rem 1.5rem; }
  .section-title { font-size: 1.75rem; letter-spacing: 0.15em; }
  .members-list li { flex-direction: column; gap: 0.25rem; }
  .role { min-width: auto; }
  .tour-date {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }
}
