body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background: #0A0A0A;
  color: #E0E0E0;
  text-align: center;
  scroll-behavior: smooth;
}

/* HEADER + NAVIGATION */
header {
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 0 20px;
  background: rgba(10, 10, 10, 0.9);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  height: 60px;
  position: fixed;
/* z-index: 2; /* Make sure the header stays above other content */ */
}
a:visited {
  color: #66ccff;  /* or #ffd700 for gold */
}
.menu {
  display: none;
  background-color: #111;
  padding: 1rem;
}

.menu.active {
  display: block;
}


#fullscreenOverlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.9);
    z-index: -1;
    pointer-events: none;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    overflow: hidden;
    padding: 1rem;
  }

  #fullscreenOverlay.show {
    display: flex;
    z-index:9999;
    pointer-events: auto;
  }

  #modalContent {
    text-align: center;
    width: 100%;
    max-width: 90vw;
  }

  #modalImg {
    width: 100%;
    height: auto;
    max-height: 80vh;
    border-radius: 8px;
    box-shadow: 0 0 20px rgba(0,0,0,0.5);
    object-fit: contain;
  }

  #modalCaption {
    color: #ccc;
    margin-top: 1rem;
    font-size: 1rem;
    max-width: 90vw;
    text-align: center;
  }

  #closeBtn {
    position: absolute;
    top: 20px;
    right: 30px;
    background: none;
    color: #fff;
    font-size: 2rem;
    border: none;
    cursor: pointer;
    z-index: 10001;
  }
  @media (max-width: 600px) {
    #modalImg {
      max-width: 100vw;
      max-height: 70vh;
    }

    #modalCaption {
      font-size: 0.9rem;
      padding: 0 1rem;
    }

    #closeBtn {
      font-size: 1.5rem;
      top: 10px;
      right: 15px;
    }
  }

#logo {
  width: 150px;
}
#audioBtn {
  background-color: #1e1e1e;
  color: #fff;
  padding: 10px 20px;
  border: none;
  border-radius: 10px;
  font-size: 18px;
  cursor: pointer;
  transition: background-color 0.3s;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
}

#audioBtn:hover {
  background-color: #444;
}

#audioIcon {
  font-size: 20px;
}
nav {
  display: flex;
  gap: 1rem;
}

nav a {
  color: #66D9EF;
  text-decoration: none;
  font-size: 1.1rem;
  transition: 0.3s;
  padding-right:20px;
}

nav a:hover {
  color: #45A0C5;
}


.hamburger {
  display: none;
  font-size: 2rem;
  background: none;
  border: none;
  color: #66D9EF;
  cursor: pointer;
}
.caption {
  margin-top: 18px;
}

@media (max-width: 768px) {
  nav {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 60px;
    right: 0;
    background-color: #111;
    width: 100%;
    text-align: center;
    padding: 20px 0;
  }

  nav a {
    display: block;
    margin: 10px 0;
  }

  nav.active {
    display: flex;
  }

  .hamburger {
    display: block;
  }
  header {
    position: relative;
  }
}

/* HERO */
.hero {
  position: relative;
  background: url('../img/hero-geonik-no-bk.png')no-repeat center center/cover;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 0 2vw 20px 2vw;
  text-shadow: 2px 2px 3px rgba(0, 0, 0, 0.7);
  background-color: 0A0A0A;
}

.hero-text {
  max-width: 700px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  text-align: center;


}
.hero-text h1 {
  font-size: 2.8rem;
  color: #52412B !important;
  /* margin-bottom: 70px; */
  margin-right: 0;
  text-shadow:
  -2px -2px 0 #D8AA79,
   2px -2px 0 #D8AA79,
  -2px  2px 0 #D8AA79,
   2px  2px 0 #D8AA79 !important;
}


.hero-text p {
  font-size: 1.5rem;
  color: #fff;
  margin-bottom: 50px;
}


.hero-hero {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 0 20px;
}

.hero2 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-width: 700px;
  width: 100%;
  text-shadow: 2px 2px 10px rgba(255, 255, 255, 0.7);
}

.hero h1 {
  font-size: 2.8rem;
  color: #52412B;
  margin: 40px 20px 20px;
}

.hero .unravel {
  font-size: 1.5rem;
  margin: 0 20px 40px;
  color: #ffffff;
  text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.9)
}

.hero .btn {
  font-size: 1.2rem;
  padding: 12px 24px;
  background-color: #4c99bb;
  color: #fff;
  border-radius: 5px;
  text-transform: uppercase;
  box-shadow: 0px 0px 8px rgba(102, 217, 239, 0.6);
  transition: 0.3s ease-in-out;
  text-decoration: none;
}

.hero .btn:hover {
  background: #45A0C5;
  box-shadow: 0px 0px 15px rgba(102, 217, 239, 1);
}

.hero-book {
  position: absolute;
  /* width: 100%; */
  left: 7%;
  bottom: 8%;
  max-width: 375px;
  height: auto;
}
@media (max-width: 975px) {
.hero h1 {
  font-size: 2.5rem;
}

}
@media (max-width: 895px) {
.hero h1 {
  font-size: 2rem;
}
.hero-text {
  margin-top: 0;
  margin-bottom: 30px;
}
.unravel, .btn {
  margin: 0;
}

}



