/* ── Reset & Base ─────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg-color: #0d0d0d;
  --accent: #6c63ff;
  --accent-hover: #574fd6;
  --text-primary: #ffffff;
  --text-secondary: #a0a0b0;
  --card-bg: rgba(255, 255, 255, 0.05);
  --border: rgba(255, 255, 255, 0.08);
  --font: 'Segoe UI', system-ui, -apple-system, sans-serif;
}

body {
  font-family: var(--font);
  background-color: var(--bg-color);
  background-image: url('../images/gerimental_team.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  color: var(--text-primary);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  overflow-y: auto;
  overflow-x: hidden;
  position: relative;
  padding: 0;
}

/* ── Navbar ───────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: linear-gradient(180deg, rgba(10, 8, 30, 0.95) 0%, rgba(10, 8, 30, 0.85) 100%);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.navbar-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  color: var(--accent);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 1px;
}

.navbar-brand img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.navbar-brand:hover {
  opacity: 0.85;
}

.navbar-menu {
  display: flex;
  gap: 2rem;
  list-style: none;
  align-items: center;
}

.navbar-item a {
  text-decoration: none;
  color: var(--text-secondary);
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.2s;
}

.navbar-item a:hover {
  color: var(--accent);
}

.navbar-item.active a {
  color: var(--accent);
  font-weight: 600;
}

.navbar-toggle {
  display: none;
  flex-direction: column;
  gap: 0.35rem;
  background: none;
  border: none;
  cursor: pointer;
}

.navbar-toggle span {
  width: 24px;
  height: 2.5px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all 0.3s;
}

.navbar-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.navbar-toggle.active span:nth-child(2) {
  opacity: 0;
}

.navbar-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

/* Main content padding to account for fixed navbar */
.container {
  margin-top: 70px;
  padding: 3rem 2rem 3rem;
  flex: 1;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 768px) {
  .navbar-wrap {
    padding: 0 1.5rem;
  }

  .navbar-brand {
    gap: 0.4rem;
  }

  .navbar-brand img {
    width: 32px;
    height: 32px;
  }

  .navbar-toggle {
    display: flex;
  }

  .navbar-menu {
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    background: rgba(10, 8, 30, 0.98);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }

  .navbar-menu.active {
    max-height: 300px;
  }

  .navbar-item {
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  }

  .navbar-item a {
    display: block;
    padding: 1rem 1.5rem;
    width: 100%;
  }

  .container {
    margin-top: 70px;
    padding: 2rem 1.5rem;
  }
}

/* ── Dark overlay over the background image ──────────── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10, 8, 30, 0.72) 0%,
    rgba(10, 8, 30, 0.60) 50%,
    rgba(10, 8, 30, 0.80) 100%
  );
  pointer-events: none;
  z-index: 0;
}

/* ── Accent glow on top of overlay ───────────────────── */
body::after {
  content: '';
  position: fixed;
  top: -30%;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(108, 99, 255, 0.20) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

/* ── Container ────────────────────────────────────────── */
.container {
  position: relative;
  z-index: 1;
}

.content {
  width: 100%;
  max-width: 720px;
  padding: 2rem;
  text-align: center;
  margin: 0 auto;
}

/* ── Logo ─────────────────────────────────────────────── */
.logo-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 1.75rem;
}

.logo {
  width: 115px;
  height: 115px;
  object-fit: contain;
  opacity: 0.95;
  animation: logoPulse 3.5s ease-in-out infinite;
}

@keyframes logoPulse {
  0%, 100% { filter: drop-shadow(0 0 6px rgba(108,99,255,0.3)); }
  50%       { filter: drop-shadow(0 0 18px rgba(108,99,255,0.75)); }
}

/* ── Entrance animations ──────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

.logo-header  { animation: fadeUp 0.7s ease both; animation-delay: 0.1s; }
.headline     { animation: fadeUp 0.7s ease both; animation-delay: 0.25s; }
.subtext      { animation: fadeUp 0.7s ease both; animation-delay: 0.4s; }
.app-live-cta { animation: fadeUp 0.7s ease both; animation-delay: 0.55s; }
.socials      { animation: fadeUp 0.7s ease both; animation-delay: 0.9s; }

/* ── Band Name Label ──────────────────────────────────── */
.label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(108, 99, 255, 0.15);
  border: 1px solid rgba(108, 99, 255, 0.35);
  border-radius: 50px;
  padding: 0.35rem 1rem;
  margin-bottom: 1rem;
}

