* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Nunito', sans-serif;
  background-color: #fc9e34;
  color: white;
}
a {
  
  text-decoration: none;
  color: white;
}

a:hover {
  color: white;
  text-decoration: underline;
}
a:active {
  color: white;
}


/* HERO */
.hero {
  padding: 60px 20px;
}

.hero-content {
  max-width: 1200px;
  margin: auto;
  display: flex;
  gap: 40px;
  align-items: center;
}

.hero-left {
  flex: 1;
}

.hero-right {
  flex: 1;
  display: flex;
  justify-content: center;
}

.logo {
  width: 360px;
  height: 158px;
}

.video-wrapper {
  border: 2px solid white;
  border-radius: 16px;
  overflow: hidden;
  max-width: 900px;
}

.video-wrapper video {
  width: 360px;
  display: block;
}


.app-title {
  display: flex;
  align-items: center;
  gap: 12px;
}

h1 {
  font-size: 2.5rem;
  font-weight: 800;
}

h2 {
  /* margin-top: 20px; */
  font-size: 3.6rem;
  font-weight: 700;
}

.subtitle {
  margin-top: 10px;
  opacity: 0.9;
  font-size: 1.6rem;
}

/* EMAIL FORM */
.email-form {
  margin-top: 16px;
  display: flex;
  flex-wrap: nowrap;
  gap: 10px;
}

.email-input {
  padding: 14px;
  border-radius: 6px;
  border: none;
  width: 100%;
  max-width: 280px;
  font-size: 1.2rem;
}

button {
  border-radius: 10px;
  padding: 14px 20px;
  background-color: white;
  color: #f89b31;
  border: none;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 6px 6px 0 rgba(255, 255, 255, 0.301);
  font-size: 1.3rem;
  transition: all 0.2s ease-in-out;
}

button:hover {
  color: white;
  background-color: #f89b31;
  box-shadow: 6px 6px 0 rgba(255, 255, 255, 0.301);
  transition: all 0.2s ease-in-out;
}

/* DISCORD */
.discord {
  margin-top: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  
}
.discord span {
  margin-left: 16px;
  font-size: 1.4rem;
  
}
.discord button {
  background-color: rgb( 29, 178, 253);
  box-shadow: 6px 6px 0 rgba(113, 202, 247, 0.199);
  color: white;
  transition: all 0.2s ease-in-out;
}

.discord button:hover {
 color:rgb( 29, 178, 253);
  background-color: white;
  box-shadow: 6px 6px 0 rgba(113, 202, 247, 0.199);
  transition: all 0.2s ease-in-out;
}

/* GIF */
.demo-gif {
  max-width: 100%;
  border-radius: 12px;
}

/* FEATURES */
.features {
  padding: 80px 20px;
}

.features-row {
  max-width: 1200px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.feature-card {
  min-width: 300px;
  flex: 1;
  background: rgba(255, 255, 255, 0.12);
  padding: 20px;
  border-radius: 12px;
  text-align: center;
}

.feature-card img {
  border-radius: 12px;
  width: 100%;
  /* max-width: 200px; */
  margin-bottom: 15px;
}

.feature-card p {
  
  /* max-width: 200px; */
  margin-bottom: 16px;
}

/* VIDEO */
.video-section {
  padding: 60px 20px;
  display: flex;
  justify-content: center;
}

video {
  max-width: 900px;
  width: 100%;
  border-radius: 12px;
}

/* FOOTER */
footer {
  padding: 30px;
  text-align: center;
  opacity: 0.8;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .hero-content {
      flex-direction: column;
    }

    .features-row {
      flex-direction: column;
    }

    .logo {
    width: 256px;
    height: 110px;
  }

  .feature-card img {
    border-radius: 12px;
    width: 100%;
    max-width: 350px;
    margin-bottom: 15px;
  }
  h2 {
    font-size: 2rem;
  }
  .subtitle {
    font-size: 1.2rem;
  }
  .email-form {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.email-input {
  padding: 14px;
  border-radius: 6px;
  border: none;
  min-width: 100%;
  max-width: 280px;
  font-size: 1.2rem;
}

.discord{
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.discord form button {
  min-width: 95vw;
}
.discord span {
  margin-left: 0px;
  font-size: 1.4rem;
  
}
}
