@import url("https://fonts.googleapis.com/css2?family=Rock+Salt&display=swap");

/* ---------- Base ---------- */
* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
}

body {
  background: #000;
  display: flex;
  flex-direction: column;
}

main { color: #fff; }
/* ---------- Main landing background ---------- */

/* ------ This section is for landing page backgroundCommented out while looking for new background images 
 * 
 * #main {
  background-image: url("../images/background_6025x4018.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  position: relative;
}
-----*/


/* ---------- Sticky Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 9999;
  background: #000;
}

/* ---------- Navbar ---------- */
.navbar {
  width: 100%;
  background: linear-gradient(to right, #2b065c, #6a00ff, #2b065c);
  box-shadow: 0 4px 12px rgba(0,0,0,0.4);
}

/* Keep tap targets above overlays (iOS Safari) */
.nav-top { position: relative; z-index: 10001; }
.nav-toggle { position: relative; z-index: 10002; }
.nav-menu { position: relative; z-index: 10000; }

/* Mobile top row (hidden on desktop) */
.nav-top {
  display: none;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
}

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

.nav-brand img {
  display: block;
  height: 44px;
  width: auto;
}

/* Hamburger button (hidden on desktop) */
.nav-toggle {
  display: none;
  background: transparent;
  border: 0;
  cursor: pointer;
  padding: 10px;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: #fff;
  margin: 6px 0;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

/* Menu wrapper: desktop shows by default */
.nav-menu {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px 0;
}

/* Links */
.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 0;
  padding: 0;
}

.nav-links li {
  display: flex;
  align-items: center;
  margin: 0 20px;
  font-family: "Rock Salt", cursive;
}

.nav-links a {
  position: relative;
  display: inline-block;
  padding: 7px 10px;
  font-size: 10px;
  color: #fff;
  text-decoration: none;
  transition: color 0.25s ease, transform 0.2s ease;
}

.nav-links a:hover {
  color: #de4eff;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 10px;
  bottom: 4px;
  height: 2px;
  width: calc(100% - 20px);
  background: #cf00ff;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.25s ease;
}

.nav-links a:hover::after {
  transform: scaleX(1);
}

/* ✅ Desktop logo inside nav bar (this stays on desktop) */
.nav-logo-desktop {
  display: flex;
  align-items: center;
}
.nav-logo-desktop img {
  height: 80px;
  width: auto;
  display: block;
}

/* Social icons (desktop) */
.social-icons {
  position: absolute;
  right: 20px;
  display: flex;
  gap: 12px;
  align-items: center;
}

.social-icons img {
  width: 50px;
  height: 40px;
  cursor: pointer;
  transition: transform 0.2s ease, opacity 0.2s ease, filter 0.2s ease;
}

.social-icons img:hover {
  transform: scale(1.2);
  opacity: 0.85;
  filter: brightness(0) invert(1);
}

/* ---------- Sections ---------- */
.section {
  min-height: 100vh;
  padding: 0 20px 80px;
}

.section-title {
  margin: 0;
  padding: 20px 0;
  font-size: 16px;
  font-family: "Rock Salt", cursive;
  color: #fff;
}

.section-content {
  padding: 0 20px 80px;
  color: #fff;
}

/* ---------- Main / About Grids ---------- */
.main-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: start;
  gap: 40px;
  max-width: 1500px;
  margin: 0 auto;
  padding-top: 150px;
  text-align: center;
}

.main-left {
  display: flex;
  justify-content: center;
}

.main-right {
  max-width: 520px;
  text-align: left;
  font-size: 14px;
  margin-left: 100px;
}

.about-left,
.about-right {
  font-size: 14px;
  text-align: left;
  padding-right: 100px;
}

.about-left img,
.about-right img {
  width: 30%;
  height: auto;
  display: block;
  text-align: center;
  align-content: center;
  margin: 0 auto 12px; /* centers + adds space under image */
}
/* Episodes split layout */
.episodes-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 1500px;
  margin: 0 auto;
  align-items: start;
}

/* Text styling */
.episodes-text {
  font-size: 14px;
  line-height: 1.6;
  text-align: left;
}

/* Player container */
.episodes-player {
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

/* ---------- Mobile ---------- */
@media (max-width: 768px) {
  .episodes-layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .episodes-player iframe {
    height: 315px;
  }
}
#episodes {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Links section only */

#links .section-content{
  padding-left: 200px;
}
#links .section-content a {
  color: #f2ad10;          /* pick your color */
  text-decoration: none;  /* remove underline */
  font-weight: 500;
  transition: color 0.2s ease, opacity 0.2s ease;
}

