/* Base Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Body */
body {
  font-family: 'Poppins', sans-serif;
  color: white;
  background-color: black;
}

/* Header Background */
header {
  width: 100%;
  height: 100vh;
  background-image: url(assets/hero.png);
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  flex-direction: column;
}

/* Overlay */
.hero-overlay {
  width: 100%;
  height: 100%;
  background-color: rgb(4 0 0 / 73%);
  box-shadow:
    inset 0 5px 15px rgba(0, 0, 0, 0.3),
    inset 0 -5px 15px rgba(0, 0, 0, 0.3),
    inset 5px 0 15px rgba(0, 0, 0, 0.3),
    inset -5px 0 15px rgba(0, 0, 0, 0.3);
  position: absolute;
  top: 0;
  left: 0;
}

/* Navbar */
nav {
  height: 9vh;
  width: 80vw;
  margin: 0 auto;
  display: flex;
  align-items: end;
  justify-content: space-between;
  position: relative;
  z-index: 1;
  padding-top: 1rem;
}

.logo img {
  width: 150px;
}

.buttons {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.buttons .lang,
.buttons .sign {
  padding: 0.5rem 1rem;
  border-radius: 6px;
  font-size: 1rem;
  cursor: pointer;
}

.buttons .lang {
  background-color: transparent;
  color: white;
  border: 1px solid rgb(196, 190, 190);
}

.buttons .sign {
  background-color: red;
  color: white;
  border: none;
}

/* Hero Section */
.hero {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.hero-content {
  width: 100%;
  max-width: 700px;
  text-align: center;
  padding: 2rem;
}

.hero-content h1 {
  font-size: 3.4rem;
  font-weight: 850;
  margin-bottom: 1rem;
}

.hero-content h2 {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
}

.hero-content p {
  font-size: 1rem;
  margin-top: 2rem;
}

/* Email Form */
.email-form {
  display: flex;
  gap: 0.5rem;
  margin-top: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.email-form input,
.email-form button {
  height: 3.5rem;
  font-size: 1rem;
  border-radius: 6px;
}

.email-form input {
  flex: 1 1 250px;
  max-width: 400px;
  padding: 0 1rem;
  background-color: #0c0b0cb5;
  border: 1px solid rgb(104, 99, 99);
  color: rgb(249, 238, 238);
}

.email-form input::placeholder {
  color: rgb(173, 164, 164);
}

.email-form button {
  flex: 0 1 250px;
  border: none;
  font-size: 1.8rem;
  font-weight: 550;
  background-color: red;
  color: white;
  cursor: pointer;
}


@media (max-width: 1024px) {
  .hero-content h1 {
    font-size: 2.5rem;
  }

  .email-form {
    flex-direction: row;
    align-items: stretch;
  }

  .email-form input,
  .email-form button {
    width: 100%;
  }

  nav {
    width: 90vw;
  }

  .logo img {
    width: 120px;
  }
}

@media (max-width: 768px) {
  .hero-content {
    padding: 1.5rem;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .hero-content h2 {
    font-size: 1rem;
  }

  .hero-content p {
    font-size: 0.9rem;
  }

  .email-form {
    flex-direction: row;
    align-items: center;
  }

  .email-form input,
  .email-form button {
    width: 90%;
    max-width: 400px;
  }

  nav {
    flex-direction: row;
    align-items: center;
    height: auto;
    gap: 1rem;
  }

  .buttons {
    flex-direction: row;
    gap: 0.8rem;
  }
}

@media (max-width: 480px) {
  .hero-content {
    padding: 1rem;
  }

  .hero-content h1 {
    font-size: 1.6rem;
  }

  .hero-content h2 {
    font-size: 0.95rem;
  }

  .hero-content p {
    font-size: 0.85rem;
  }

  .email-form input,
  .email-form button {
    width: 95%;
  }

  .email-form button {
    font-size: 1.4rem;
    height: 3rem;
  }

  .logo img {
    width: 100px;
  }

  .buttons .lang,
  .buttons .sign {
    font-size: 0.9rem;
    padding: 0.4rem 0.8rem;
  }
}

.trending {
  padding: 2rem 0rem;
  margin: 2rem 20%;
  color: white;
}

.trending h2 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.trending-container {
  display: flex;
  gap: 2rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding-bottom: 1rem;
}

.trending-container::-webkit-scrollbar {
  height: 8px;
}
.trending-container::-webkit-scrollbar-thumb {
  background: #555;
  border-radius: 10px;
}

.card {
  position: relative;
  min-width: 150px;
  flex: 0 0 auto;
  border-radius: 10px;
  overflow: hidden;
}

.card img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
}

.number {
  position: absolute;
  top: -10px;
  left: -10px;
  font-size: 4rem;
  font-weight: 900;
  color: white;
  -webkit-text-stroke: 2px black;
  z-index: 2;
  pointer-events: none;
}


.reasons {
  padding: 3rem 1rem;
  margin: 2rem 10%;
  color: white;
}

.reasons h2 {
  font-size: 1.6rem;
  margin-bottom: 2rem;
}

.reasons-container {
  display: flex;
  gap: 5rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding-bottom: 1rem;
}

.reasons-container::-webkit-scrollbar {
  height: 8px;
}
.reasons-container::-webkit-scrollbar-thumb {
  background: #555;
  border-radius: 10px;
}

.reason-card {
  background: linear-gradient(145deg, #1a1a2e, #bc77b3);
  border-radius: 18px;
  padding: 1.5rem;
  min-width: 250px;
  max-width: 300px;
  flex: 0 0 auto;
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1rem;
}

.reason-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
}

.reason-card p {
  font-size: 0.95rem;
  color: #ccc;
  line-height: 1.5;
}

.reason-card img {
  width: 40px;
  align-self: flex-end;
}


.footer {
  background-color: black;
  color: #999;
  padding: 3rem 2rem;
  font-family: Arial, sans-serif;
}

.cta {
  text-align: center;
  margin-bottom: 2rem;
}

.cta p {
  font-size: 1rem;
  margin-bottom: 1rem;
  color: #fff;
}

.email-form {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.email-form input {
  padding: 1rem;
  width: 300px;
  max-width: 90%;
  background-color: #222;
  border: none;
  color: white;
  border-radius: 4px;
}

.email-form button {
  padding: 1rem 1.5rem;
  background-color: red;
  color: white;
  border: none;
  font-weight: bold;
  border-radius: 4px;
  cursor: pointer;
  white-space: nowrap;
}

.footer-links p {
  margin-bottom: 1rem;
}

.footer-links a {
  color: #999;
  text-decoration: none;
  font-size: 0.9rem;
}

.link-columns {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
}

.link-columns ul {
  list-style: none;
  padding: 0;
  width: 180px;
}

.link-columns li {
  margin-bottom: 0.8rem;
}

.footer-bottom {
  margin-top: 2rem;
  text-align: left;
  color: #999;
  font-size: 0.85rem;
}

.footer-bottom select {
  padding: 0.5rem;
  background-color: #000;
  color: #999;
  border: 1px solid #555;
  margin-bottom: 1rem;
}

.captcha-note a {
  color: #999;
  text-decoration: underline;
}



