:root {
    --background: #09090B;
    --primary: white;
    --secondary: #D1D5DB;
    --darkgrey: #1f1e1e;
    font-family: "Inter", Arial;
}

body {

    background-color: var(--background);
    color: var(--primary);
}
html {
  scroll-behavior: smooth;
}


#top, #about, #examples, #testimonials, #contact {
    scroll-margin-top: 130px;
}


.topmenu {
  position: fixed;
  top: 15px;
  left: 50%;
  transform: translateX(-50%);
  width: max-content; /* or set a fixed width like 600px */

    display: flex;
    flex-direction: row;
    align-items: center;
    position: fixed;
    border: rgba(255, 255, 255, 0.114) 1px solid;
    border-radius: 100px;
    margin-top: 15px;
    padding-top: 10px;
    padding-bottom: 10px;
    backdrop-filter: blur(20px);
    z-index: 5;
}

.topmenu__logo,
.topmenu__option,
.topmenu__option__special {
    color: var(--secondary);
    margin-left: 10px;
    margin-right: 10px;
    padding-left: 10px;
    padding-right: 10px;
    cursor:pointer;
    transition-duration: 0.3s;
}

.topmenu__logo:hover {
    filter: brightness(0.8);
}

.topmenu__option:hover {
    color: white;
}

.topmenu__option__special:hover {
    background-color: rgba(4, 76, 0, 0.443);
}

.topmenu__logo {
    width: 60px;
}

.topmenu__option__special {
    background-color: rgba(255, 255, 255, 0.081);
    color: var(--primary);
    border: rgba(255, 255, 255, 0.221) 1px solid;
    border-radius: 100px;
    padding-top: 10px;
    padding-bottom: 10px;
}


.section1 {
    margin-top: 150px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 200px;
}

.tagline {
    font-size: 0.9rem;
    color: #1dcb5d;
    border: #1fb45672 1px solid;
    background-color: #1fb4562d;
    padding: 6px;
    padding-left: 13px;
    padding-right: 13px;
    border-radius: 100px;
}

.title {
    margin-top: 0px;
    text-align: center;
    font-size: 4rem;

}

.title2 {
    margin-top: 40px;
    text-align: center;
    font-size: 5rem;
}

.subtitle {
    margin-top: 40px;
    color: var(--secondary);
    font-size: 1.5rem;
}

.blurbackground {
  position: absolute; /* or fixed */
  top: -50;
  left: 0;
  width: 98svw;
  z-index: -5;
  filter: blur(20px);
  opacity: 0.8;
}

.section2 {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin-right: 100px;
    margin-left: 50px;
    margin-bottom: 150px;
}

.section2__left {
    margin-left: 100px;
    padding-right: 100px;
}

.section2__p {
    color: var(--secondary);
    font-size: 1.2rem;
}

.section2__right {

}

.section2__right img {
    width: 30svw;
    rotate: 2deg;
    filter: 
    drop-shadow(0 0 90px rgba(255, 255, 255, 0.15)) 

}

.value__list {
    font-size: 1.5rem;
    color: var(--primary);
    line-height: 50px;

}

.section3 {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin-right: 100px;
    margin-left: 50px;
    margin-bottom: 75px;
}

.section3__left {
    margin-left: 100px;
    padding-right: 100px;
}

.section3__p {
    color: var(--secondary);
    font-size: 1.2rem;
}

.section3__right {
    margin-left: 100px;
}

.section3__right img {
    width: 30svw;
    rotate: -2deg;
    filter: 
    drop-shadow(0 0 90px rgba(255, 255, 255, 0.15));
}


.reverse {
    flex-direction: row-reverse;
}

.section4 {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 200px;

}

.section4 iframe {
    margin-top: 50px;
    border-radius: 20px;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.2));
}

.section5 {
    margin-bottom: 200px;
}

.testimonials {
    margin-top: 60px;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
    padding: 0 20px;
}

.testim {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    background-color: #0f0f11;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 30px;
    width: 300px;
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.03);
    transition: transform 0.2s ease;
}

.testim:hover {
    transform: translateY(-5px);
}

.toprow {
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-bottom: 15px;
}

.toprow img {
    border-radius: 50%;
    width: 36px;
    height: 36px;
    object-fit: cover;
    margin-right: 12px;
}

