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

    body {
      font-family: Arial, sans-serif;
      display: flex;
      flex-direction: column;
      min-height: 100vh;
    }

 .navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #f9f9f9; /* very faint grey */
  padding: 0 1rem;
  height: 65px;
  position: relative;
  z-index: 1000;
}

/* Logo styling */
.logo {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

/* Navigation links */
.navbar-links {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.navbar-links a {
  color: black;
  text-decoration: none;
  font-weight: 650;
  padding: 0.5rem 0.75rem;
}

/* Bright pink login button */
.login-btn {
  background-color: #ff00f2;
  color: white;
  border-radius: 999px;
  font-weight: bold;
  padding: 0.5rem 1.5rem;
  min-width: 120px; /* Ensures a minimum button width */
  text-align: center;
  text-decoration: none;
  display: inline-block;
}

/* Hamburger icon */
.hamburger {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: black;
}

/* Hide checkbox input */
#menu-toggle {
  display: none;
}

    /* COLUMN OF DIVS */
    .content {
      flex: 1;
      display: flex;
      flex-direction: column;
    }

    .box {
      /* height: 150px; */
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      font-size: 1.5rem;
    }

    /*
    .box:nth-child(1) { background-color: #e74c3c; }
    .box:nth-child(2) { background-color: #3498db; }
    .box:nth-child(3) { background-color: #2ecc71; }
    .box:nth-child(4) { background-color: #f1c40f; color: black; }
    .box:nth-child(5) { background-color: #9b59b6; }
    */

general-box {
  background-color: white; /* #ffe6eb;  faint pink */
  color: black;
  text-align: left;
  align-items: left;
  padding: 4rem 2rem; /* generous vertical space */
  flex-direction: column;
  /*display: flex;
  
  justify-content: left;
  */
}

.general-title{
    padding: 4rem 1rem 1rem 1rem; 
    font-size: 2rem;
    font-weight: 600;
}

.general-subtitle{
background-color: #ffe6eb;  
padding: 1rem 1rem 1rem 1rem; 
    font-size: 1.6rem;
    font-weight: 600;
    color: black;
}

.general-paratitle{
    padding: 1rem 1rem 0.1rem; 0.1rem; 
    font-size: 1.4rem;
    font-weight: 600;
}

.general-text{
    padding: 0.5rem 1rem 1rem; 0.1rem;  
    font-size: 1.2rem;
    font-weight: 300;
    line-height: 1.1; /* Ensures even spacing */
}

.general-para{
    padding: 0.5rem 1rem 0.1rem; 0.1rem;  
    font-size: 1.2rem;
    font-weight: 300;
    line-height: 1.5; /* Ensures even spacing */
}

.box.quote-box {
  background-color: white; /* #ffe6eb;  faint pink */
  color: black;
  text-align: center;
  padding: 4rem 2rem; /* generous vertical space */
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.quote-text {
  font-size: 2.2rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.quote-attribution {
  padding: 0.5rem 1rem;
    font-size: 1rem;
  color: #BFBFBF;
  /*font-style: italic;*/
}

.quote-grey {
  padding: 0.5rem 1rem;
    font-size: 1.6rem;
  color: #BFBFBF;
  font-style: bold;
}

.play-button {
  margin-top: 2rem;
  padding: 0.9rem 1.5rem;
  background-color: #ff00f2;
  color: white;
  font-size: 1rem;
  line-height: 1; /* Ensures even spacing */
  border: none;
  border-radius: 999px;
  cursor: pointer;
  font-weight: bold;
  display: inline-flex;
  align-items: center; /* Aligns icon/text vertically */
  justify-content: center;
  gap: 0.5rem;
  transition: background-color 0.3s ease;
}

.play-button:hover {
  background-color: #e60073; /* darker on hover */
}

.wait-form {
  background-color: white; /* #ffe6eb;  faint pink */
  color: black;
  text-align: center;
  justify-content: center;
  padding: 1rem;
}

    .button-row {
      display: flex;
      gap: 1rem;
        text-align: center;
  justify-content: center;
    }


    input[type="email"] {
      padding: 0.75rem;
      font-size: 1.1rem;
      font-weight: bold;
      color: black;
      border: 2px solid #ccc;
      border-radius: 8px;
      max-width: 800px;
      width: 90%;
      box-sizing: border-box;
      margin-bottom: 1rem;
    }

.wait-button {
  margin-top: 1rem;
  padding: 0.9rem 2rem;
  background-color: #0FC450;
  color: white;
  font-size: 1rem;
  line-height: 1; /* Ensures even spacing */
  border: none;
  border-radius: 333px;
  cursor: pointer;
  font-weight: bold;
  display: inline-flex;
  align-items: center; /* Aligns icon/text vertically */
  justify-content: center;
  gap: 0.5rem;
  transition: background-color 0.3s ease;
}

.wait-button:hover {
  background-color: #88FD72; /* lighter on hover */
}


.cancel-button {
  margin-top: 1rem;
  padding: 0.9rem 2rem;
  background-color: #2DD2FF;
  color: white;
  font-size: 1rem;
  line-height: 1; /* Ensures even spacing */
  border: none;
  border-radius: 333px;
  cursor: pointer;
  font-weight: bold;
  display: inline-flex;
  align-items: center; /* Aligns icon/text vertically */
  justify-content: center;
  gap: 0.5rem;
  transition: background-color 0.3s ease;
}

.cancel-button:hover {
  background-color: #0750C0; /* lighter on hover */
}

.video-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.video-container {
  background: #fff;
  border-radius: 12px;
  max-width: 800px;
  width: 90%;
  aspect-ratio: 16 / 9;
  position: relative;
  overflow: hidden;
  padding: 1rem;
  box-sizing: border-box;
}

.video-container iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

.close-button {
  position: absolute;
  top: 10px;
  right: 10px;
  background: #ff007f;
  color: white;
  border: none;
  font-size: 1.2rem;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  cursor: pointer;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.yellow-background{
    background-color: #FFD900; 
}

.pink-background{
    background-color: #FF00F2;
}

.green-background{
    background-color: #0FC450;
}

.lightgrey-background{
    background-color: #F2F2F2;
}

.lightblue-background{
    background-color: #2DD2FF;
}

.purple-background{
    background-color: #9336FF;
}

.white-background{
    background-color: white; 
}

.box.content-section {
  
  padding: 1rem 1rem;
  display: flex;
  justify-content: center;
   flex-direction: column;
}

.box.feature-section {

  padding: 2rem 1rem;
  display: flex;
  justify-content: center;
   flex-direction: column;
   color: black;
}

.box.feature-subsection {
    font-size: 2rem;
    font-style: bolder;
    background-color: #aaa;
}


    .row-container {
      font-size: 1.2rem;
      line-height: 1.2;
      display: flex;
      align-items: flex-start;
      background-color: #fff;
        max-width: 1200px;
      width: 95%;
      margin: 10px auto;
      padding: 10px;
      border-radius: 8px;
      box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    }

    .row-container img {
      width: 65px;
      height: 65px;
      margin-right: 15px;
      border-radius: 4px;
    }

    .row-text {
      text-align: left;
      font-size: 1rem;
      color: #333;
      flex: 1;
    }

    .row-title {
        font-size: 1.4rem;
        font-weight: 800;
    }

    .row-para {
        padding: 0.5rem 0rem; 
        line-height: 1.5;
    }

    .responsive-image {
  width: 100%;
  height: auto;
  display: block;
}

.image-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center; /* Optional: center images */
  gap: 20px; /* Optional: space between images */
}

.image-row img {
  width: 482px;
  max-width: 100%; /* Ensures it scales down on smaller screens */
  height: auto;
}



.inner-box {
  
  max-width: 1200px;
  width: 95%;
  border-radius: 8px;
  padding: 1rem;
  box-sizing: border-box;
  font-size: 1.6rem;
  color: black;
  line-height: 1.6;
}

.play-badge {
  margin-top: 1.5rem;
  text-align: center;
}

.play-badge img {
  height: 60px;
  max-width: 300px;
  width: auto;
}

    /* FOOTER */
    footer {
      background-color: #222;
      color: #ccc;
      text-align: center;
      padding: 1rem;
    }

    /* MOBILE RESPONSIVE */
    @media (max-width: 768px) {
      .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        background-color: #444;
      }

      .nav-links.show {
        display: flex;
      }

      .menu-toggle {
        display: block;
      }
    }
