/* ============================================
   MALENKO PODCAST — shared styles
   Colors from brand artwork: near-black, white, gold glow
   Font: Unbounded (Google Fonts)
   ============================================ */

:root {
  --black: #0a0a08;
  --dark: #121210;
  --card: #1a1a17;
  --white: #ffffff;
  --grey: #a3a39b;
  --gold: #e8c33f;
  --gold-deep: #b98a1e;
  --gold-glow: rgba(232, 195, 63, 0.14);
  --yt-red: #ff0000;
  --spotify-green: #1ed760;
  --radius: 20px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Unbounded', sans-serif;
  background: var(--black);
  color: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

.container {
  width: min(1140px, 92%);
  margin: 0 auto;
}

/* ---------- Header ---------- */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 10, 8, 0.85);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  gap: 24px;
}

.nav-logo img { height: 30px; width: auto; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}

.nav-links a {
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 0.06em;
  color: var(--grey);
  transition: color 0.25s;
  text-transform: uppercase;
}

.nav-links a:hover, .nav-links a.active { color: var(--gold); }

/* Language toggle */
.lang-toggle {
  display: flex;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  overflow: hidden;
}

.lang-toggle button {
  font-family: 'Unbounded', sans-serif;
  font-size: 11px;
  padding: 7px 14px;
  background: transparent;
  color: var(--grey);
  border: none;
  cursor: pointer;
  transition: all 0.25s;
}

.lang-toggle button.active {
  background: var(--gold);
  color: var(--black);
  font-weight: 600;
}

/* Mobile nav */
.burger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
}
.burger span {
  width: 24px; height: 2px;
  background: var(--white);
  transition: 0.3s;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: 110px 0 130px;
  text-align: left;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  bottom: -220px;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 500px;
  background: radial-gradient(ellipse at center, var(--gold-glow) 0%, transparent 65%);
  pointer-events: none;
}

.hero-kicker {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(232, 195, 63, 0.35);
  border-radius: 999px;
  padding: 8px 18px;
  margin-bottom: 28px;
}

.hero h1 {
  font-size: clamp(34px, 6vw, 68px);
  font-weight: 700;
  line-height: 1.12;
  max-width: 15ch;
}

.hero h1 .gold { color: var(--gold); }

.hero p {
  margin-top: 24px;
  max-width: 54ch;
  color: var(--grey);
  font-size: 15px;
  font-weight: 200;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 40px;
}

/* ---------- Hero photo ---------- */
.hero-photo {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

.hero-photo::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 130%;
  height: 75%;
  background: radial-gradient(ellipse at 50% 100%, rgba(232, 195, 63, 0.22) 0%, transparent 65%);
  pointer-events: none;
}

.hero-photo img {
  position: relative;
  height: 480px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  filter: drop-shadow(0 24px 60px rgba(0, 0, 0, 0.65));
}

@media (max-width: 860px) {
  .hero-photo img { height: 400px; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Unbounded', sans-serif;
  font-size: 13px;
  font-weight: 500;
  padding: 15px 28px;
  border-radius: 999px;
  transition: transform 0.2s, box-shadow 0.2s, background 0.25s;
  cursor: pointer;
  border: none;
}

.btn:hover { transform: translateY(-2px); }

.btn svg { width: 20px; height: 20px; flex-shrink: 0; }

.btn-youtube { background: var(--yt-red); color: #fff; }
.btn-youtube:hover { box-shadow: 0 8px 30px rgba(255, 0, 0, 0.35); }

.btn-spotify { background: var(--spotify-green); color: #0a0a08; }
.btn-spotify:hover { box-shadow: 0 8px 30px rgba(30, 215, 96, 0.35); }

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.25);
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }

.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-deep));
  color: var(--black);
}
.btn-gold:hover { box-shadow: 0 8px 30px rgba(232, 195, 63, 0.35); }

/* ---------- Sections ---------- */
section { padding: 90px 0; position: relative; }

