/* Base styles */
body {
  margin: 0;
  background-color: #121212;
  background-image: url(images/naruto02.jpg);
  background-repeat:repeat; 
  background-blend-mode: overlay;
  font-family: 'Poppins', sans-serif;
  color: white;
  
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 2rem;
  background: transparent;
  position: relative;
  z-index: 10;
}

.logo img {
  height: 150px;
  margin-top: -30px;
  margin-left: -50px;
}

nav {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: -70px;
}

nav button, nav input, nav a {
      background: linear-gradient(45deg, #ff0000, #ff4500);;
  border: none;
  padding: 0.4rem 1rem;
  border-radius: 20px;
  color: white;
  font-weight: bold;
  cursor: pointer;
  font-family:'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
  text-decoration: none;
}
nav button:hover, nav input:hover, nav a:hover {
  background-color: #c72b2f;
  scale: 1.05;
  transition: 0.06s ease;
}



main {
  display: flex;
  padding: 2rem;
}

.info-box {
  width: 700px;
  

  padding-right: 2rem;
}

.description-box {
  background: rgb(203, 187, 181);
  color: black;
  border-radius: 15px;
  padding: 1rem;
  font-size: 0.95rem;
  font-weight: 500;
}

.info-buttons {
  display: flex;
  justify-content: space-between;
  margin-top: 1rem;

}
.info-buttons button:hover {
  background-color: #c72b2f;
}

.info-buttons button {
  background-color: #e0363b;
  color: white;
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 10px;
  font-weight: bold;
  cursor: pointer;
}

.carousel-wrapper {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.carousel {
  display: flex;
  transition: transform 0.5s ease;
  width: max-content;
}

.carousel img {
  height: 300px;
  width: 500px;
  object-fit: cover;
  margin-right: 1rem;
  border-radius: 15px;
  cursor: pointer;
}

.dots {
  text-align: center;
  margin-top: 10px;
}

.dots button {
  background-color: #aaa;
  border: none;
  border-radius: 50%;
  width: 12px;
  height: 12px;
  margin: 5px;
  cursor: pointer;
}

.dots .active {
  background-color: #e0363b;
}
.vertical-carousel {
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow-y: scroll;
  height: 410px;
  width: 500px;
  scroll-snap-type: y mandatory;
  padding: 1rem 0;
  scrollbar-width: none;
}

.vertical-carousel::-webkit-scrollbar {
  display: none;
}

.carousel-item {
  scroll-snap-align: center;
  opacity: 0.3;
  transform: scale(0.9);
  transition: all 0.4s ease;
  margin: 1rem 0;
  position: relative;
  
}

.carousel-item img {
  width: 450px;
  border-radius: 15px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

/* Active center item */
.carousel-item.active {
  opacity: 1;
  transform: scale(1.1);
}
.carousel-section{
 background-color: rgba(0, 0, 0, 0);
  border-radius: 15px;
  display: flex;
  justify-content: center;
  padding-top: 20px;
  padding-bottom: 20px;
  padding-left: 100px;
  padding-right: 100px;

}
.copyright {
    text-align: center;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 50px;
    padding: 20px;
    font-weight: 400;
    background-color: transparent;
} 

.search-icon {
  cursor: pointer;
  display: flex;
  align-items: center;
  margin-left: auto;
  padding: 0.5rem;
}

.search-icon svg {
  stroke: white; /* or any color to match your theme */
  width: 24px;
  height: 24px;
  transition: transform 0.2s ease;
}

.search-icon:hover svg {
  transform: scale(1.1);
}

h1 {
  font-size: 2.5rem;
  color: #c05b5e;
  text-align: center;
  margin-top: 20px;

}


.search-button.hide {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

