@import url("https://fonts.googleapis.com/css2?family=Space+Mono&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Space Mono", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  line-height: 1.6;
  color: rgb(29, 35, 28);
  background-color: hsl(208.64, 55.24%, 56.08%);
  overflow-x: hidden;
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: #1d231c;
  backdrop-filter: blur(10px);
  padding: 1rem 0;
}
.navbar .nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.navbar .nav-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.navbar .nav-logo-image {
  height: 44px;
  width: auto;
  display: block;
}
.navbar .nav-links {
  display: flex;
  gap: 2rem;
}
.navbar .nav-link {
  backface-visibility: hidden;
  background-attachment: scroll;
  background-clip: border-box;
  background-color: rgba(0, 0, 0, 0);
  background-image: none;
  background-origin: padding-box;
  background-position-x: 0px;
  background-position-y: 0px;
  background-repeat: repeat;
  background-size: auto;
  color: rgb(255, 245, 61);
  cursor: pointer;
  display: flex;
  font-family: "Space Mono";
  font-size: 14.92px;
  font-style: normal;
  font-weight: 400;
  height: auto;
  letter-spacing: -0.1492px;
  line-height: 20.888px;
  opacity: 1;
  overflow-wrap: break-word;
  padding-bottom: 1.492px;
  padding-left: 0px;
  padding-right: 0px;
  padding-top: 1.492px;
  pointer-events: auto;
  text-align: right;
  text-decoration-color: rgb(255, 245, 61);
  text-decoration-line: none;
  text-decoration-style: solid;
  text-decoration-thickness: auto;
  text-size-adjust: 100%;
  text-transform: none;
  text-wrap-mode: nowrap;
  transition-delay: 0.0338028s;
  transition-duration: 0.9s;
  transition-property: opacity;
  transition-timing-function: ease;
  white-space-collapse: collapse;
  width: auto;
  -webkit-font-smoothing: antialiased;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
.navbar .nav-link:hover {
  color: #FF6B00;
}
.navbar.scrolled {
  background: rgba(29, 35, 28, 0.1);
  backdrop-filter: blur(0px);
}
.navbar.vanished {
  pointer-events: none;
}
.navbar.vanished .nav-container,
.navbar.vanished .nav-links,
.navbar.vanished .nav-link {
  transition: none;
}

.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(3px);
}
.hero-fallback {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #FF6B00, rgb(255, 245, 61));
}
.hero-content {
  text-align: center;
  z-index: 2;
  color: #FFFFFF;
}
.hero-logo {
  margin-bottom: 2rem;
}
.hero-logo-image {
  width: min(80vw, 640px);
  height: auto;
  display: block;
  margin: 0 auto;
}
.hero-logo-target {
  position: relative;
  width: 120px;
  height: 120px;
  margin: 0 auto 1rem;
}
.hero-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 0.9;
}
.hero-logo-text .hero-nerf {
  color: rgb(255, 245, 61);
  font-weight: 900;
  font-size: 3.5rem;
  text-shadow: 3px 3px 0px rgb(29, 35, 28);
  -webkit-text-stroke: 2px rgb(29, 35, 28);
}
.hero-logo-text .hero-mestarit {
  color: rgb(42, 168, 241);
  font-weight: 900;
  font-size: 3.5rem;
  text-shadow: 3px 3px 0px rgb(29, 35, 28);
  -webkit-text-stroke: 2px rgb(29, 35, 28);
}

.tagline-main {
  font-size: 1.5rem;
  font-weight: 600;
  font-style: italic;
  color: #FF0000;
  margin-bottom: 0.5rem;
  text-shadow: 2px 2px 0px rgb(29, 35, 28);
}
.tagline-sub {
  font-size: 1.2rem;
  font-weight: 600;
  font-style: italic;
  color: #FFFFFF;
  text-shadow: 2px 2px 0px rgb(29, 35, 28);
}

.main-content {
  background: rgb(255, 245, 61);
  padding: 4rem 0;
  position: relative;
}
.main-content .content-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 3rem;
  align-items: start;
}
.main-content .content-left {
  grid-column: 1;
  max-width: 300px;
}
.main-content .content-heading {
  font-size: 4rem;
  font-weight: 400;
  line-height: 1;
  color: rgb(29, 35, 28);
  text-transform: uppercase;
  font-family: "Bebas Neue", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-style: italic;
  letter-spacing: -0.02em;
}
.main-content .content-middle,
.main-content .content-right {
  font-size: 16px;
  line-height: 22.4px;
  color: rgb(29, 35, 28);
  font-family: "Space Mono", monospace;
  font-weight: 700;
  letter-spacing: -0.145744px;
  overflow-wrap: break-word;
  text-size-adjust: 100%;
  text-transform: none;
  text-wrap-mode: wrap;
  white-space-collapse: collapse;
  -webkit-font-smoothing: antialiased;
}
.main-content .content-middle p,
.main-content .content-right p {
  margin-bottom: 1rem;
}
.main-content .content-middle p.light,
.main-content .content-right p.light {
  font-weight: 400;
}