/* ── Headline ─────────────────────────────────────────── */
.headline {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 700;
  letter-spacing: -0.5px;
  line-height: 1.15;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #fff 40%, var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.subtext {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 460px;
  margin: 0 auto 1.6rem;
  line-height: 1.7;
}

/* ── App Live CTA ────────────────────────────────────── */
.app-live-cta {
  max-width: 600px;
  margin: 0 auto 2.4rem;
  padding: 1.45rem 1.3rem 1.6rem;
  border-radius: 18px;
  border: 1px solid rgba(108, 99, 255, 0.3);
  background: linear-gradient(
    135deg,
    rgba(108, 99, 255, 0.22) 0%,
    rgba(255, 138, 0, 0.14) 100%
  );
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.32);
}

.live-pill {
  display: inline-block;
  margin: 0 0 0.55rem;
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  letter-spacing: 1.1px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
}

.app-live-cta h2 {
  margin: 0 0 0.55rem;
  font-size: clamp(1.25rem, 3vw, 1.65rem);
  color: #fff;
  letter-spacing: -0.2px;
}

.app-live-cta p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.55;
}

.app-download-btn {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.86rem 1.65rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.2px;
  color: #0c0b1c;
  background: linear-gradient(135deg, #ffd34d 0%, #ff9d29 100%);
  transition: transform 0.16s ease, box-shadow 0.16s ease, filter 0.16s ease;
  box-shadow: 0 8px 24px rgba(255, 157, 41, 0.34);
}

.app-download-btn:hover {
  transform: translateY(-1px);
  filter: brightness(1.02);
  box-shadow: 0 10px 26px rgba(255, 157, 41, 0.4);
}

.app-download-btn:active {
  transform: translateY(0);
}

/* ── Countdown ────────────────────────────────────────── */
.countdown {
  display: flex;
  justify-content: center;
  gap: 1.25rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.countdown-item {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.25rem 1.75rem;
  min-width: 90px;
  backdrop-filter: blur(10px);
}

.countdown-item span {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
  color: var(--accent);
  font-variant-numeric: tabular-nums;
}

.countdown-item label {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-secondary);
  margin-top: 0.5rem;
}
/* Honeypot — invisible to real users */
#honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
  tab-index: -1;
}
/* ── Notify Form ──────────────────────────────────────── */
.notify-form {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 0.75rem;
}

.notify-form input {
  flex: 1;
  min-width: 220px;
  max-width: 340px;
  padding: 0.85rem 1.25rem;
  border-radius: 50px;
  border: 1px solid var(--border);
  background: var(--card-bg);
  color: var(--text-primary);
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.2s;
  backdrop-filter: blur(8px);
}

.notify-form input::placeholder {
  color: var(--text-secondary);
}

.notify-form input:focus {
  border-color: var(--accent);
}

.notify-form button {
  padding: 0.85rem 1.75rem;
  border-radius: 50px;
  border: none;
  background: var(--accent);
  color: #fff;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, transform 0.1s;
  white-space: nowrap;
}

.notify-form button:hover {
  background: var(--accent-hover);
}

.notify-form button:active {
  transform: scale(0.97);
}

/* ── Form Message ─────────────────────────────────────── */
.form-message {
  font-size: 0.9rem;
  min-height: 1.4rem;
  color: #6ee7b7;
  margin-bottom: 2.5rem;
  transition: opacity 0.3s;
}

/* ── Socials ──────────────────────────────────────────── */
.socials {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--card-bg);
  text-decoration: none;
  transition: border-color 0.2s, background 0.2s;
  backdrop-filter: blur(8px);
}

.socials a img {
  width: 18px;
  height: 18px;
  filter: invert(1) brightness(0.65);
  transition: filter 0.2s;
}

.socials a:hover {
  border-color: var(--accent);
  background: rgba(108, 99, 255, 0.15);
}