@media (max-width: 768px) {
  .hero {
    flex-direction: column;
    justify-content: center;
    padding: 20px;
    background-position: top center;
  }

  .hero-book {
    position: static;
    width: 90%;

  }


  .hero-text {
    text-align: center;
  }
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 2rem;
  }
  .hero .unravel {
    font-size: 1.2rem;
  }
  .hero .btn {
    font-size: 1rem;
    padding: 10px 20px;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 1.6rem;
  }
  .hero .unravel {
    font-size: 1rem;
  }

  .hero-book {
    margin-top: 20px;
  }

}

/* SECTION SHARED STYLES */
.section {
  padding: 100px 20px;
  max-width: 900px;
  margin: auto;
  text-align: center;
}

.section h2 {
  font-size: 2.5rem;
  color: #D8AA79;
  text-transform: uppercase;
}

.section h3 {
  font-size: 1.5rem;
  color: #D8AA79;
  text-transform: uppercase;
}
.section p {
  font-size: 1.3rem;
  line-height: 1.6;
  color: #B0B0B0;
  text-align: left;
  margin: 0 auto 30px;
  max-width: 1000px;
}

/* CHARACTER GALLERY */
.characters, .gods, .world {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin-top: 30px;
}


.characters img {
  width: 150px;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  transition: transform 0.3s ease;
}
.gods img {
  width: 200px;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  transition: transform 0.3s ease;
}
.world img {
  width: 400px;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  transition: transform 0.3s ease;
}


.characters img:hover, .gods img:hover, .world img:hover {
  transform: scale(1.05);
}

#eye, #lykana {
  width: 220px;
}

#rizor {
  width: 100%;
  height: auto;
  margin: 20px 0;
}

/* MAILCHIMP SIGN-UP */
#mc_embed_shell {
  display: flex;
  justify-content: center;
  padding: 5px 20px;
}

#mc_embed_signup {
  background-color: #111;
  padding: 30px;
  border-radius: 10px;
  color: #fff;
  box-shadow: 0 0 20px rgba(102, 217, 239, 0.2);
  max-width: 600px;
  width: 100%;
}

#mc_embed_signup h2 {
  font-family: 'Poppins', sans-serif;
  color: #D8AA79;
  font-size: 1.8rem;
  letter-spacing: 1.5px;
  margin-bottom: 20px;
}

#mc_embed_signup label {
  display: block;
  font-size: 1rem;
  margin-bottom: 10px;
  color: #CCC;
}

#mc_embed_signup input[type="email"] {
  width: 50%;
  padding: 12px;
  border: none;
  border-radius: 5px;
  font-size: 1rem;
  margin-bottom: 20px;
}

#mc_embed_signup .button {
  all: unset;
  background: #D8AA79;
  margin: 0 auto;
  font-size: 0.95rem;
  color: #fff;
  line-height: 1.4;
  text-align: center;
  border-radius: 5px;
  cursor: pointer;
  transition: 0.3s ease-in-out;
  text-transform: uppercase;
  box-shadow: 0px 0px 8px rgba(102, 217, 239, 0.6);
}

#mc_embed_signup .button:hover {
  background: #45A0C5 !important;
  box-shadow: 0px 0px 15px rgba(102, 217, 239, 1) !important;
}

#mc_embed_signup .refferal_badge {
  display: none;
}

#mc_embed_signup_scroll {
  display: flex;
  flex-direction: column;
  align-items: center !important;
}

.character-info {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #d9ab79;
  color: #000;
  border: 2px solid #444;
  padding: 20px;
  max-width: 400px;
  border-radius: 10px;
  z-index: 1000;
  box-shadow: 0 0 15px rgba(0,0,0,0.3);
}

.character-info.hidden {
  display: none;
}

.character-info button {
  margin-top: 10px;
  padding: 6px 12px;
  border: none;
  background: #444;
  color: white;
  border-radius: 6px;
  cursor: pointer;
}

.text-center {
  text-align: center !important;
}
/* FOOTER */
.footer {
  padding: 30px;
  background: #111;
  font-size: 0.9rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 15px;
}

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

/* RESPONSIVE TWEAKS */
@media (max-width: 768px) {
  .hero {
    justify-content: center;
    text-align: center;
    padding: 20px;
  }

  .hero-text {
    text-align: center;
  }

  .section {
    padding: 80px 16px;
  }

  .section h2 {
    font-size: 2rem;
  }

  .section p {
    font-size: 1.1rem;
    margin-bottom: 24px;
  }

  .characters img {
    width: 120px;
    height: 160px;
  }
.gods img {
  width: 120px;
  height: 120px;
}
.worlds img {
  width: 120px;
}
  #eye, #lykana {
    width: 180px;
  }
}

@media (max-width: 480px) {
  .section h2 {
    font-size: 1.6rem;
  }

  .section p {
    font-size: 1rem;
    margin-bottom: 20px;
  }

  .characters img {
    width: 100px;
    height: 140px;
  }
  .gods img {
    width: 100px;
    height: 100px;
  }
  .worlds img {
    width: 100px;
  }

  #eye, #lykana {
    width: 150px;
  }

  #mc_embed_signup {
    padding: 20px;
  }

  #mc_embed_signup h2 {
    font-size: 1.4rem;
  }

  #mc_embed_signup input[type="email"] {
    font-size: 0.95rem;
    padding: 10px;
  }

  #mc_embed_signup .button {
    font-size: 1rem;
    padding: 10px 0;
  }

  .footer {
    padding: 20px 10px;
    font-size: 0.8rem;
  }

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