/* RESET */

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

/* ensure full-page coverage */

html, body {
width: 100%;
min-height: 100%;
}

/* BODY */

body {

font-family: 'Cormorant Garamond', serif;

font-size: 1.2rem;

background-image: url("whf-bg.png");

background-size: cover;

background-position: center bottom;

background-repeat: no-repeat;

background-color: #02021a;

color: #ffffff;

line-height: 1.9;

min-height: 100vh;

}


/* NAVIGATION */

.site-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 60px;
  padding: 20px 40px;
  position: relative;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 30px;
}

.site-nav a {
  text-decoration: none;
  color: rgba(255,255,255,0.85);
  font-weight: 500;
  font-size: 1.55rem;
  font-family: 'Cormorant Garamond', serif;
  letter-spacing: 0.05em;
  transition: 0.3s ease, text-shadow 0.3s ease;
}

.site-nav a:hover {
  color: #5ce1e6;
  text-shadow:
    0 0 12px rgba(92,225,230,1),
    0 0 28px rgba(140,82,255,0.9),
    0 0 50px rgba(251,61,254,0.6);
}


/* hamburger icon */

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 28px;
  height: 3px;
  margin: 6px 0;
  background: white;
  border-radius: 999px;
}

/* SOCIAL ROW UNDER NAV */

.social-row {

display: flex;

justify-content: center;



margin-top: -20px;

margin-bottom: 18px;

gap: 26px;

}


.social-row a {

color: rgba(255,255,255,0.75);

font-size: 1.9rem;

transition: 0.3s ease;

}


.social-row a:hover {

color: #5ce1e6;

}


nav ul {

list-style: none;

display: flex;

gap: 30px;

}


nav a {

text-decoration: none;

color: rgba(255,255,255,0.85);

font-weight: 500;

font-size: 1.55rem;

font-family: 'Cormorant Garamond', serif;

letter-spacing: 0.05em;

transition: 0.3s ease, text-shadow 0.3s ease;

}


nav a:hover {

color: #5ce1e6;

text-shadow:
0 0 12px rgba(92,225,230,1),
0 0 28px rgba(140,82,255,0.9),
0 0 50px rgba(251,61,254,0.6);

}


/* LOGO */

.logo {

width: 160px;

transition: transform 0.4s ease, filter 0.4s ease;

}

.logo:hover {

transform: scale(1.05) rotate(-1deg);

filter:
drop-shadow(0 0 8px rgba(55,176,255,0.35))
drop-shadow(0 0 18px rgba(140,82,255,0.25))
drop-shadow(0 0 28px rgba(251,61,254,0.18));

cursor: pointer;

}

/* HERO */

.hero {

text-align: center;

max-width: 900px;

margin: auto;

}


/* TITLE */

