/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Caprasimo&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto+Mono:wght@400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Sacramento&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Space+Mono:wght@700&display=swap');

/* Color Palette */
/*
 * Primary Blue: #44D5FF;
 * Dark Blue: #0F2C34;
 * Primary Pink: #FF7FA8;
 */

* {
  font-family: 'Roboto Mono', monospace;
  font-weight: 400;
  color: #f0f0f0;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: #ffffff;
  margin: 0;
  padding: 0;
}

section {
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
}

/* Trust Badge */
#mlh-trust-badge {
  display: block;
  max-width: 80px;
  min-width: 60px;
  position: fixed;
  right: 50px;
  top: 0;
  width: 10%;
  z-index: 10000;
}

/* Hero Section */
.hero {
  background: url('/images/background.JPG') no-repeat center center;
  background-size: cover;
  min-height: 110vh;
  position: relative;
}

.hero .wrapper {
  padding-top: 20vh;
  text-align: center;
  position: relative;
  z-index: 2;
}

.custom-hero {
  text-align: center;
  padding-bottom: 1vh;
  color: black;
  position: relative;
  z-index: 3;
}

.custom-hero-bg {
  background-color: rgba(255, 182, 193, 0.9);
  padding: 40px 30px;
  display: inline-block;
  border-radius: 25px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  margin-bottom: 2rem;
}

.hero-script {
  display: block;
  font-family: 'Sacramento', cursive;
  font-size: 6rem;
  font-weight: 600;
  margin: 0;
  line-height: 1;
  color: black;
}

.hero-tag {
  display: block;
  font-family: 'Space Mono', monospace;
  font-weight: 700;
  font-size: 6rem;
  margin: 0;
  line-height: 1;
  color: black;
}

.hero-start {
  margin-top: 20px;
  padding: 10px 24px;
  font-family: 'Space Mono', monospace;
  font-size: 1.5rem;
  border: 2px solid black;
  background-color: rgba(0, 0, 0, 0.2);
  position: relative;
  cursor: pointer;
  color: black;
  text-decoration: none;
  display: inline-block;
  border-radius: 12px;
}

.cursor-icon {
  width: 20px;
  height: auto;
  position: absolute;
  bottom: -8px;
  right: -4px;
  pointer-events: none;
}

.hero img {
  max-width: 400px;
}

.hero hr {
  border-top: 3px solid #0F2C34;
  margin: 0;
  position: relative;
  top: -10px;
}

.hero .wrapper h1 {
  font-family: 'Caprasimo', cursive;
  font-size: 150px;
  font-weight: 600;
  letter-spacing: 3px;
  padding: 10px 30px;
  margin: 10;
  line-height: 1;
  color: black;
}

.hero .wrapper h3 {
  background: rgba(255, 182, 193, 0.9);
  border-radius: 40px;
  display: inline-block;
  font-family: 'Space Mono', monospace;
  font-size: 35px;
  font-weight: 600;
  padding: 35px 25px;
  color: black;
}

/* About Section */
.about {
  background-color: rgba(255, 127, 168, 0.9);
  padding: 130px 0;
  text-align: center;
}

.about .content {
  max-width: 800px;
  margin: 0 auto;
}

.about p {
  font-weight: 600;
  font-size: 22px;
  line-height: 1.6em;
  letter-spacing: -0.3px;
  color: #0F2C34;
  margin: 0 0 30px 0;
}

.about p span {
  font-weight: 700;
  text-transform: uppercase;
}

/* Updated buttons container styles for desktop */
.about .buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
  width: 100%;
}

.about .buttons a {
  background: #fff;
  border: 2.5px solid #0F2C34;
  border-radius: 40px;
  color: #0F2C34;
  font-size: 18px;
  font-weight: 700;
  padding: 16px 40px;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  transition: all 0.2s ease;
  white-space: nowrap;
  box-sizing: border-box;
}

.about .buttons a:hover,
.about .buttons a:focus {
  background-color: #0F2C34;
  color: #ffffff;
}

/* Info Section */
.info {
  background-color: #ffffff;
  padding: 100px 0;
  color: #0F2C34;
}

.info .item {
  padding: 20px;
}

.info .item h1 {
  font-family: 'Caprasimo', cursive;
  font-size: 45px;
  font-weight: 500;
  margin: 20px 0;
  color: #0F2C34;
}

