/* ===========================
   RESET & BASE
=========================== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --black:     #0a1628;
  --dark:      #0d1a2d;
  --orange:    #f05a29;
  --red:       #e63b3b;
  --green-wa:  #1DA851;
  --white:     #ffffff;
  --gray:      #c0bdb5;
  --gray-text: #9aa0aa;
  --gray-light: #2a3340;
  --border:    rgba(255, 255, 255, 0.09);
  --font:      'Secular One', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background-color: var(--black);
  color: var(--white);
  direction: rtl;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  padding-top: 100px;
}

a { text-decoration: none; color: inherit; transition: all 0.25s ease; }
p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* ===========================
   CONTAINER
=========================== */
.pc-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ===========================
   HELPERS
=========================== */
.pc-orange  { color: var(--orange); font-weight: 700; }
.pc-centered { text-align: center; }

.pc-section-big {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 900;
  margin-bottom: 3rem;
  line-height: 1.05;
}

/* ===========================
   SOCIAL ICONS (shared)
=========================== */
.social-icons {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 4px;
  font-size: 0.95rem;
  transition: all 0.25s ease;
  border: 1px solid transparent;
}
.social-btn:hover { transform: translateY(-2px); opacity: 0.85; }
.social-btn.spotify   { background-color: #1DB954; color: #fff; }
.social-btn.whatsapp  { background-color: #25D366; color: #fff; }
.social-btn.youtube   { background-color: #FF0000; color: #fff; }
.social-btn.facebook  { background-color: #1877F2; color: #fff; }
.social-btn.instagram { background-color: #E1306C; color: #fff; }
.social-btn.linkedin  { background-color: #0A66C2; color: #fff; }

/* ===========================
   HEADER / NAV
=========================== */
.header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 999;
  background-color: rgba(10, 22, 40, 0.97);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(16px);
}

.nav {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 2.5rem;
}

.nav-logo {
  display: flex;
  align-items: center;
}

.nav-logo-img {
  height: 120px;
  width: auto;
  object-fit: contain;
}

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

.nav-links li {
  display: flex;
  align-items: center;
}

.nav-links li:not(:last-child) {
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.nav-links a {
  display: block;
  padding: 0.4rem 1.1rem;
  border-radius: 4px;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  transition: background-color 0.2s ease, color 0.2s ease;
}

.nav-links a:hover {
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--white);
}

.nav-cta {
  background-color: #15703a !important;
  color: var(--white) !important;
  border: 1px solid #15703a;
  padding: 0.4rem 1.4rem;
  border-radius: 4px;
  margin-right: 1.1rem;
  white-space: nowrap;
}

.nav-cta:hover {
  background-color: #189845 !important;
  border-color: #189845 !important;
  color: var(--white) !important;
}

.nav-socials {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

/* --- Dropdown --- */
.nav-dropdown {
  position: relative;
}

.nav-dropdown > a .nav-chevron {
  font-size: 0.55rem;
  margin-right: 0.3rem;
  transition: transform 0.25s ease;
}

.nav-dropdown:hover > a .nav-chevron {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  right: 0;
  min-width: 240px;
  list-style: none;
  padding: 0.5rem 0;
  margin: 0;
  background-color: rgba(10, 22, 40, 0.97);
  backdrop-filter: blur(16px);
  border: 1px solid var(--border);
  border-radius: 6px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease;
  z-index: 1000;
}

.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu li {
  border-left: none !important;
}

.dropdown-menu a {
  display: block;
  padding: 0.6rem 1.2rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: none;
  color: var(--white);
  white-space: nowrap;
  transition: background-color 0.2s ease;
}

.dropdown-menu a:hover {
  background-color: rgba(240, 90, 41, 0.15);
  color: var(--orange);
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-right: auto;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--white);
  transition: all 0.3s ease;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===========================
   HERO
=========================== */
.pc-hero {
  background-color: var(--black);
  min-height: calc(100vh - 100px);
  overflow: hidden;
}

.pc-hero-inner {
  display: flex;
  min-height: calc(100vh - 100px);
}

.pc-hero-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 5rem 3rem;
  position: relative;
  z-index: 1;
}

.pc-hero-logo {
  width: 200px;
  height: 200px;
  object-fit: cover;
  border-radius: 50%;
  transform: scale(1.18);
  margin-bottom: 2rem;
}

.pc-hero-title {
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 900;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.pc-hero-subtitle {
  font-size: clamp(1.15rem, 2.2vw, 1.6rem);
  color: var(--gray);
  line-height: 1.55;
  margin-bottom: 2.5rem;
}

.pc-hero-photo {
  flex: 0 0 48%;
  position: relative;
  overflow: hidden;
}
.pc-hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  transform: scale(1.15);
}
.pc-hero-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, transparent 50%, var(--black) 100%);
}

/* ===========================
   PLATFORMS
=========================== */
.pc-section {
  padding: 100px 0;
}

.pc-platforms {
  background-color: var(--dark);
  border-top: 1px solid var(--border);
}

.pc-platform-links {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 6rem;
  direction: rtl;
}

.pc-platform {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
  transition: color 0.3s ease;
  width: 80px;
}

.pc-platform span {
  font-size: 1.4rem;
  color: var(--white);
  font-weight: 700;
  white-space: nowrap;
}

.pc-platform i {
  font-size: 3.5rem;
  background-color: #ffffff;
  width: 80px;
  height: 80px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, filter 0.3s ease;
}

.pc-platform:hover i {
  transform: scale(1.15);
  filter: brightness(1.3);
}

.pc-platform:hover span {
  color: var(--white);
}

.pc-icon-spotify { color: #1DB954; }
.pc-icon-youtube { color: #FF0000; }
.pc-icon-apple { color: #A855F7; }

/* ===========================
   EPISODES
=========================== */
.pc-episodes {
  background-color: var(--black);
  border-top: 1px solid var(--border);
}

/* Sort bar */
.pc-sort-bar {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
}

.pc-sort-btn {
  background: transparent;
  border: 1px solid var(--gray-light);
  color: var(--gray-text);
  font-family: var(--font);
  font-size: 0.9rem;
  padding: 0.5rem 1.5rem;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.25s ease;
}

.pc-sort-btn:hover {
  border-color: var(--orange);
  color: var(--white);
}

.pc-sort-btn.active {
  background-color: var(--orange);
  border-color: var(--orange);
  color: var(--white);
}

/* Episodes list */
.pc-episodes-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* Single episode strip */
.pc-episode {
  position: relative;
  display: flex;
  align-items: stretch;
  background-color: #162236;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  overflow: hidden;
  transition: border-color 0.3s ease, transform 0.2s ease;
  min-height: 160px;
}

.pc-episode:hover {
  border-color: rgba(240, 90, 41, 0.35);
  transform: translateY(-2px);
}

.pc-new-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background-color: var(--orange);
  color: var(--white);
  font-family: var(--font);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.2rem 0.7rem;
  border-radius: 4px;
  z-index: 2;
  letter-spacing: 0.05em;
  line-height: 1;
}

/* Episode info (right side in RTL) */
.pc-episode-info {
  flex: 1;
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 1.5rem 2rem;
}

.pc-episode-num {
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--gray-light);
  min-width: 50px;
  text-align: center;
  line-height: 1;
  padding-top: 0.3rem;
}

.pc-episode-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.pc-episode-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.4;
}

.pc-episode-date {
  font-size: 0.78rem;
  color: var(--gray-text);
  margin: 0;
}

.pc-episode-desc {
  font-size: 0.88rem;
  color: var(--gray);
  line-height: 1.6;
  margin: 0.3rem 0 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Platform links row */
.pc-episode-links {
  display: flex;
  gap: 0.75rem;
  margin-top: 0.6rem;
}

.pc-ep-link {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.78rem;
  padding: 0.3rem 0.7rem;
  border-radius: 4px;
  border: 1px solid var(--border);
  color: var(--gray-text);
  transition: all 0.25s ease;
}

.pc-ep-link:hover {
  border-color: rgba(255, 255, 255, 0.25);
  color: var(--white);
}

.pc-ep-link i {
  font-size: 0.9rem;
}

.pc-ep-youtube i { color: #FF0000; }
.pc-ep-spotify i { color: #1DB954; }
.pc-ep-apple i { color: #A855F7; }

/* Thumbnail (left side in RTL) */
.pc-episode-thumb {
  flex: 0 0 380px;
  position: relative;
  overflow: hidden;
  display: block;
  aspect-ratio: 16 / 9;
}

.pc-episode-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.1);
  transition: transform 0.4s ease;
}

.pc-episode:hover .pc-episode-thumb img {
  transform: scale(1.18);
}

/* Crop top/bottom letterbox bars — wider ratio forces object-fit:cover to clip vertically only */
.pc-letterbox .pc-episode-thumb {
  aspect-ratio: 2.2 / 1;
}

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

.pc-thumb-play i {
  font-size: 2.5rem;
  color: var(--white);
  background: none;
  width: auto;
  height: auto;
  border-radius: 0;
}

.pc-episode:hover .pc-thumb-play {
  opacity: 1;
}

/* ===========================
   FOOTER
=========================== */
.footer {
  padding: 3.5rem 0;
  background-color: var(--dark);
  border-top: 1px solid var(--border);
}

.footer .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  text-align: center;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.footer-logo-img {
  height: 120px;
  width: auto;
  object-fit: contain;
}

.footer-copy {
  font-size: 0.72rem;
  color: #9aa0aa;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin: 0;
}

.footer-disclaimer {
  font-size: 0.75rem;
  color: #9aa0aa;
  margin: 0;
}

.footer-legal-links {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-legal-links a {
  font-size: 0.7rem;
  color: #8a8f99;
  transition: color 0.2s ease;
}

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

.footer-sep {
  color: #8a8f99;
  font-size: 0.7rem;
}

/* ===========================
   MOBILE (max 768px)
=========================== */
@media (max-width: 768px) {
  body { padding-top: 100px; }
  .social-btn { width: 28px; height: 28px; font-size: 0.85rem; }
  .nav-socials { display: none; }
  .social-icons { gap: 0.4rem; }
  .nav { justify-content: center; gap: 0; position: relative; }
  .hamburger { display: flex; position: absolute; right: 1.5rem; }
  .nav-links {
    display: none;
    position: absolute;
    top: 100px;
    right: 0;
    left: 0;
    background-color: #0a1628;
    flex-direction: column;
    align-items: stretch;
    text-align: center;
    padding: 1.5rem 2rem;
    gap: 1.25rem;
    border-bottom: 1px solid var(--border);
  }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: 0.9rem; }
  .nav-links > li { text-align: center; display: block; }
  .nav-links > li > a { display: block; text-align: center; }

  .nav-dropdown { position: static; }
  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    background: transparent;
    border: none;
    border-radius: 0;
    backdrop-filter: none;
    padding: 0;
    min-width: auto;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    text-align: center;
  }
  .nav-dropdown.open .dropdown-menu {
    max-height: 500px;
  }
  .dropdown-menu a {
    padding: 0.4rem 1.5rem;
    font-size: 0.8rem;
    color: var(--gray-text, #9aa0aa);
    display: block;
    text-align: center;
  }

  .pc-hero-inner {
    flex-direction: column-reverse;
    min-height: auto;
  }
  .pc-hero-photo {
    flex: 0 0 auto;
    height: 55vw;
    min-height: 220px;
  }
  .pc-hero-photo img {
    object-position: center 35%;
  }
  .pc-hero-photo::after {
    background: linear-gradient(to top, var(--black) 0%, transparent 60%);
  }
  .pc-hero-text {
    padding: 2.5rem 1.5rem 3rem;
  }
  .pc-hero-logo {
    width: 140px;
    height: 140px;
    margin-bottom: 1.5rem;
  }

  .pc-section {
    padding: 70px 0;
  }

  .pc-platform-links {
    gap: 1.5rem;
    justify-content: center;
  }

  .pc-platform i {
    font-size: 2.5rem;
    width: 60px;
    height: 60px;
    border-radius: 10px;
  }

  .pc-platform span {
    font-size: 1.1rem;
  }

  .pc-container { padding: 0 1.25rem; }
  .pc-section-big { margin-bottom: 2rem; }

  /* Episodes mobile */
  .pc-episode {
    flex-direction: column-reverse;
    min-height: auto;
  }

  .pc-new-badge {
    top: auto;
    bottom: 12px;
    right: 12px;
  }

  .pc-episode-thumb {
    flex: 0 0 auto;
    width: 100%;
    aspect-ratio: 16 / 9;
  }

  .pc-letterbox .pc-episode-thumb {
    aspect-ratio: 16 / 9;
  }

  .pc-episode-thumb img {
    transform: scale(1);
  }

  .pc-thumb-play {
    opacity: 1;
    background: rgba(0, 0, 0, 0.2);
  }

  .pc-episode-info {
    padding: 1.25rem;
    gap: 1rem;
  }

  .pc-episode-num {
    font-size: 1.6rem;
    min-width: 35px;
  }

  .pc-episode-title {
    font-size: 1rem;
  }

  .pc-episode-desc {
    font-size: 0.82rem;
    -webkit-line-clamp: 2;
  }

  .pc-episode-links {
    gap: 0.5rem;
    flex-wrap: wrap;
  }

  .pc-ep-link {
    font-size: 0.72rem;
    padding: 0.25rem 0.55rem;
  }

  .pc-ep-link span {
    display: none;
  }

  .pc-ep-link i {
    font-size: 1.1rem;
  }

  .pc-sort-btn {
    font-size: 0.8rem;
    padding: 0.4rem 1.2rem;
  }
}