.nerf-section {
  background: rgb(42, 168, 241);
  padding: 4rem 0;
  scroll-margin-top: 80px;
}
.nerf-section .nerf-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}
.nerf-section .nerf-heading {
  color: rgb(29, 35, 28);
  display: inline-block;
  font-family: "Bebas Neue", sans-serif;
  font-size: 4rem;
  font-style: italic;
  font-weight: 400;
  height: auto;
  letter-spacing: -1.0569px;
  line-height: 44.8124px;
  overflow-wrap: break-word;
  text-align: center;
  text-size-adjust: 100%;
  text-transform: none;
  text-wrap-mode: wrap;
  white-space-collapse: preserve;
  width: auto;
  -webkit-font-smoothing: antialiased;
  margin-bottom: 3rem;
}
.nerf-section .nerf-text {
  color: rgb(29, 35, 28);
}
.nerf-section .nerf-text p {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.nerf-section .nerf-subheading {
  font-size: 1.8rem;
  font-weight: 700;
  color: rgb(29, 35, 28);
  text-transform: uppercase;
  margin: 2rem 0 1rem 0;
}
.nerf-section .nerf-media {
  width: 100%;
  height: 400px;
  overflow: hidden;
  border-radius: 10px;
}
.nerf-section .nerf-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.nerf-section .nerf-right {
  width: 100%;
}

.packages-section {
  background: rgb(255, 245, 61);
  padding: 4rem 0;
  scroll-margin-top: 80px;
  position: relative;
}
.packages-section .packages-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  text-align: center;
}
.packages-section .packages-heading {
  color: rgb(29, 35, 28);
  display: inline-block;
  font-family: "Bebas Neue", sans-serif;
  font-size: 4rem;
  font-style: italic;
  font-weight: 400;
  height: auto;
  letter-spacing: -1.0569px;
  line-height: 44.8124px;
  overflow-wrap: break-word;
  text-align: center;
  text-size-adjust: 100%;
  text-transform: none;
  text-wrap-mode: wrap;
  white-space-collapse: preserve;
  width: auto;
  -webkit-font-smoothing: antialiased;
  margin-bottom: 3rem;
}
.packages-section .packages-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
}
.packages-section .package-card {
  background: rgb(29, 35, 28);
  color: rgb(255, 245, 61);
  padding: 2rem;
  border-radius: 10px;
  text-align: left;
}
.packages-section .package-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: rgb(255, 245, 61);
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  text-align: center;
}
.packages-section .package-features {
  list-style: none;
  padding: 0;
}
.packages-section .package-features li {
  margin-bottom: 0.8rem;
  font-size: 1rem;
  line-height: 1.5;
}
.packages-section .package-price {
  font-weight: 700;
  font-size: 1.2rem;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid #333;
}
.packages-section .packages-info {
  max-width: 800px;
  margin: 0 auto;
}
.packages-section .packages-info p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: rgb(29, 35, 28);
  margin-bottom: 1rem;
}

.contact-section {
  background: rgb(42, 168, 241);
  padding: 4rem 0;
}
.contact-section .contact-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  text-align: left;
}
.contact-section .contact-heading {
  color: rgb(29, 35, 28);
  display: inline;
  font-family: "Bebas Neue", sans-serif;
  font-size: 4rem;
  font-style: italic;
  font-weight: 400;
  height: auto;
  letter-spacing: -1.0569px;
  line-height: 0.8;
  overflow-wrap: break-word;
  text-align: left;
  text-size-adjust: 100%;
  text-transform: none;
  text-wrap-mode: wrap;
  white-space-collapse: preserve;
  width: auto;
  -webkit-font-smoothing: antialiased;
  margin-bottom: 2rem;
}
.contact-section .contact-content {
  display: flex;
  flex-direction: column;
  align-items: left;
  gap: 2rem;
}
.contact-section .contact-icon {
  margin-bottom: 1rem;
}
.contact-section .contact-icon a {
  display: inline-block;
  transition: transform 0.2s ease;
}
.contact-section .contact-icon a:hover {
  transform: scale(1.1);
}
.contact-section .contact-icon .instagram-icon {
  width: 32px;
  height: 32px;
  display: block;
}
.contact-section .contact-details {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}
.contact-section .contact-details p {
  font-family: "Space Mono", monospace;
  font-size: 1.1rem;
  color: rgb(29, 35, 28);
  margin: 0;
  font-weight: 400;
}
.contact-section .contact-mission {
  max-width: 600px;
}
.contact-section .contact-mission p {
  font-family: "Space Mono", monospace;
  font-size: 1rem;
  color: rgb(29, 35, 28);
  line-height: 1.6;
  margin: 0;
}