#links .section-content a:hover {
  color: #cf00ff;          /* optional hover color */
  opacity: 0.9;
}
#links .section-content a {
  display: inline-block;
  margin-bottom: 8px;
}
@media (max-width: 768px) {
  #links .section-content{
    padding-left: 20px;  /* mobile */
    padding-right: 20px; /* keeps it balanced */
  }
}
/* ---------- Contact ---------- */
#contact-paragraph {
  max-width: 600px;
  margin: 0 auto;
  padding-top: 40px;
  font-size: 13px;
  line-height: 1.5;
}

.contact-form {
  max-width: 600px;
  margin: 0 auto;
  padding-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-row {
  display: flex;
  gap: 14px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  background: #111;
  border: 1px solid #444;
  color: #fff;
  border-radius: 6px;
  font-size: 14px;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #aaa;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #cf00ff;
  box-shadow: 0 0 6px rgba(207, 0, 255, 0.4);
}

.contact-form button {
  margin-top: 10px;
  padding: 12px;
  background: linear-gradient(to right, #2b065c, #6a00ff);
  border: none;
  color: #fff;
  font-size: 15px;
  border-radius: 6px;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.contact-form button:hover {
  transform: translateY(-1px);
  box-shadow: 0 0 12px rgba(207, 0, 255, 0.6);
}

/* ---------- Footer ---------- */
.footer {
  background: linear-gradient(to right, #2b065c, #6a00ff, #2b065c);
  padding: 10px;
  text-align: center;
  font-size: 12px;
}

.footer-icons img {
  width: 50px;
  height: 40px;
  cursor: pointer;
  transition: transform 0.2s ease, opacity 0.2s ease, filter 0.2s ease;
}

.footer-icons img:hover {
  transform: scale(1.1);
  opacity: 0.85;
  filter: brightness(0) invert(1);
}

/* ---------- Responsive: Hamburger menu (Safari-friendly) ---------- */
@media (max-width: 768px) {
  /* Show mobile top row + hamburger */
  .nav-top { display: flex; }
  .nav-toggle { display: block; }

  /* ✅ Hide desktop-logo INSIDE the dropdown menu on mobile */
  .nav-logo-desktop { display: none !important; }

  /* Safari-friendly open/close (NO display:none) */
  .nav-menu {
    display: flex;             /* stays in layout */
    flex-direction: column;
    gap: 10px;
    overflow: hidden;

    max-height: 0;             /* closed */
    opacity: 0;
    pointer-events: none;

    transition: max-height 0.25s ease, opacity 0.2s ease;
    padding: 0;                /* no padding when closed */
  }

  .navbar.is-open .nav-menu {
    max-height: 80vh;          /* open */
    opacity: 1;
    pointer-events: auto;
    padding: 10px 0 14px;      /* padding only when open */
  }

  /* Stack links */
  .nav-links {
    flex-direction: column;
    gap: 10px;
  }

  .nav-links li {
    margin: 0;
    justify-content: center;
  }

  .nav-links a {
    font-size: 14px;
    padding: 12px 14px;
  }

  /* Social icons below links */
  .social-icons {
    position: static;
    right: auto;
    width: 100%;
    justify-content: center;
    margin-top: 8px;
  }

  .social-icons img {
    width: 30px;
    height: 24px;
  }

  /* Layout: stack grids */
  .main-grid {
    grid-template-columns: 1fr;
    padding-top: 30px;
    gap: 20px;
    text-align: center;
  }

  .main-right {
    margin-left: 0;
    max-width: 100%;
    font-size: 14px;
    text-align: left;
  }

  .about-left,
  .about-right {
    padding-right: 0;
  }

  /* Embeds fit */
  iframe {
    width: 100% !important;
    max-width: 100% !important;
  }

  /* Contact: stack first/last on small screens */
  .form-row {
    flex-direction: column;
  }
}

/* Small phones */
@media (max-width: 430px) {
  .main-grid { padding-top: 24px; }
}
/* FORCE-HIDE the desktop logo inside the mobile dropdown */
@media (max-width: 768px) {
  .nav-menu .nav-links li.nav-logo-desktop,
  .nav-menu .nav-links li.nav-logo-desktop a,
  .nav-menu .nav-links li.nav-logo-desktop img {
    display: none !important;
  }

  /* Extra safety: hide any nav-links logo images (your only one is that center logo) */
  .nav-menu .nav-links > li > a > img {
    display: none !important;
  }
}