/* Global Reset */
body, html {
  height: 100%;
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', sans-serif;
  background-color: #ffffff;
  color: #222;
  overflow-x: hidden;
}
a{
  text-decoration: none;
}
.site-wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.site-wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.icon {
  width: 180px;
  margin: 20px;
}




.hero-text .highlight {
  color: #fbbf24; /* RadBudd yellow */
}

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.cta-btn {
  font-size: 1rem;
  padding: 12px 24px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  font-weight: 600;
}

.cta-btn.primary {
  position: relative;
  background-color: #22c55e; /* Bright green */
  color: white;
  padding: 10px 20px;
  font-size: 1.1rem;
  font-weight: bold;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  box-shadow: 0 6px 0 #1a9e4b; /* Darker green bottom shadow */
  transition: all 0.2s ease;
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.15);
  overflow: hidden;
}

.cta-btn.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 0 #1a9e4b;
  background-color: #12e760;
}

.cta-btn.primary:active {
  transform: translateY(2px);
  box-shadow: 0 2px 0 #1a9e4b;
}


.cta-btn.secondary {
  background-color: #fbbf24; /* Yellow */
  color: black;
}

.cta-btn:hover {
  transform: scale(1.05);
}

.hero-animation {
  flex-shrink: 0;
  text-align: center;
}

.site-footer {
  background-color: #f1f1f1;
  color: #555;
  padding: 20px;
  text-align: center;
  font-size: 0.9rem;
  border-top: 1px solid #ddd;
}


/* --- Header Layout Fix --- */
.header {
  width: 100%;
  padding: 16px;
  box-sizing: border-box;
  background-color: white;
}

.header-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}



/* Push logo left cleanly */
.header-left {
  display: flex;
  align-items: center;
}

.header-left img.icon {
  width: 150px;
  margin: 0;
}

/* Right side buttons */
.header-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header-right a {
  padding: 10px 20px;
  font-size: 1rem;
  border-radius: 999px;
  font-weight: 600;
  white-space: nowrap;
  text-align: center;
}



/* --- Keep login button clean and in line --- */
.login-btn {
  border: 2px solid #ccc;
  background-color: white;
  color: #222;
  transition: all 0.2s ease;
}


.login-btn:hover {
  background-color: #f9f9f9;
  border-color: black;
}

/* --- Get Started Button w/ Shine Effect --- */


.cta-btn.primary:hover {
  transform: translateY(-2px);
  background-color: #12e760;
  box-shadow: 0 6px 0 #1a9e4b;
}

.cta-btn.primary:active {
  transform: translateY(2px);
  box-shadow: 0 2px 0 #1a9e4b;
}
.cta-btn.primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0.3) 0%,
    rgba(255, 255, 255, 0.6) 50%,
    rgba(255, 255, 255, 0.3) 100%
  );
  transform: skewX(-25deg);
  z-index: 1;
  animation: shine 5s infinite;
}

@keyframes shine {
  0% {
    left: -75%;
  }
  50% {
    left: 125%;
  }
  100% {
    left: 125%;
  }
}



/*THIS IS FOR THE ABOUT US PARAGRAPH*/
.about-us-section {
  flex: 1;
  padding: 80px 20px;
  background-color: #fff;
  display: flex;
}

.about-container {
  max-width: 800px;
}

.about-container h1 {
  font-size: 2.5rem;
  color: #fbbf24;
  margin-bottom: 20px;
}

.about-container p {
  font-size: 1.2rem;
  line-height: 1.8;
  color: #333;
}


.about-us-section {
  flex: 1;
  padding: 80px 20px;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 100px;
}

.about-container {
  max-width: 600px;
  flex: 1;
}

.about-image {
  flex: 1;
  max-width: 400px;
  display: flex;
  justify-content: center;
}

.about-image img {
  width: 100%;
  height: auto;
  max-width: 100%;
}






/*THIS IS FOR THE FOOTER*/

.footer-logo {
  flex: 1 1 150px;
}

.footer-logo img {
  width: 180px; /* Adjust to match your layout */
  height: auto;
  display: block;
  
}


.site-footer {
  background-color: #000;
  color: #ccc;
  padding: 60px 40px 30px;
  font-size: 0.9rem;
  font-family: 'Segoe UI', sans-serif;
}

.footer-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto 40px;
}

.footer-logo {
  font-size: 2rem;
  font-weight: 700;
  color: white;
  flex: 1 1 150px;
}

.footer-links {
  display: flex;
  gap: 60px;
  flex: 2 1 400px;
  flex-wrap: wrap;
}

.footer-column h4 {
  font-size: 1rem;
  color: #888;
  margin-bottom: 12px;
}

.footer-column a {
  display: block;
  color: #ccc;
  text-decoration: none;
  margin-bottom: 8px;
  transition: color 0.2s;
}

.footer-column a:hover {
  color: white;
}

.footer-social {
  display: flex;
  gap: 16px;
  align-items: center;
  flex: 1 1 150px;
}

.footer-social img {
  width: 20px;
  height: 20px;
  filter: brightness(0.8);
  transition: filter 0.3s;
}

.footer-social img:hover {
  filter: brightness(1.2);
}

.footer-bottom {
  border-top: 1px solid #222;
  padding-top: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
}

.footer-legal a {
  color: #888;
  margin: 0 10px;
  text-decoration: none;
}

.footer-legal a:hover {
  color: white;
}

.footer-copy {
  color: #666;
  font-size: 0.8rem;
}

@media (max-width: 768px) {
  .footer-top {
    flex-direction: column;
    align-items: center;
  }

  .footer-links {
    flex-direction: column;
    gap: 20px;
  }

  .footer-social {
    margin-top: 20px;
  }

   .login-btn {
    display: none !important;
  }

  .header {
    padding: 12px 16px !important;
  }

  .header-left img.icon {
    width: 10rem;
  }

  .header-right a {
    padding: 8px 18px;
    font-size: 0.95rem;
  }

  .about-us-section {
    flex-direction: column;
    padding: 40px 20px;
    text-align: center;
  }

  .about-container {
    max-width: 100%;
  }

  .about-image {
    max-width: 80%;
    margin-top: 20px;
  }

}

@media (min-width: 1000px) {
  .header-inner {
    max-width: 900px;
  }
}