.section-kicker {
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

.section-title {
  font-size: clamp(26px, 4vw, 42px);
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 20px;
}

.section-lead {
  color: var(--grey);
  font-weight: 200;
  font-size: 15px;
  max-width: 62ch;
}

/* ---------- Podcast cards ---------- */
.podcast-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
  margin-top: 56px;
}

.podcast-card {
  position: relative;
  background: linear-gradient(180deg, var(--card) 0%, var(--dark) 100%);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--radius);
  padding: 44px 38px;
  overflow: hidden;
  transition: transform 0.3s, border-color 0.3s;
}

.podcast-card:hover {
  transform: translateY(-6px);
  border-color: rgba(232, 195, 63, 0.4);
}

.podcast-card::after {
  content: '';
  position: absolute;
  bottom: -120px;
  right: -80px;
  width: 320px;
  height: 260px;
  background: radial-gradient(ellipse at center, var(--gold-glow) 0%, transparent 70%);
  pointer-events: none;
}

.podcast-tag {
  display: inline-block;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(232, 195, 63, 0.1);
  border: 1px solid rgba(232, 195, 63, 0.3);
  border-radius: 999px;
  padding: 6px 14px;
  margin-bottom: 22px;
}

.podcast-card h3 {
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 14px;
}

.podcast-card p {
  color: var(--grey);
  font-size: 13.5px;
  font-weight: 200;
  margin-bottom: 30px;
}

.podcast-card .btn { font-size: 12px; padding: 12px 22px; }

/* ---------- Topics / focus pills ---------- */
.topics {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 40px;
}

.topic-pill {
  font-size: 12px;
  font-weight: 300;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 999px;
  padding: 12px 22px;
  transition: all 0.25s;
}

.topic-pill:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(232, 195, 63, 0.06);
}

/* ---------- Coming soon ---------- */
.coming-soon {
  text-align: center;
  background: linear-gradient(180deg, var(--dark) 0%, var(--black) 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.coming-soon .eq {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 5px;
  height: 48px;
  margin-bottom: 34px;
}

.coming-soon .eq span {
  width: 6px;
  border-radius: 3px;
  background: linear-gradient(180deg, var(--gold), var(--gold-deep));
  animation: eq 1.1s ease-in-out infinite;
}

.coming-soon .eq span:nth-child(1) { height: 40%; animation-delay: 0s; }
.coming-soon .eq span:nth-child(2) { height: 75%; animation-delay: .15s; }
.coming-soon .eq span:nth-child(3) { height: 100%; animation-delay: .3s; }
.coming-soon .eq span:nth-child(4) { height: 60%; animation-delay: .45s; }
.coming-soon .eq span:nth-child(5) { height: 85%; animation-delay: .6s; }
.coming-soon .eq span:nth-child(6) { height: 45%; animation-delay: .75s; }
.coming-soon .eq span:nth-child(7) { height: 70%; animation-delay: .9s; }

@keyframes eq {
  0%, 100% { transform: scaleY(0.5); }
  50% { transform: scaleY(1); }
}

/* ---------- Feature rows (podcast pages) ---------- */
.feature-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 56px;
}

.feature {
  background: var(--card);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--radius);
  padding: 34px 30px;
}

.feature .num {
  font-size: 13px;
  color: var(--gold);
  margin-bottom: 16px;
  display: block;
}

.feature h4 {
  font-size: 17px;
  font-weight: 500;
  margin-bottom: 12px;
}

.feature p {
  font-size: 13px;
  font-weight: 200;
  color: var(--grey);
}

/* ---------- Page hero (subpages) ---------- */
.page-hero {
  padding: 90px 0 70px;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: -180px;
  right: -180px;
  width: 620px;
  height: 480px;
  background: radial-gradient(ellipse at center, var(--gold-glow) 0%, transparent 65%);
  pointer-events: none;
}

/* ---------- Quote / mission ---------- */
.quote {
  border-left: 3px solid var(--gold);
  padding-left: 28px;
  font-size: clamp(18px, 2.6vw, 26px);
  font-weight: 300;
  line-height: 1.5;
  max-width: 30ch;
  margin: 50px 0 0;
}

