html {
  height: 100%;
  margin: 0;
  color: white;
  scroll-behavior: smooth;
}

.arimo-regular {
  font-family: "Arimo", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}


.iosevka-charon-mono-regular {
  font-family: "Iosevka Charon Mono", monospace;
  font-weight: 400;
  font-style: normal;
}

p {
    font-family: Iosevka Charon Mono;
}

h2 {
    font-size: 50px;
}

nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #7F00FF;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
  position: relative;
}

.logo {
  height: 55px;
  width: auto;
  display: block;
  flex-shrink: 0;
  filter: drop-shadow(0 0 6px rgba(127, 0, 255, 0.6));
  padding-right: 10px;
}

.nav-links {
  display: flex;
  flex: 1;
  justify-content: space-evenly;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 1.5rem;
}

.nav-links li {
  flex: 1;
  text-align: center;
}

.nav-links a {
  display: block;
  width: 100%;
  padding: 14px 16px;
  color: white;
  text-decoration: none;
}

.nav-links a:hover {
  background: #6600CC;
}

.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.hamburger span {
  display: block;
  width: 28px;
  height: 3px;
  margin: 5px 0;
  border-radius: 2px;
  background: white;
  transition: 0.3s ease;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

@media (max-width: 768px) {
  .navbar {
    padding: 10px 14px;
  }

  .logo {
    height: 36px;
  }

  .hamburger {
    display: block;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #7F00FF;
    font-size: 1.1rem;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links li {
    width: 100%;
    flex: none;
  }

  .nav-links a {
    padding: 14px 20px;
  }
}

body {
    background-color: #0f0f0f;
    font-family: Iosevka Charon Mono;
}



.hero-image {
  /* background: url('./assets/images/Hero_Image.png'); */
  background: url('./assets/images/riot_pulse.gif') center/cover no-repeat;
  height: 50%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
    flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh; 
  position: relative;
}

.hero-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.6),
    rgba(0,0,0,0.2),
    rgba(0,0,0,0.8)
  );
}


.hero-text::before {
  content: "";
  position: absolute;
  inset: -40px;
  background: radial-gradient(
    circle,
    rgba(127, 0, 255, 0.25),
    transparent 70%
  );
  z-index: -1;
}

.hero-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  max-width: 700px;
  padding: 20px;
  z-index: 1;
    animation: fadeUp 1s ease;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translate(-50%, -40%);
  }
  to {
    opacity: 1;
    transform: translate(-50%, -50%);
  }
}

.hero-text h1 {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 700;
  margin-bottom: 10px;
}

.hero-text h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  opacity: 0.9;
  margin-bottom: 15px;
}

.hero-text h3 {
  font-size: 1.2rem;
  opacity: 0.7;
  margin-bottom: 25px;
}

.hero-text button {
  background: linear-gradient(135deg, #7F00FF, #B266FF);
  border: none;
  padding: 14px 28px;
  border-radius: 10px;
  font-size: 1rem;
  color: white;
  cursor: pointer;
  transition: 0.3s;
}

.hero-text button:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 20px rgba(127, 0, 255, 0.7);
}


.flavors-container {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
    padding: 60px 20px;
}


.fade-in {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.show {
  opacity: 1;
  transform: translateY(0);
}

.card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: #7F00FF;
  transition: width 0.3s ease;
}

.card:hover::before {
  width: 100%;
}

.card {
  text-align: center;
  width: 320px;
  height: 250%;
  padding: 10px;
  border: 5px solid white;
  margin: 0;
  flex: 1 1 250px;
    border-radius: 12px;
      position: relative;

  overflow: hidden;
  transition: 0.3s;
    display: flex;
  flex-direction: column;
  justify-content: space-between;
    transition: transform 0.3s ease, box-shadow 0.3s ease;

}

.card img {
  display: block;
  margin: 20px auto 0;
  max-width: 100%;
  height: auto;
  object-fit: contain;
  padding-top: 10px;
    transform: scale(0.9);
  transition: transform 0.6s ease;
    transition: transform 0.4s ease;

}

.card:hover img {
  transform: scale(1.05);
}

.card h2 {
  margin-bottom: 10px;
    transition: 0.3s ease;
}

.card:hover h2 {
  color: #B266FF;
  text-shadow: 0 0 10px rgba(127, 0, 255, 0.7);
}

.card .desc {
  margin-bottom: 20px;
}

.card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 15px 40px rgba(127, 0, 255, 0.4);
}

.card:nth-child(1) {
  box-shadow: 0 0 20px rgba(0, 150, 255, 0.2);
    transition-delay: 0.1s;
}

.card:nth-child(2) {
  box-shadow: 0 0 20px rgba(127, 0, 255, 0.3);
    transition-delay: 0.25s;

}

.card:nth-child(3) {
  box-shadow: 0 0 20px rgba(0, 255, 150, 0.2);
    transition-delay: 0.4s;
}

.fade-in.show img {
  transform: scale(1);
}

.desc {
    font-family: Arimo;
      opacity: 0.8;
  font-size: 1rem;
}

.buy-btn {
  margin-top: 15px;
  padding: 10px;
  background: #7F00FF;
  border: none;
  color: white;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.buy-btn:hover {
  background: #6600CC;
  transform: translateY(-3px);
  box-shadow: 0 0 15px rgba(127, 0, 255, 0.7);
}

/* .card img {
  display: block;
  margin: 20px auto 0;
  max-width: 100%;
  height: auto;
  object-fit: contain;
} */

.about {
  background-color: #7F00FF;
  padding: 60px 20px;
  display: flex;
  justify-content: center;
}

.about-text {
  width: 100%;
  max-width: 1100px;
  border: 4px solid white;
  padding: 40px 30px;
  box-sizing: border-box;
  text-align: center;
}

.about-text h1 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  margin-bottom: 20px;
}

.about-text p {
  font-size: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.6;
  margin: 0 auto;
  max-width: 900px;
}

.about:hover {
  box-shadow: 0 0 40px rgba(127, 0, 255, 0.2);
}

@media (max-width: 768px) {
  .about {
    padding: 40px 15px;
  }

  .about-text {
    padding: 24px 16px;
    border-width: 2px;
  }

  .about-text h1 {
    margin-bottom: 16px;
  }

  .about-text p {
    font-size: 1rem;
  }
}


* {
  box-sizing: border-box;
}

body {
  margin: 0;
  overflow-x: hidden;
}

.contact-section {
  width: 100%;
  padding: 40px 16px;
  display: flex;
  justify-content: center;
}

.contact-text {
  width: min(100%, 500px);
  max-width: 100%;
  border: 3px solid white;
  border-radius: 5px;
  background-color: #f2f2f2;
  padding: 20px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}

.contact-form label {
  color: black;
  text-align: left;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  max-width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font: inherit;
}

.contact-form textarea {
  min-height: 180px;
  resize: vertical;
}

.contact-form input[type="submit"] {
    cursor: pointer;
    background-color: #7F00FF;
    color:white;
}

@media (max-width: 768px) {
  .contact-section {
    padding: 24px 12px;
  }

  .contact-text {
    padding: 16px;
    border-width: 2px;
  }
}

input[type=submit]:hover {
  background-color: #6600CC;
}

.socials {
    display: inline;
}

footer {
   text-align: center;
}

footer a {
    color: white;
    padding-bottom: 10px;
}


.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: 0.6s;
}

.fade-in.show {
  opacity: 1;
  transform: translateY(0);
}