.username {
    font-size: 1.5rem;
    font-weight: 600;
    color: #ffffff;
}

.message {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--secondary);
    line-height: 1.6;
}

.closedprogram {
    justify-self: center;
    font-size: 1.5rem;
    text-align: center;
}

.red {
    color: rgb(255, 0, 0);
    filter: drop-shadow(0 0 15px rgb(255, 0, 0));

}   

.contact-form {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 40px;
    padding: 40px;
    background-color: #0f0f11;
    border-radius: 20px;
    width: 100%;
    max-width: 600px;
    margin-inline: auto;
    box-shadow: 0 0 50px rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);

}

.contact-form form {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 90%;
    max-width: 90%;
    gap: 15px;
}

.contact-form input,
.contact-form textarea {
  background-color: #1a1a1d;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 12px 16px;
  color: white;
  font-size: 1rem;
  font-family: "Inter", sans-serif;
  width: 100%;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #888;
}

.contact-form button {
  padding: 12px 20px;
  border: none;
  border-radius: 100px;
    color: var(--primary);
    border: #1fb45672 1px solid;
    background-color: #1fb4562d;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.2s ease;
  width: 100%;
font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 900;
}

.contact-form button:hover {
    background-color: #1fb45664;
}

.contact__subtitle {
    margin-top: 10px;
    margin-bottom: 30px;
    color: var(--secondary);
    font-size: 1.5rem;
    text-align: center;
}



@media screen and (max-width: 600px) {


  .topmenu {
    position: fixed;
    top: 0px;
    left: 50%;
    transform: translateX(-50%);
    width: 100svw; /* or set a fixed width like 600px */
    display: flex;
    flex-direction: row;
    align-items: center;
    position: fixed;
    border: rgba(255, 255, 255, 0.114) 1px solid;
    border-radius: 0px;
    margin-top: 0px;
    padding-top: 10px;
    padding-bottom: 10px;
    backdrop-filter: blur(20px);
    z-index: 5;
    justify-content:space-evenly;
  }

  .blurbackground {
    filter:blur(10px) brightness(1.5);
  }

  .topmenu__logo {
    width: 40px;
    margin: 0;
  }

  .topmenu__option,
  .topmenu__option__special {
    margin: 5px 0;
    padding: 8px 12px;
    font-size: 0.6rem;
  }

  .topmenu__option__special:hover {
    background-color: inherit;
  }

  .section1 {
    margin-top: 100px;
    margin-bottom: 70px;
  }

  .title {
    font-size: 1.4rem;
    margin-top: 15px;
  }

  .title2 {
    font-size: 3.6rem;
  }

  .subtitle {
    text-align: center;
    font-size: 0.8rem;
    margin-top: 15px;
  }

  .subtitle,
  .section2__p,
  .section3__p,
  .value__list {
    font-size: 1rem;
  }

  .section2,
  .section3 {
    flex-direction: column;
    align-items: center;
    margin: 0 20px 100px 20px;
  }

  .section3, .section4, .section5 {
    margin-bottom: 70px;
  }

  .closedprogram {
    font-size: 1rem;
  }

  .section2__left,
  .section3__left,
  .section3__right {
    margin: 0;
    padding: 0;
  }

  .section2__right img,
  .section3__right img {
    width: 80vw;
  }

  .section4 iframe {
    margin-top: 50px;
    border-radius: 20px;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.2));
    width: 90svw;
    }

  .tagline {
    font-size: 0.8rem;
    text-align: center;
  }

  .contact-form {
    padding: 20px;
    margin-bottom: 150px;
    margin-left: 0;
    width: 90%;
  }

  .testimonials {
    gap: 20px;
    padding: 0 10px;
  }
}


.section6 {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 200px;
    padding: 0 20px;
    text-align: center;
}

.preset-subtitle {
    font-size: 1.3rem;
    color: var(--secondary);
    margin-top: 20px;
    margin-bottom: 30px;
    max-width: 600px;
}

.dl-btn {
    background-color: #1fb4562d;
    color: var(--primary);
    border: 1px solid #1fb45672;
    border-radius: 100px;
    padding: 14px 28px;
    text-decoration: none;
    font-size: 1.1rem;
    transition: background-color 0.2s ease;
}