.socials a:hover img {
  filter: invert(0.45) sepia(1) saturate(3) hue-rotate(220deg) brightness(1.1);
}

/* ── Latest Video ─────────────────────────────────────── */
.video-section {
  margin-top: 2.5rem;
  animation: fadeUp 0.7s ease both;
  animation-delay: 1.05s;
}

.video-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 0.9rem;
}

.video-thumb {
  display: block;
  position: relative;
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.5);
  text-decoration: none;
  cursor: pointer;
}

.video-thumb img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  transition: transform 0.4s ease, brightness 0.3s ease;
  filter: brightness(0.85);
}

.video-thumb:hover img {
  transform: scale(1.03);
  filter: brightness(0.65);
}

.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -60%);
  width: 68px;
  transition: transform 0.2s ease, opacity 0.2s ease;
  opacity: 0.92;
}

.video-thumb:hover .play-btn {
  transform: translate(-50%, -60%) scale(1.12);
  opacity: 1;
}

.watch-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.75));
  color: #fff;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  padding: 1.5rem 1rem 0.85rem;
  text-align: center;
  opacity: 0;
  transition: opacity 0.25s ease;
}

.video-thumb:hover .watch-label {
  opacity: 1;
}

/* ── Copyright ───────────────────────────────────────── */
.copyright {
  margin-top: 2rem;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.25);
  letter-spacing: 0.5px;
}

.copyright a {
  color: rgba(255,255,255,0.35);
  text-decoration: none;
  transition: color 0.2s;
}

.copyright a:hover {
  color: var(--accent);
}

/* ── Talent Search Promo ──────────────────────────────── */
.talent-promo {
  margin-top: 4rem;
  padding: 2.5rem 1.75rem;
  background: linear-gradient(
    135deg,
    rgba(108, 99, 255, 0.12) 0%,
    rgba(255, 138, 0, 0.08) 100%
  );
  border: 1px solid rgba(108, 99, 255, 0.25);
  border-radius: 20px;
  backdrop-filter: blur(12px);
  animation: fadeUp 0.7s ease both;
  animation-delay: 1.2s;
}

.talent-promo h2 {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  background: linear-gradient(135deg, #ffd34d, var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.talent-promo .promo-subtext {
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.talent-promo-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1.5rem;
  text-align: left;
}

.talent-feature {
  padding: 1rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.talent-feature strong {
  display: block;
  color: #ffd34d;
  font-size: 0.95rem;
  margin-bottom: 0.3rem;
}

.cta-talent {
  display: inline-flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: center;
}

.btn-talent {
  padding: 0.85rem 1.5rem;
  border-radius: 50px;
  border: none;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s;
  white-space: nowrap;
}

.btn-talent.primary {
  background: linear-gradient(135deg, #ffd34d, #ff8a00);
  color: #0d0d0d;
}

.btn-talent.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 138, 0, 0.3);
}

.btn-talent.secondary {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: var(--text-primary);
}

.btn-talent.secondary:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(108, 99, 255, 0.1);
}

@media (max-width: 600px) {
  .talent-promo-features {
    grid-template-columns: 1fr;
  }
  
  .talent-promo h2 {
    font-size: 1.3rem;
  }
  
  .cta-talent {
    flex-direction: column;
  }
  
  .btn-talent {
    width: 100%;
  }
}

/* ── Responsive ───────────────────────────────────────── */
@media (max-width: 480px) {
  .navbar-wrap {
    padding: 0 1.5rem;
  }

  .navbar-brand {
    gap: 0.4rem;
  }

  .navbar-brand img {
    width: 32px;
    height: 32px;
  }

  .navbar-toggle {
    display: flex;
  }

  .navbar-menu {
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    background: rgba(10, 8, 30, 0.98);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }

  .navbar-menu.active {
    max-height: 300px;
  }

  .navbar-item {
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  }

  .navbar-item a {
    display: block;
    padding: 1rem 1.5rem;
    width: 100%;
  }

  .countdown-item {
    min-width: 70px;
    padding: 1rem 1.25rem;
  }

  .countdown-item span {
    font-size: 2rem;
  }
}
