@charset "UTF-8";
  
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

/*
Fade in from left animation
@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-150px); }
  to { opacity: 1; transform: translateX(0); }
}
*/


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

body {
  background-color: #24252A;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: white;
}

li, a {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500px;
  font-size: 16px;
  color: #edf0f1;
  text-decoration: none;
}

.logo {
  width: 140px;
  height: 140px;
  cursor: pointer;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 3px 10px;
  position: relative;
}

.nav-links {
  list-style: none;
}

.nav-links li {
  display: inline-block;
  padding: 0px 20px;
}

.nav-links li a {
  transition: all 500ms ease 0s;
}

.nav-links li a:hover {
  color: #33d0ac;
  background-color: rgb(65, 64, 64);
  padding: 0px 30px;
}


.divider {
  position: absolute;
  margin-bottom: 16px;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: #bc6ef0
}

.container {
  max-width: 1450px; /* The maximum width your content will grow to */
  margin: 0 auto;    /* "0" for top/bottom, "auto" for left/right (centers it) */
  padding: 0 1rem;   /* "0" for top/bottom, "1rem" for left/right */
}

.luban-banner {
  position: relative;
  height: 100vh; /* Fixed viewport height */
  min-height: 400px;
  max-height: 700px;
  background-image: url('../images/Luban_No.7_mythic_skin.webp');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  animation: fadeIn 500ms ease-in-out forwards;
}

.luban-splash {
  display: none;
}

/* This add the fade at the bottom (huge btw)*/
.luban-banner::after { 
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 70%; /* Adjust this to control how much of the image fades */
  background: linear-gradient(to top, #2b2c30 0%, transparent 100%);
  pointer-events: none; /* This ensures clicks pass through to the image */
}

.text-overlay {
  text-align: center;
  color: white;
  position: absolute;
  top: 80%; /* Always center vertically */
  left: 50%;
  transform: translate(-50%, -50%); /* True center */
  z-index: 2;
  width: 90%; /* Prevent overflow */
  padding: 20px;
}

.text-overlay h1 {
  font-size: clamp(2rem, 8vw, 4.25rem);
  text-shadow: 0px 0px 1em rgba(0, 0, 0, 0.8);
  font-weight: bold;
  margin-bottom: clamp(1rem, 3vw, 2rem);
  line-height: 1.2;
}

.text-overlay p {
  font-size: clamp(1.2rem, 4vw, 3rem);
  text-shadow: 0px 0px 1em rgba(0, 0, 0, 0.8);
  font-weight: bold;
  margin-bottom: clamp(0.5rem, 2vw, 1rem);
  line-height: 1.3;
}

.cat-throw {
  position: absolute;
  width: 150px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin-top: 90px;
}

.bongo-cat {
  max-width: 50px;
  max-height: 50px;
  position: absolue;
  margin-left: 20px;
}

.introduction-section h2 {
  color: white;
  margin-top: 30px;
  display: flex;
  align-items: center;
}

.introduction-section h2::before {
   content: "";
   display: inline-block;
   width: 40px;
   height: 20px;
   background-color: #a8f888;
   clip-path: polygon(0 0, 80% 0, 100% 100%, 20% 100%);
   margin-right: 10px;
}

.introduction-section h2::after {
  content: '';
  display: inline-block;
  background-color: #a8f888;
  height: 4px;
  flex: 1;
  margin-left: 10px;
}

p {
  margin-top: 20px;
  font-size: 25px;
  font-weight: 500;
  line-height: 1.9em;
  margin-bottom: 15px;
}

h2::before {
   content: "";
   display: inline-block;
   width: 40px;
   height: 25px;
   background-color: #a8f888;
   margin-right: 10px;
}
 
h2::after {
  content: '';
  display: inline-block;
  background-color: #a8f888;
  height: 4px;
  flex: 1;
  margin-left: 10px;
}

.carousel-container {
    position: relative;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    margin-top: 40px;
    margin-bottom: 10px;
}

.carousel {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}

.carousel-slide.active {
    opacity: 1;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.slide-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: white;
    padding: 20px;
    padding-top: 40px;
}

.slide-caption h3 {
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.slide-caption p {
    font-size: 1rem;
    opacity: 0.9;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
    display: flex;
    justify-content: center;
    align-items: center;
}

.carousel-btn:hover {
    background: rgba(255, 255, 255, 0.4);
    transform: translateY(-50%) scale(1.1);
}

.prev-btn {
    left: 20px;
}

.next-btn {
    right: 20px;
}

.carousel-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: white;
    transform: scale(1.2);
}

.dot:hover {
    background: rgba(255, 255, 255, 0.8);
}

.hero-selector {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-flow: column nowrap;
  position: relative;
}

.select-hero {
  font-size: 69px; /* lol */
  font-weight: bold;
  text-shadow: 0 0 1em rgba(0, 0, 0, 0.334);
  border-top: 4px solid #d38ee0;
}

.hero-selector img {
  margin-top: 20px;
  max-width: 600px;
}

.new-release {
  background-color: rgb(243, 94, 94);
  color: rgb(255, 255, 255);
  padding: clamp(3px, 1vw, 5px) clamp(12px, 3vw, 20px);
  font-size: clamp(14px, 3vw, 30px);
  border-radius: 50px;
  font-weight: 800;
  font-style: italic;
  margin-top: -20px; /* Adjust based on your layout */
  z-index: 2;
  /* Remove absolute positioning */
  position: static;
  margin-left: 0;
}

.hero-name {
  margin-top: 30px;
  font-size: 39px;
  font-weight: normal;
  text-shadow: 0 0 1em rgba(0, 0, 0, 0.334);
  margin-bottom: 20px;
  color: white
  ;
}