.info .item img {
  max-width: 220px;
}

.info .item p {
  font-size: 20px;
  color: #0F2C34;
}

/* FAQ Section */
.faq {
  background-color: rgba(255, 182, 193, 0.85);
  padding: 100px 0;
  color: #0F2C34;
}

.faq h1 {
  font-family: 'Caprasimo', cursive;
  font-size: 45px;
  font-weight: 700;
  margin: 30px 0;
  color: #0F2C34;
}

.faq .question h2 {
  font-family: 'Caprasimo', cursive;
  font-weight: 500;
  font-size: 26px;
  color: #0F2C34;
}

.faq .question hr {
  border-top: 3px solid #0F2C34;
  margin: 20px 0;
  width: 80px;
}

.faq .question p {
  font-size: 18px;
  line-height: 1.5em;
  color: #0F2C34;
}

.faq img {
  margin-bottom: -2px;
  margin-top: 40px;
  width: 300px;
}

/* Footer Section */
.footer {
  background-color: rgba(0, 0, 0, 0.85);
  color: #fff;
  padding: 30px 0;
  text-align: center;
}

.footer img {
  max-width: 250px;
  margin-bottom: 15px;
}

.footer h3 {
  font-family: 'Roboto Mono', monospace;
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  margin: 0;
  color: #fff;
}

.footer h3 a {
  color: #fff;
  text-decoration: none;
}

/* Responsive Enhancements */
@media (max-width: 768px) {
  .hero .wrapper {
    padding-top: 10vh;
    padding-left: 10px;
    padding-right: 10px;
  }

  .hero .wrapper h1 {
    font-size: 50px;
    font-weight: 600;
    padding: 5px 10px;
  }

  .hero .wrapper h3 {
    font-size: 22px;
    padding: 20px 15px;
  }

  .hero-tag {
    font-size: 3rem;
  }

  .hero-script {
    font-size: 2.5rem;
  }

  .hero img {
    width: 250px;
  }

  .hero hr {
    border-top-width: 2px;
    top: -8px;
  }

  .hero-start {
    font-size: 1rem;
    padding: 8px 16px;
    max-width: 90%;
    box-sizing: border-box;
  }

  .cursor-icon {
    width: 14px !important;
    height: auto;
    bottom: -4px;
    right: -2px;
  }

  .custom-hero-bg {
    padding: 25px 20px;
    border-radius: 20px;
    margin: 1rem auto;
    width: 90%;
  }

  .about {
    padding: 80px 20px;
  }

  .about p {
    font-size: 18px;
    text-align: center;
    margin-bottom: 20px;
  }

  /* Stack buttons vertically on mobile */
  .about .buttons {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0 50px;
    gap: 50px;
    margin-top: 60px;
  }

  .about .buttons a {
    width: 80%;
    max-width: 300px;
    padding: 16px 30px;
    text-align: center;
    box-sizing: border-box;
  }


  #mlh-trust-badge {
    max-width: 50px;
    right: 10px;
  }

  .info {
    padding: 60px 20px;
  }

  .info .item {
    padding: 15px 10px;
  }

  .info .item h1 {
    font-size: 32px;
  }

  .info .item p {
    font-size: 16px;
  }

  .faq {
    padding: 60px 20px;
  }

  .faq h1 {
    font-size: 32px;
  }

  .faq .question h2 {
    font-size: 22px;
  }

  .faq .question p {
    font-size: 16px;
  }

  .faq img {
    width: 250px;
    margin-top: 20px;
  }
}

/* Smaller mobile devices */
@media (max-width: 480px) {
  .hero-tag,
  .hero-script {
    font-size: 2rem;
  }

  .hero .wrapper h1 {
    font-size: 36px;
  }

  .hero .wrapper h3 {
    font-size: 18px;
  }

  .hero-start {
    font-size: 0.9rem;
    padding: 6px 12px;
  }

  .cursor-icon {
    width: 12px;
    bottom: -3px;
    right: -1px;
  }

  .custom-hero-bg {
    padding: 20px 15px;
    width: 95%;
  }

  .about {
    padding: 60px 15px;
  }

  .about .buttons {
    padding: 0 15px;
  }

  .about .buttons a {
    width: 100%;
    max-width: 280px;
  }
}