h1 {

font-size: 3.7rem;

font-family: 'Cormorant Garamond', serif;

margin-top: 0;

margin-bottom: 18px;

/* fallback color if gradient fails */
color: #37b0ff;

/* gradient text */
background: linear-gradient(135deg, #5ce1e6 9%, #37b0ff 10%, #8c52ff 35%, #fb3dfe 100%);

background-clip: text;

-webkit-background-clip: text;

-webkit-text-fill-color: transparent;

}

h2 {
font-family: 'Cormorant Garamond', serif;
font-size: 2rem;
}

p,
.tagline,
.about-text,
.episode-description {
font-size: 1.1rem;
line-height: 1.9;
}

/* TAGLINE */

.tagline {

color: rgba(255,255,255,0.75);

margin-bottom: 35px;

font-size: 1.35rem;

letter-spacing: 0.06em;

font-weight: 600;

}


/* BUTTON */

.btn-primary {

display: inline-block;

font-family: 'Cormorant Garamond', serif;

font-size: 1.25rem;

padding: 14px 32px;

border-radius: 999px;

text-decoration: none;

color: white;

font-weight: 600;

background: linear-gradient(135deg, #37b0ff 0%, #5ce1e6 40%, #8c52ff 75%, #fb3dfe 100%);

box-shadow:
0 0 12px rgba(92,225,230,0.25),
0 0 25px rgba(140,82,255,0.20);

transition: 0.3s ease;

margin-bottom: 50px;

}


.btn-primary:hover {

transform: translateY(-2px);

box-shadow:
0 0 18px rgba(92,225,230,0.35),
0 0 35px rgba(251,61,254,0.30);

}

.btn-primary i {

font-size: 1.20rem;

}


/* HERO IMAGE */

.hero-image {

width: 100%;

max-width: 650px;

border-radius: 18px;

box-shadow: 0 10px 40px rgba(0,0,0,0.6);

}

/* keeps content centered */

main {

max-width: 900px;

margin: auto;

padding: 40px;

}

.about-row {

display: flex;

align-items: stretch;

justify-content: center;

gap: 40px;

max-width: 900px;

margin: 15px auto;

text-align: left;

}


.about-square {

width: 350px;   /* controls visual size */

height: 350px;  /* keeps square shape */

object-fit: cover;

border-radius: 20px;

box-shadow:
0 0 16px rgba(92,225,230,0.18),
0 0 26px rgba(140,82,255,0.18),
0 10px 40px rgba(0,0,0,0.45);

}


.about-text {

display: flex;

flex-direction: column;

justify-content: space-between;  /* spreads text nicely */

margin: 0;   

font-size: 1.2rem;

line-height: 1.9;

color: rgba(255,255,255,0.88);

max-width: 460px;

}

.about-card {

max-width: 950px;

margin: 25px auto;

padding: 30px 35px;

background: rgba(255,255,255,0.04);

border: 1px solid rgba(255,255,255,0.08);

border-radius: 24px;

backdrop-filter: blur(6px);

box-shadow: 0 10px 40px rgba(0,0,0,0.35);

}

.about-row {

display: flex;

align-items: flex-start;   /* aligns top edges */

gap: 40px;

max-width: 900px;

margin: 0 auto;   /* centers inside card */

}

.about-text {

margin: 0;

font-size: 1.2rem;

line-height: 1.9;

color: rgba(255,255,255,0.88);

max-width: 460px;

}

.episode-card {

display: flex;
align-items: center;
justify-content: center;
gap: 40px;
max-width: 900px;
margin: 40px auto;
text-align: left;
padding: 20px;
background: rgba(255,255,255,0.04);
border: 1px solid rgba(255,255,255,0.08);
border-radius: 24px;
backdrop-filter: blur(6px);
box-shadow: 0 10px 40px rgba(0,0,0,0.35);

}

.episode-art {

width: 260px;
height: 260px;
object-fit: cover;
border-radius: 20px;
box-shadow:
0 0 18px rgba(92,225,230,0.18),
0 0 30px rgba(140,82,255,0.18),
0 10px 40px rgba(0,0,0,0.45);

}

.episode-card .btn-primary {

font-size: 1rem;

padding: 10px 18px;

margin-right: 12px;

}

.episode-card .btn-primary i {
font-size: 1rem;
}

.episode-info {
max-width: 460px;
}



.episode-label {

font-size: 1.3rem;
text-transform: uppercase;
letter-spacing: 0.08em;
color: #5ce1e6;
margin-bottom: 10px;

}

.episode-title {

font-family: 'Cormorant Garamond', serif;
font-size: 2rem;
margin-bottom: 14px;
color: #ffffff;

}

.episode-description {

font-size: 1.2rem;
line-height: 1.9;
color: rgba(255,255,255,0.86);
margin-bottom: 24px;

}

.episode-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-start;
  align-items: center;
}

.episode-buttons .btn-primary {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: auto !important;
  white-space: nowrap;
  margin: 0 !important;
  flex: 0 0 auto;
}


/* FOOTER */

footer {

margin-top: 80px;

text-align: center;

color: rgba(255,255,255,0.45);

font-size: 1.05rem;

/* Responsive adjustments */

}

@media (max-width: 950px) {

  nav {
    padding: 18px 24px;
    margin-bottom: 40px;
  }

  nav ul {
    gap: 18px;
  }

  nav a {
    font-size: 1.2rem;
  }

  h1 {
    font-size: 3rem;
  }

  main {
    padding: 24px;
  }

  .episode-card {
    flex-direction: column;
    text-align: center;
    padding: 24px;
  }

  .episode-art {
    width: 220px;
    height: 220px;
  }

  .episode-info {
    max-width: 100%;
  }

  .episode-title {
    font-size: 2rem;
  }

  .episode-description {
    font-size: 1.1rem;
    line-height: 1.8;
  }

  .about-card {
    max-width: 900px;
    padding: 24px;
  }

  .about-row {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .about-text {
    max-width: 100%;
  }

  .about-square {
    width: 280px;
    height: 280px;
  }
}

@media (max-width: 640px) {

  .site-nav {
    padding: 18px 20px;
    flex-wrap: wrap;
  }

  .menu-toggle {
    display: block;
    margin-left: auto;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    width: 100%;
    margin-top: 18px;
    padding: 18px 0;
    gap: 16px;
    text-align: center;
    background: rgba(2, 2, 26, 0.96);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 18px;
  }

  .nav-links.show {
    display: flex;
  }

  .site-nav a {
    font-size: 1.05rem;
  }

  .social-row {
    gap: 18px;
    margin-top: 0;
    margin-bottom: 14px;
  }

  .social-row a {
    font-size: 1.5rem;
  }

  h1 {
    font-size: 2.5rem;
  }

  .tagline {
    font-size: 1.1rem;
  }

  .btn-primary {
    font-size: 1.05rem;
    padding: 12px 22px;
    margin-bottom: 18px;
  }

  .btn-primary:first-of-type {
    margin-right: 8px;
  }

  .hero-image {
    max-width: 100%;
  }

  .episode-art {
    width: 190px;
    height: 190px;
  }

  .episode-title {
    font-size: 1.7rem;
  }

  .episode-label {
    font-size: 1rem;
  }

  .episode-description,
  .about-text,
  p,
  .tagline {
    font-size: 1.05rem;
    line-height: 1.75;
  }

  .about-square {
    width: 220px;
    height: 220px;
  }

  footer {
    font-size: 0.95rem;
  }
}

.episode-card .btn-primary i {
font-size: 1rem;
}
 
/* BLOG posts */

.blog-feed {
  max-width: 760px;
  margin: 0 auto;
}

.blog-intro {
  max-width: 760px;
  margin: 0 auto 40px auto;
}

.blog-post-preview {
  max-width: 760px;
  margin: 0 auto 60px auto;
  text-align: center;
}

/* remove card styling on blog page only */
.blog-feed .about-card,
.blog-intro.about-card {
  background: transparent;
  border: none;
  box-shadow: none;
  backdrop-filter: none;
  padding: 0;
  border-radius: 0;
}

/* shared text column */
.blog-post-preview,
.blog-intro,
.blog-content {
  text-align: left;
}

/* label */
.blog-post-meta {
  display: block;
  max-width: 760px;
  margin: 0 0 10px 0;
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #5ce1e6;
  text-align: left;
}

/* title */
.blog-post-preview h2,
.blog-content h2 {
  max-width: 760px;
  margin: 0 0 14px 0;
  text-align: left;
}

/* paragraph copy */
.blog-post-preview .about-text,
.blog-intro .about-text,
.blog-content .about-text {
  display: block;
  max-width: 760px;
  margin: 0 0 18px 0;
  font-size: 1.15rem;
  line-height: 1.9;
  text-align: left;
}

/* image aligned to same column */
.blog-image {
  width: 100%;
  max-width: 760px;
  display: block;
  margin: 18px 0 26px 0;
  border-radius: 18px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.35);
}

/* button stays centered under post */
.blog-readmore {
  text-align: center;
  margin-top: 18px;
}

/* full article layout */
.blog-content {
  max-width: 760px;
  margin: 0 auto 40px auto;
}

@media (max-width: 640px) {
  .blog-feed,
  .blog-intro,
  .blog-post-preview,
  .blog-content {
    max-width: 100%;
    padding-left: 12px;
    padding-right: 12px;
  }

  .blog-post-preview .about-text,
  .blog-intro .about-text,
  .blog-content .about-text {
    font-size: 1.05rem;
    line-height: 1.8;
  }
}

/* keep main blog headings centered */

.hero h1 {
  text-align: center;
}

.blog-intro {
  text-align: center;
}

.blog-post-preview:last-child h2 {
  text-align: center;
}

.blog-post-preview:last-child .about-text {
  text-align: center;
}

/* force blog text to use full column width */

.blog-post-preview .about-text,
.blog-content .about-text,
.blog-intro .about-text {

  display: block;

  max-width: 760px;

  width: 100%;

  margin-left: auto;
  margin-right: auto;

  text-align: center;

}

/* center blog titles + featured label */

.blog-post-meta {

  text-align: center;

  margin-left: auto;
  margin-right: auto;

}

.blog-post-preview h2,
.blog-content h2 {

  text-align: center;

  margin-left: auto;
  margin-right: auto;

}

/* clickable blog titles */

.blog-title-link {
  color: inherit;
  text-decoration: none;
  transition: 0.3s ease, text-shadow 0.3s ease;
}

.blog-title-link:hover {
  color: #5ce1e6;
  text-shadow:
    0 0 12px rgba(92,225,230,1),
    0 0 28px rgba(140,82,255,0.9),
    0 0 50px rgba(251,61,254,0.6);
}

/* NAV RIGHT SIDE */

.nav-right {
  display: flex;
  align-items: center;
  gap: 22px;
}

.nav-socials {
  display: flex;
  align-items: center;
  gap: 14px;
}

.nav-socials a {
  color: rgba(255,255,255,0.75);
  font-size: 1.2rem;
  transition: 0.3s ease;
}

.nav-socials a:hover {
  color: #5ce1e6;
}

/* hide old social row if still present anywhere */
.social-row {
  display: none;
}

@media (max-width: 950px) {
  .nav-right {
    gap: 16px;
  }

  .nav-socials a {
    font-size: 1.05rem;
  }
}

@media (max-width: 640px) {
  .nav-right {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: center;
    margin-top: 18px;
    gap: 18px;
  }

  .nav-right.show {
    display: flex;
  }

  .nav-links {
    width: 100%;
  }

  .nav-socials {
    justify-content: center;
  }
}

.blog-title-link {
  color: inherit;
  text-decoration: none;
  transition: 0.3s ease, text-shadow 0.3s ease;
}

.blog-title-link:hover {
  color: #5ce1e6;
  text-shadow:
    0 0 12px rgba(92,225,230,1),
    0 0 28px rgba(140,82,255,0.9),
    0 0 50px rgba(251,61,254,0.6);
}

/* NAV WITH ICONS NEXT TO LOGO */

.site-nav {
  display: flex;
  align-items: center;
  gap: 18px;
}

.nav-socials {
  display: flex;
  align-items: center;
  gap: 14px;
}

.nav-socials a {
  color: rgba(255,255,255,0.75);
  font-size: 1.2rem;
  transition: 0.3s ease;
}

.nav-socials a:hover {
  color: #5ce1e6;
}

.nav-right {
  margin-left: auto;
  display: flex;
  align-items: center;
}

.social-row {
  display: none;
}

@media (max-width: 640px) {
  .nav-socials {
    order: 2;
    width: 100%;
    justify-content: center;
    margin-top: 14px;
  }

  .nav-right {
    display: none;
    order: 3;
    width: 100%;
    margin-left: 0;
  }

  .nav-right.show {
    display: block;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    width: 100%;
    margin-top: 18px;
    padding: 18px 0;
    gap: 16px;
    text-align: center;
    background: rgba(2, 2, 26, 0.96);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 18px;
  }

  .nav-links.show {
    display: flex;
  }
}

/* CLEAN BLOG POST PAGE */

.blog-content {
  max-width: 760px;
  margin: 0 auto 50px auto;
}

.blog-content .about-text {
  display: block;
  max-width: 760px;
  width: 100%;
  margin: 0 auto 18px auto;
  font-size: 1.15rem;
  line-height: 1.9;
  text-align: left;
}

.blog-content h2 {
  text-align: center;
  margin: 0 auto 14px auto;
}

.blog-content .btn-primary {
  display: inline-block;
}

.blog-content:last-child {
  text-align: center;
}

/* CENTER LISTEN BUTTON */

.hero .btn-primary {

display: block;

margin: 28px auto 36px auto;

text-align: center;

max-width: fit-content;

}

.blog-post-preview .about-text {
  text-align: center;
}


/* CENTER HOST IMAGE */

.hero-image {

display: block;

margin: 0 auto;

width: 100%;

max-width: 650px;

height: auto;

}


/* MOBILE ADJUSTMENT */

@media (max-width: 640px) {

.hero-image {

max-width: 100%;

}

.hero .btn-primary {

margin: 24px auto 28px auto;

}

}

/* LISTICLE STRUCTURE */

/* main article title stays centered */

.hero h1 {
  text-align: center;
}


/* numbered listicle subtitles align with text column */

.blog-content h2 {

  text-align: left;

  max-width: 760px;

  margin: 40px auto 12px auto;

}


/* improves spacing between list sections */

.blog-content {

  margin-bottom: 45px;

}
/* adds a divider between list sections on blog page preview */
.post-divider {
  border: none;
  height: 1px;
  margin: 40px 0;

  background: linear-gradient(
    90deg,
    transparent,
    rgba(92,225,230,0.4),
    rgba(140,82,255,0.4),
    rgba(251,61,254,0.4),
    transparent
  );
}

/* MOBILE FIXES FOR ABOUT + EPISODES */

@media (max-width: 950px) {

  .about-row {
    align-items: flex-start;
    text-align: left;
  }

  .about-text {
    text-align: left;
    max-width: 100%;
  }

  .episode-card {
    text-align: left;
    align-items: flex-start;
  }

  .episode-info {
    width: 100%;
    max-width: 100%;
    text-align: left;
  }

  .episode-description,
  .episode-title,
  .episode-label {
    text-align: left;
  }

  .episode-buttons {
    justify-content: center;
    flex-wrap: wrap;
  }
}

@media (max-width: 640px) {

  .episode-buttons {
    justify-content: center;
    gap: 10px;
  }

  .episode-buttons .btn-primary {
    display: inline-flex !important;
    margin: 0 !important;
  }
}

/* ABOUT PAGE – center image on mobile, keep text left aligned */

@media (max-width: 950px) {

  .about-square {

    display: block;

    margin-left: auto;
    margin-right: auto;

  }

}

/* EPISODES – center artwork on mobile */

@media (max-width: 950px) {

  .episode-art {

    display: block;

    margin-left: auto;
    margin-right: auto;

  }

}

/* stronger text weight for blog + articles */

.blog-post-preview .about-text,
.blog-content .about-text {

  font-weight: 550;
  letter-spacing: 0.06em;

}