.quote .gold { color: var(--gold); }

/* ---------- Platform CTA band ---------- */
.cta-band {
  background:
    radial-gradient(ellipse 70% 120% at 50% 130%, var(--gold-glow) 0%, transparent 60%),
    var(--dark);
  border-radius: var(--radius);
  text-align: center;
  padding: 80px 40px;
  border: 1px solid rgba(255, 255, 255, 0.07);
}

.cta-band .hero-actions { justify-content: center; }

/* ---------- Footer ---------- */
footer {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 60px 0 40px;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}

.footer-grid img { height: 26px; width: auto; }

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  list-style: none;
}

.footer-links a {
  font-size: 12px;
  color: var(--grey);
  transition: color 0.25s;
}

.footer-links a:hover { color: var(--gold); }

.footer-bottom {
  margin-top: 40px;
  font-size: 11px;
  font-weight: 200;
  color: var(--grey);
  text-align: center;
}

/* ---------- Two-column layout ---------- */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

/* ---------- Contact form ---------- */
.contact-card {
  background: linear-gradient(180deg, var(--card) 0%, var(--dark) 100%);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--radius);
  padding: 48px 42px;
  max-width: 860px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 32px;
}

.form-span-2 { grid-column: span 2; }

.form-group label {
  display: block;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--grey);
  margin-bottom: 10px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  font-family: 'Unbounded', sans-serif;
  font-size: 13px;
  font-weight: 300;
  color: var(--white);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  padding: 14px 16px;
  outline: none;
  transition: border-color 0.25s, background 0.25s;
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(163, 163, 155, 0.55); }

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  background: rgba(232, 195, 63, 0.05);
}

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23e8c33f' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 18px center;
  cursor: pointer;
}

.form-group select option { background: var(--dark); color: var(--white); }

.form-group textarea { resize: vertical; min-height: 140px; }

.hp-field {
  position: absolute !important;
  left: -9999px !important;
  width: 1px; height: 1px;
  opacity: 0;
}

.form-status {
  font-size: 14px;
  font-weight: 300;
  border-radius: 12px;
  padding: 18px 22px;
  margin-bottom: 30px;
}

.form-status.ok {
  color: #7ee2a0;
  background: rgba(30, 215, 96, 0.08);
  border: 1px solid rgba(30, 215, 96, 0.35);
}

.form-status.err {
  color: #ff9a9a;
  background: rgba(255, 0, 0, 0.07);
  border: 1px solid rgba(255, 80, 80, 0.35);
}

@media (max-width: 640px) {
  .form-grid { grid-template-columns: 1fr; }
  .form-span-2 { grid-column: span 1; }
  .contact-card { padding: 32px 22px; }
}

/* ---------- Animations ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.22, 0.61, 0.36, 1);
  transition-delay: var(--d, 0s);
  will-change: opacity, transform;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

.hero-photo img {
  animation: float 7s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

.btn:active { transform: translateY(1px) scale(0.96); }

.podcast-card .btn:hover { gap: 16px; }

.topic-pill { cursor: default; }
.topic-pill:active { transform: scale(0.95); }

.nav-links a { position: relative; }
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; bottom: -6px;
  width: 100%; height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero-photo img { animation: none; }
  .coming-soon .eq span { animation: none; }
  html { scroll-behavior: auto; }
}

/* ---------- Responsive ---------- */
@media (max-width: 860px) {
  .nav-links {
    position: fixed;
    inset: 66px 0 auto 0;
    flex-direction: column;
    background: rgba(10, 10, 8, 0.97);
    padding: 30px 0;
    gap: 22px;
    transform: translateY(-130%);
    transition: transform 0.35s;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }
  .nav-links.open { transform: translateY(0); }
  .burger { display: flex; }
  .two-col { grid-template-columns: 1fr; gap: 40px; }
  .hero { padding: 70px 0 90px; }
  section { padding: 64px 0; }
}