.dl-btn:hover {
    background-color: #1fb45664;
}

/* Glow Animation */
@keyframes glowPulse {
  0% {
    box-shadow: 0 0 12px rgba(31, 180, 86, 0.4);
  }
  50% {
    box-shadow: 0 0 24px rgba(31, 180, 86, 0.7);
  }
  100% {
    box-shadow: 0 0 12px rgba(31, 180, 86, 0.4);
  }
}

.dl-btn.glow {
  animation: glowPulse 2s infinite;
  font-size: 1.15rem;
  letter-spacing: 0.5px;
  display: inline-block;
  transition: transform 0.2s ease;
}

.dl-btn.glow:hover {
  transform: scale(1.05);
  background-color: #1fb45684;
}

.section-contact {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: stretch;
  gap: 50px;
  margin: 150px 20px;
  flex-wrap: wrap;
}

.contact-left {
  background-color: #0f0f11;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 40px;
  max-width: 600px;
  width: 100%;
  box-shadow: 0 0 50px rgba(255, 255, 255, 0.03);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.cta-button {
  background: linear-gradient(135deg, #1fb456, #3de38d);
  color: #000;
  font-size: 1.25rem;
  font-weight: 700;
  border: none;
  border-radius: 50px;
  padding: 18px 36px;
  text-decoration: none;
  display: inline-block;
  box-shadow: 0 8px 25px rgba(31, 180, 86, 0.3);
  transition: all 0.2s ease-in-out;
}

.cta-button:hover {
  transform: scale(1.06) translateY(-2px);
  box-shadow: 0 10px 30px rgba(31, 180, 86, 0.4);
  background: linear-gradient(135deg, #28c868, #53eaa0);
}


.divider {
  height: 2px;
  background-color: rgba(255, 255, 255, 0.1);
  margin: 40px 0;
}
@media screen and (max-width: 900px) {
  .section-contact {
    flex-direction: column;
    gap: 30px;
  }

  .contact-left,
  .contact-form {
    width: 100%;
    max-width: 100%;
  }
}

.section-contact-vertical {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 150px 20px;
  gap: 40px;
}

.contact-block {
  background-color: #0f0f11;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 40px;
  width: 100%;
  max-width: 600px;
  box-shadow: 0 0 50px rgba(255, 255, 255, 0.03);
  text-align: center;
}

/* Poppier subscribe button */
.cta-button {
  background: linear-gradient(135deg, #1fb456, #3de38d);
  color: #000;
  font-size: 1.25rem;
  font-weight: 700;
  border: none;
  border-radius: 50px;
  padding: 18px 36px;
  text-decoration: none;
  display: inline-block;
  box-shadow: 0 8px 25px rgba(31, 180, 86, 0.3);
  transition: all 0.2s ease-in-out;
  margin-top: 24px;
}

.cta-button:hover {
  transform: scale(1.06) translateY(-2px);
  box-shadow: 0 10px 30px rgba(31, 180, 86, 0.4);
  background: linear-gradient(135deg, #28c868, #53eaa0);
}

.divider {
  height: 2px;
  background-color: rgba(255, 255, 255, 0.1);
  width: 80%;
  margin: 0 auto;
}

/* Responsive tweaks for small screens */
@media screen and (max-width: 600px) {
  .section-contact-vertical {
    margin: 80px 16px 100px;
    gap: 30px;
  }

  .contact-block {
    padding: 24px;
  }

  .cta-button {
    width: 90%;
    padding: 18px;
    font-size: 1.15rem;
  }

  .contact__subtitle {
    font-size: 0.95rem;
    line-height: 1.4;
  }

  .contact-form textarea,
  .contact-form input {
    font-size: 1rem;
    padding: 12px;
  }

  .contact-form button {
    width: 100%;
    font-size: 1.1rem;
    padding: 14px;
  }
}



/* Font Stuff */

@font-face {
  font-family: 'BirdsOfParadise';
  src: url('/fonts/birds.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

.birds {
  font-family: 'BirdsOfParadise', cursive;
}

.inter-regular {
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

.inter-bold {
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
}

.inter-black {
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 900;
  font-style: normal;
}