.text a {
    display: inline-block;
    font-size: 1em;
    background: #fff;
    padding: 10px 30px;
    text-decoration: none;
    color: #111;
    margin-top: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: 0.2s;
}

.text a:hover {
    letter-spacing: 6px;
}

nav a {
    color: #cadfea;
    text-decoration: none;
    padding: 30px;
}

nav a:hover {
    text-decoration: overline;
    color: #9CC1E1;
    text-shadow: 2px 2px 5px #9CC1E1
}

.nav-links { display: none; } 
.nav-links.active { display: flex; flex-direction: column; } 
.hamburger { cursor: pointer; position: absolute; right: 6px; margin-top: -14px;}
.hamburger span { 
    display: block; 
    width: 25px; 
    height: 3px; 
    background: #cadfea; 
    margin: 5px; 
    position: relative;
}

@media(max-width: 798px){
    .showcase,
    .showcase header {
        padding: 40px;
    }

    .text h2 {
        font-size: 3em;
    }

    .text h3 {
        font-size: 2em;
    }
}

h1 {
    color: #125079;
    font-size: 60px;
    padding-top: 50px;
}

img {
    width: 200px;
}

body {
  font-family: Georgia, serif;
  background: #125079;
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

@import url('https://fonts.googleapis.com/css2?family=Baloo+2:wght@800&family=Nunito:wght@400;600&display=swap');

:root {
  --sky: #b8d8e8;
  --navy: #1a4a6b;
  --cream: #cadfea;
  --white: #125079;
  --r: 14px;
  --s: 0 4px 18px rgba(26,74,107,0.13);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body { font-family: 'Nunito', sans-serif; background: var(--sky); color: var(--navy); overflow-x: hidden; }

h1, h2, h3, nav a, footer { font-family: 'Baloo 2', cursive; }


nav { background: var(--white); display: flex; justify-content: center; gap: 2.5rem; padding: 1rem; position: sticky; top: 0; z-index: 100; box-shadow: 0 2px 10px rgba(26,74,107,0.08); }
nav a { font-size: 1rem; text-decoration: none; letter-spacing: 1px; padding-bottom: 3px; position: relative; }
nav a::after { content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 2px; background: var(--navy); transition: width 0.3s; }
nav a:hover::after { width: 100%; }

header { text-align: center; padding: 2.5rem 1rem 1.5rem; }
header h1 { font-size: clamp(2.2rem, 5vw, 3.5rem); letter-spacing: 2px; }

section { max-width: 860px; margin: 0 auto 3rem; padding: 0 1.5rem; padding-top: 50px;}
section h2 { font-size: 1.4rem; margin-bottom: 1.2rem; letter-spacing: 1px; }

#hero, #about { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; align-items: center; }
.ep-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.3rem; }
.merch-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.3rem; }

.hero-img, .about-img { width: 100%; border-radius: var(--r); box-shadow: var(--s); transition: transform 0.4s; }
.hero-img:hover { transform: scale(1.03); }
.about-img:hover { transform: scale(1.03) rotate(1deg); }

.text-box { background: var(--navy); border-radius: var(--r); padding: 1.6rem 1.8rem; box-shadow: var(--s); line-height: 1.7; font-size: 0.97rem; }
.text-box h3 { font-size: 1.3rem; margin-bottom: 0.6rem; }

.ep-card, .merch-card { background: var(--navy); border-radius: var(--r); overflow: hidden; box-shadow: var(--s); transition: transform 0.35s; }
.ep-card:hover, .merch-card:hover { transform: translateY(-5px); }
.ep-card img, .merch-card img { width: 100%; display: block; }
.ep-card p { padding: 0.8rem 1rem; font-size: 0.88rem; line-height: 1.5; }
.merch-card p { padding: 0.8rem; font-size: 0.85rem; line-height: 1.5; text-align: center; }

body {
  font-family: Arial, sans-serif;
  background: #D0DDE7;
}

.characters {
  width: 100%;
  margin: 40px auto;
  padding: 20px;
  background: #E2DBB9;
  border: 3px solid #9AB2C8;
}



h2 {
  margin-top: 0;
}

h3{
  color: #cadfea;
}

.carousel {
  display: flex;
  align-items: center;
  gap: 10px;
}

.track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 10px;
}

.track::-webkit-scrollbar {
  display: none;
}

.track img {
  width: 120px;
  height: 140px;
  object-fit: cover;
  border: 2.5px solid #9AB2C8;
  cursor: pointer;
  transition: transform 0.2s;
}

.track img:hover {
  transform: scale(1.08);
}

.track img:hover::after {
  content: attr(data-name);
}

button {
  font-size: 30px;
  border: none;
  background: none;
  cursor: pointer;
  color: #125079;
}

#description {
  margin-top: 20px;
  padding: 25px;
  text-align: center;
  background: #9fb6c9;
  font-size: 18px;
  color: #125079;
}


footer { background: var(--navy); color: var(--cream); text-align: center; padding: 1.5rem; font-size: 0.95rem; letter-spacing: 1px; }

.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.7s, transform 0.7s; }
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 600px) {
  #hero, #about { grid-template-columns: 1fr; }
  .ep-grid { grid-template-columns: 1fr; }
  .merch-grid { grid-template-columns: 1fr 1fr; }
}

p{
    color: #cadfea;
}
