body {
  background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('img/charactersBG.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  background-repeat: no-repeat;
  color: #f0ebd8;
  margin: 0;
  min-height: 100vh;
}

.topbar {
  align-items: center;
  background: rgba(20, 25, 30, 0.85);
  box-sizing: border-box;
  display: flex;
  gap: 20px;
  justify-content: space-between;
  padding: 20px 8%;
  width: 100%;
  position: relative;
}

.title,
.site-nav a {
  color: #f0ebd8;
  text-decoration: none;
}

.title {
  white-space: nowrap;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: flex-end;
}

.site-nav a:hover,
.site-nav .selected {
  color: #d7a94f;
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid rgba(240, 235, 216, 0.6);
  border-radius: 6px;
  color: #f0ebd8;
  cursor: pointer;
  font-size: 1.5rem;
  line-height: 1;
  padding: 6px 10px;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  user-select: none;
}

.nav-toggle:hover,
.nav-toggle:focus-visible {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(240, 235, 216, 0.9);
}

.nav-toggle:active,
.nav-toggle.is-active {
  background: rgba(215, 169, 79, 0.18);
  border-color: rgba(215, 169, 79, 0.8);
  box-shadow: 0 0 0 2px rgba(215, 169, 79, 0.25);
  transform: translateY(1px) scale(0.99);
}

/* Immediate pressed feedback for touch/pointer */
.nav-toggle.is-pressed {
  background: rgba(215, 169, 79, 0.26);
  border-color: rgba(215, 169, 79, 0.95);
  box-shadow: 0 8px 20px rgba(215, 169, 79, 0.12), 0 0 0 4px rgba(215, 169, 79, 0.10);
  transform: translateY(1px) scale(0.985);
}

.story-container {
  display: grid;
  grid-template-columns: repeat(3, minmax(220px, 1fr));
  gap: 22px;
  margin: 40px auto 110px;
  max-width: 1200px;
  padding: 0 5%;
}

.story-card {
  background: rgba(15, 18, 22, 0.72);
  border: 1px solid rgba(215, 169, 79, 0.45);
  border-radius: 16px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.22);
  padding: 28px 30px;
  min-height: 240px;
  width: 100%;
  max-width: none;
  justify-self: stretch;
}

@media (max-width: 900px) {
  .story-container {
    grid-template-columns: repeat(2, minmax(220px, 1fr));
  }
}

@media (max-width: 700px) {
  .topbar {
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    pointer-events: auto;
  }

  .site-nav {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding-top: 12px;
    position: relative;
    z-index: 1;
  }

  .site-nav.is-open {
    display: flex;
  }

  .story-container {
    grid-template-columns: 1fr;
  }

  img{
    width: 50%;
  }

  
}

.story-card h2,
.story-card h3 {
  color: #f4d07a;
  margin: 0 0 10px;
}

.story-card p {
  color: #f0ebd8;
  line-height: 1.7;
  margin: 0;
}

footer {
  bottom: 0;
  display: flex;
  justify-content: space-between;
  padding: 20px 8%;
  position: fixed;
  width: 84%;
}

.home-copy {
  margin: 42px 8% 100px;
  max-width: 620px;
}

.home-copy h3 {
  margin: 0 0 20px;
  max-width: 420px;
}

.home-copy p {
  margin: 0 0 16px;
}

.video-wrap {
  margin: 30px 8% 0;
  max-width: 760px;
}

.video-wrap iframe {
  border: 0;
  border-radius: 12px;
  display: block;
  width: min(100%, 700px);
  aspect-ratio: 16 / 9;
  height: auto;
}

@media (min-width: 650px) {
  nav {
    gap: 30px;
  }
}

.image{
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

h2{
  margin-left: 50px;
}

.container{
  width: 100vw;
  display: flex;
  align-items: start;
}

.image img{
  width:70%;
  height:70%;
  margin: 10px 0px 10px 0px;
}