.faq-section {
  background-image: url("../images/landing-bg-1.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 4rem 0;
  position: relative;
}
.faq-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("../images/Gradient_V3_UP.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 1;
  z-index: 1;
}
.faq-section .faq-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 3rem;
  align-items: start;
}
.faq-section .faq-heading {
  color: rgb(255, 245, 61);
  display: inline;
  font-family: "Bebas Neue", sans-serif;
  font-size: 4rem;
  font-style: italic;
  font-weight: 400;
  height: auto;
  letter-spacing: -1.0569px;
  line-height: 0.8;
  overflow-wrap: break-word;
  text-align: left;
  text-size-adjust: 100%;
  text-transform: none;
  text-wrap-mode: wrap;
  white-space-collapse: preserve;
  width: auto;
  -webkit-font-smoothing: antialiased;
  margin-bottom: 0;
}
.faq-section .faq-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-left: 0;
}
.faq-section .faq-item {
  margin-bottom: 2rem;
}
.faq-section .faq-question {
  font-size: 1.1rem;
  font-weight: 700;
  color: rgb(255, 245, 61);
  margin-bottom: 1rem;
  line-height: 1.4;
}
.faq-section .faq-answer {
  font-size: 1rem;
  color: rgb(255, 245, 61);
  line-height: 1.6;
}

.footer {
  background-image: url("../images/Footer_Gradient_BG.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 5rem 0;
  color: #FFFFFF;
  text-align: center;
}
.footer .footer-logo {
  display: flex;
  justify-content: center;
  align-items: center;
}
.footer .footer-logo-image {
  height: 300px;
  width: auto;
  display: block;
}

@media (max-width: 768px) {
  .nav-container {
    padding: 0 1rem;
  }
  .content-container {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 0 1rem;
  }
  .nerf-container {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 0 1rem;
  }
  .nerf-container .nerf-right {
    order: -1;
  }
  .content-heading,
  .nerf-heading {
    font-size: 1.8rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    text-align: center;
  }
  .tagline-main {
    font-size: 1.2rem;
  }
  .tagline-sub {
    font-size: 1rem;
  }
  .nav-links {
    gap: 1rem;
  }
  .nav-logo-image,
  .footer-logo-image {
    height: 36px;
  }
  .packages-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .contact-container {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
  .contact-content {
    text-align: left;
  }
  .faq-container {
    grid-template-columns: 1fr !important;
    gap: 2rem;
  }
  .faq-heading {
    width: 100%;
    margin-bottom: 2rem;
    max-width: none;
    text-align: center;
  }
  .faq-content {
    margin-left: 0;
  }
  .content-container {
    grid-template-columns: 1fr !important;
  }
  .nerf-container {
    grid-template-columns: 1fr !important;
  }
  .packages-grid {
    grid-template-columns: 1fr !important;
  }
  .contact-container {
    grid-template-columns: 1fr !important;
  }
  .faq-container {
    grid-template-columns: 1fr !important;
  }
  .packages-heading,
  .contact-heading,
  .faq-heading {
    font-size: 1.8rem;
    text-align: center;
  }
  .nerf-subheading {
    font-size: 1.5rem;
  }
  .main-content,
  .nerf-section,
  .packages-section,
  .contact-section,
  .faq-section {
    padding: 2rem 0;
  }
  .content-middle,
  .content-right {
    font-size: 14px;
    line-height: 20px;
  }
  .nerf-text p {
    font-size: 14px;
    line-height: 20px;
  }
}
@media (max-width: 480px) {
  .content-heading,
  .nerf-heading {
    font-size: 1.4rem;
    line-height: 1.1;
    text-align: center;
  }
  .packages-heading,
  .contact-heading,
  .faq-heading {
    font-size: 1.4rem;
    text-align: center;
  }
  .content-container {
    grid-template-columns: 1fr !important;
  }
  .nerf-container {
    grid-template-columns: 1fr !important;
  }
  .nerf-container .nerf-right {
    order: -1;
  }
  .packages-grid {
    grid-template-columns: 1fr !important;
  }
  .contact-container {
    grid-template-columns: 1fr !important;
  }
  .info-container {
    grid-template-columns: 1fr !important;
  }
  .package-card {
    padding: 1.5rem;
  }
  .package-title {
    font-size: 1.3rem;
  }
  .nerf-subheading {
    font-size: 1.3rem;
  }
  .contact-details p {
    font-size: 1rem;
  }
  .main-content,
  .nerf-section,
  .packages-section,
  .contact-section,
  .faq-section {
    padding: 1.5rem 0;
  }
  .content-middle,
  .content-right {
    font-size: 13px;
    line-height: 18px;
  }
  .nerf-text p {
    font-size: 13px;
    line-height: 18px;
  }
}

/*# sourceMappingURL=styles.css.map */
