/* 1. Global Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  height: 100%;
  font-size: 16px;
  scroll-behavior: smooth;
  max-width: 100%;
  overflow-x: hidden;
}

body {
  font-family: 'Arial', sans-serif;
  background-color: #0e0e0e;
  color: white;
  min-height: 100vh;
  line-height: 1.6;
  max-width: 100%;
  overflow-x: hidden;
  padding: 0;
}

.page-wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  position: relative;
  z-index: 1;
}

main {
  flex: 1;
}



/* 2. Background Image */
.background {
  position: fixed;       /* <-- sticks to viewport */
  inset: 0;              /* top:0; right:0; bottom:0; left:0 */
  background: url('assets/whitehouse-bg.png') center center / cover no-repeat;
  opacity: 0.05;
  pointer-events: none;  /* never block clicks */
  z-index: 0;
}




/* 3. Header */
.header {
  position: sticky;      /* stick to the top on scroll */
  top: 0;
  width: 100%;
  z-index: 999;
  background-color: rgba(0, 0, 0, 0.3); /* dark translucent bg */
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2vh 5vw;align-self: start;
  backdrop-filter: blur(10px); /* optional: glassy effect */
  border-bottom: 1px solid rgba(255,255,255,0.05);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
}

.logo {
  max-height: 8vh;
  height: auto;
  width: auto;
}

.nav a {
  margin-right: 2vw;
  text-decoration: none;
  color: white;
  font-weight: bold;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

.nav a:hover {
  color: #5e9fff;
}

/* 4. Hero */
.hero {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 80vh;
  text-align: center;
}

.hero-content {
  max-width: 800px;
  width: 100%;
  padding: 4vh 2vw;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1rem;
}

.hero-content h1 {
  font-size: 3rem;
  font-weight: 900;
  margin-bottom: 1.2rem;
}

.hero-content p {
  font-size: 1.1rem;
  color: #ccc;
  margin-bottom: 2rem;
}

.button-wrapper {
  display: flex;           
  flex-direction: column;  
  gap: 1.5rem;             
  align-items: center;
}


.cta-button {
  display: inline-block;
  padding: 1rem 2rem;
  font-weight: bold;
  color: black;
  background-color: white;
  border-radius: 0.5rem;
  text-decoration: none;
  transition: background 0.3s ease;
}

.cta-button:hover {
  background-color: #ddd;
}

/* 5. Footer */
.footer {
  text-align: center;
  font-size: 0.9rem;
  color: #888;
  padding-bottom: 1%;
}

/* 6. Responsive Tweaks */
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2.4rem;
  }

  .hero-content p {
    font-size: 1rem;
  }

  .nav a {
    font-size: 0.85rem;
    margin-left: 1.2vw;
  }
}

@media (max-width: 480px) {
  .hero-content {
    padding: 2rem 1rem;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .cta-button {
    font-size: 0.9rem;
    padding: 0.8rem 1.6rem;
  }

  .logo {
    max-height: 6vh;
  }

}

/* — FAQ Page Styling — */
.faq-wrapper {
  max-width: 800px;
  margin: 4rem auto;
  padding: 0 1rem;
}

.faq-title {
  text-align: center;
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 2rem;
}

.faq-item {
  margin-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 1rem;
  font-size: 1.2rem;
  color: white;
  font-weight: bold;
  cursor: pointer;
  position: relative;
  transition: color 0.3s;
}

.faq-question::after {
  content: '+';
  position: absolute;
  right: 1.5rem;
  font-size: 1.5rem;
  transition: transform 0.3s;
}

.faq-question.active::after {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.04);
  padding: 0 1rem;
  transition: max-height 0.5s ease, padding 0.3s;
}

.faq-answer p {
  margin: 1rem 0;
  color: #ccc;
}

.mini-button {
  display: inline-block;
  padding: 0.1rem 0.5rem;
  font-weight: bold;
  color: black;
  background-color: white;
  border-radius: 0.5rem;
  text-decoration: none;
  transition: background 0.3s ease;
}


/* — Community Page Styling — */


.community-section {
  text-align: center;
  padding: 10vh 5vw;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 900;
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.1rem;
  color: #bbb;
  margin-bottom: 3rem;
}

.community-links {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}

.community-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(255, 255, 255, 0.05);
  padding: 2rem;
  border-radius: 1rem;
  backdrop-filter: blur(8px);
  text-decoration: none;
  color: white;
  width: 220px;
  transition: transform 0.3s ease, background 0.3s ease;
  border: 1px solid rgba(255,255,255,0.1);
}

.community-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.08);
}

.community-card img {
  width: 48px;
  height: 48px;
  margin-bottom: 1rem;
}

.community-card span {
  font-weight: bold;
  font-size: 1.1rem;
}

/* Platform-themed colors */
.telegram:hover {
  border-color: #229ED9;
}

.discord:hover {
  border-color: #5865F2;
}

.tiktok:hover {
  border-color: #5865F2;
}

.instagram:hover {
  border-color: #5865F2;
}

.youtube:hover {
  border-color: #5865F2;
}

/* Testimonials Styling */
.testimonials-section { 
text-align: center;
padding: 10vh 5vw; 
display: flex; 
flex-direction: column; 
align-items: center; 
}
/* Testimonial cards: fixed yet roomy, no clipping */
.testimonial-card {
  /* width can adapt, but don’t exceed this */
  max-width: 340px;
  width: auto;

  /* taller so chat screenshots stay readable */
  height: clamp(420px, 60vh, 560px);

  padding: 10px; /* breathing room so corners aren’t clipped */
  border-radius: 1rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  display: grid;
  place-items: center;
  overflow: hidden;   /* keeps everything neatly inside the rounded card */
  flex: 0 0 auto;
}

/* Make sure the entire image fits inside the card */
.testimonial-card img /* , .testimonial-card video */ {
  max-width: 100%;   /* <-- critical: prevent side clipping */
  max-height: 100%;  /* already had height constraint */
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
  /* remove img border-radius so edges aren’t “cut” by the card */
  border-radius: 0;
  transition: transform 0.3s ease;
  opacity: 0.98;
}

.testimonial-card:hover img { transform: scale(1.03); }

/* Viewport wrapper should clip the wide track (if you don't already have it) */
.infinite-carousel {
  overflow: hidden;     /* important: prevents horizontal page stretch */
  width: 100%;
  max-width: 100%;
  padding: 2rem 0;
}

/* Track uses named animation; JS sets the duration dynamically */
.carousel-track {
  display: flex;
  gap: 2rem;
  width: max-content;
  animation-name: scroll-left;
  animation-duration: 30s;        /* fallback so it always moves, JS will override */
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  will-change: transform;
  transform: translateZ(0);
}

@keyframes scroll-left {
  from { transform: translate3d(0,0,0); }
  to   { transform: translate3d(-50%,0,0); } /* assumes you duplicated the images once */
}



/* Pause the marquee when lightbox is open */
.carousel-track.pause { animation-play-state: paused; }

/* Make images look clickable */
.testimonial-card img { cursor: zoom-in; }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0;
  background: rgba(0,0,0,.85);
  display: grid; place-items: center;
  z-index: 10000;
}
.lightbox[hidden] { display: none; }

.lightbox img {
  max-width: 92vw;      /* big and readable */
  max-height: 92vh;
  width: auto; height: auto;
  object-fit: contain;
  box-shadow: 0 20px 60px rgba(0,0,0,.6);
  border-radius: 12px;
}

.lb-close {
  position: absolute; top: 18px; right: 18px;
  width: 42px; height: 42px; border-radius: 999px;
  border: 1px solid rgba(255,255,255,.2);
  background: rgba(255,255,255,.08);
  color: #fff; font-size: 24px; line-height: 1;
  display: grid; place-items: center;
  cursor: pointer;
}
.lb-close:hover { background: rgba(255,255,255,.18); }





/* Sticky buy 1:1 mentorship Button  */

.buy-mentorship-btn {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  padding: 1rem 1.6rem;
  background-color: white;
  color: #000;
  font-weight: bold;
  border-radius: 999px;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(255, 255, 255, 0.1);
  z-index: 9999;
  transition: background 0.3s ease, color 0.3s ease;
}

.buy-mentorship-btn:hover {
  background-color: #5e9fff;
  color: white;
}

/* Free Vendor List Email entry */

.email-popup {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  background: rgba(0, 0, 0, 0.85);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10000;
  display: none;
}

.email-popup-content {
  background: #111;
  padding: 2rem;
  max-width: 400px;
  width: 90%;
  border-radius: 1rem;
  text-align: center;
  color: white;
  position: relative;
  box-shadow: 0 0 20px rgba(255,255,255,0.1);
}

.email-popup-content h2 {
  font-size: 1.6rem;
  margin-bottom: 0.5rem;
}

.email-popup-content p {
  font-size: 0.95rem;
  color: #ccc;
  margin-bottom: 1.5rem;
}

.email-popup-content input {
  width: 100%;
  padding: 0.8rem;
  margin-bottom: 1rem;
  border-radius: 8px;
  border: none;
  font-size: 1rem;
}

.email-popup-content button[type="submit"] {
  width: 100%;
  padding: 0.8rem;
  background: white;
  color: black;
  font-weight: bold;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s;
}

.email-popup-content button[type="submit"]:hover {
  background: #5e9fff;
  color: white;
}

.close-btn {
  position: absolute;
  top: 0.6rem;
  right: 1rem;
  background: none;
  border: none;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
}

/* Recent Activity Toast*/

/* Recent Activity Toast */
.activity-toast {
  position: fixed;
  left: 1.25rem;
  bottom: 1.25rem;
  max-width: 360px;
  padding: .9rem 1rem;
  border-radius: .9rem;
  background: #111;
  color: #eaeaea;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 10px 24px rgba(0,0,0,0.4);
  display: none;
  gap: .6rem;
  align-items: center;
  z-index: 9999;
  font-size: 0.95rem;
}
.activity-toast.show { display: flex; animation: whrFade 6s ease forwards; }
.activity-icon { font-size: 1.1rem; flex: 0 0 auto; }
.activity-text { line-height: 1.35; }
.activity-link {
  margin-left: .6rem;
  font-weight: 600;
  text-decoration: underline;
  color: #5e9fff;
  flex: 0 0 auto;
}

@keyframes whrFade {
  0% { opacity: 0; transform: translateY(10px); }
  10% { opacity: 1; transform: translateY(0); }
  85% { opacity: 1; transform: translateY(0); }
  100% { opacity: 0; transform: translateY(10px); }
}

/* Optional: hide on very small screens */
@media (max-width: 480px) {
  .activity-toast { display: none !important; }
}


/* Mentorship Page/Vendor Page */

.mentorship-hero {
  text-align: center;
  padding: 10vh 5vw;
  background: linear-gradient(to bottom, #111, #000);
}

.mentorship-cta {
  display: inline-block;
  background: white;
  color: black;
  padding: 1rem 2rem;
  font-weight: bold;
  border-radius: 999px;
  margin-top: 1.5rem;
  text-decoration: none;
}

.trust-badges {
  display: flex;
  justify-content: center;
  gap: 2rem;
  padding: 2rem 0;
  background: #111;
}

.mentorship-details, .results-preview, .mentorship-checkout {
  padding: 8vh 5vw;
  text-align: center;
}

/* Mentorship and Vendorlist testimonials (scoped with m-) */
.m-carousel {
  display: flex;
  gap: 2.2rem;
  width: max-content;
  animation-name: m-scroll-left;
  animation-duration: 30s;          /* fallback so it always moves */
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  will-change: transform;
  transform: translateZ(0);
}

@keyframes m-scroll-left {
  from { transform: translate3d(0,0,0); }
  to   { transform: translate3d(-50%,0,0); } /* duplicated set once */
}



/* BIG readable cards */
.m-testimonial-card {
  flex: 0 0 auto;
  width: clamp(360px, 34vw, 560px);
  height: clamp(520px, 66vh, 820px);
  padding: 10px;
  border-radius: 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  display: grid;
  place-items: center;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0,0,0,.35);
}

.m-testimonial-card img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;   /* never crop */
  display: block;
  cursor: zoom-in;
  transition: transform .25s ease;
}
.m-testimonial-card:hover img { transform: scale(1.02); }

/* Lightbox (mentorship-only) */
.m-lightbox {
  position: fixed; inset: 0;
  background: rgba(0,0,0,.88);
  display: grid; place-items: center;
  z-index: 10000;
}
.m-lightbox[hidden] { display: none; }
.m-lightbox img {
  max-width: 94vw;
  max-height: 94vh;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0,0,0,.6);
}
.m-lb-close {
  position: absolute; top: 18px; right: 18px;
  width: 44px; height: 44px; border-radius: 999px;
  border: 1px solid rgba(255,255,255,.25);
  background: rgba(255,255,255,.12);
  color: #fff; font-size: 24px; line-height: 1;
  display: grid; place-items: center;
  cursor: pointer;
}
.m-lb-close:hover { background: rgba(255,255,255,.22); }

/* Pause marquee when lightbox open */
.m-carousel.m-pause { animation-play-state: paused; }

/* Mobile sizing */
@media (max-width: 900px) {
  .m-carousel { gap: 1.5rem; }
  .m-testimonial-card { width: clamp(300px, 60vw, 420px); height: clamp(460px, 62vh, 680px); }
}
@media (max-width: 520px) {
  .m-testimonial-card { width: 88vw; height: 72vh; }
}





.checkout-btn {
  background: #5e9fff;
  color: white;
  padding: 1rem 2rem;
  font-weight: bold;
  border-radius: 0.6rem;
  text-decoration: none;
  margin-top: 2rem;
  display: inline-block;
}

.back-btn {
  display: inline-block;
  margin: 2rem 0 0 2rem;
  font-size: 0.95rem;
  color: #5e9fff;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.back-btn:hover {
  color: white;
}


/* Trust badges → pill cards with emojis */
.trust-badges .trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.25rem;
  list-style: none;
  margin: 0;
  padding: 0 1rem;
  justify-content: center;
}

.trust-badges .trust-list li {
  background: rgba(255, 255, 255, 0.06);
  border: 3px solid rgba(255, 255, 255, 0.08);
  padding: 0.75rem 1rem;
  border-radius: 0.75rem;
  color: #ddd;
  font-weight: 600;
  text-align: center;
  backdrop-filter: blur(6px);
}
.trust-item:hover{
    transform: scale(1.05);
}

/* Mentorship details → glassy card to match your aesthetic */
.mentorship-details {
  max-width: 1000px;
  margin: 3rem auto 0;
  background: rgba(255, 255, 255, 0.03);
  border: 2px solid rgba(255, 255, 255, 0.05);
  border-radius: 1rem;
  backdrop-filter: blur(8px);
}

.mentorship-details h2 {
  color: #5e9fff;
  margin-bottom: 0.5rem;
}

.mentorship-details p {
  color: #ccc;
  margin: 0.75rem 0 1rem;
  line-height: 1.65;
}

.vendor-items {
  font-size: 0.95rem;
  color: #bbb;
}

.why-bullets {
  list-style: none;
  padding: 0;
  margin: 0.5rem auto 0;
  max-width: 800px;
  text-align: left;
}

.why-bullets li {
  position: relative;
  padding-left: 1.1rem;
  margin: 0.35rem 0;
}

.why-bullets li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  line-height: 1.2;
}

/* Optional: smoother mobile spacing */
@media (max-width: 768px) {
  .trust-badges .trust-list {
    padding: 0 0.5rem;
  }
  .mentorship-details {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }
}

/* Back to top */
.back-to-top {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.08);
  color: #fff;
  font-size: 1.15rem;
  line-height: 1;
  display: grid;
  place-items: center;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  backdrop-filter: blur(8px);
  transition: opacity .25s ease, transform .25s ease, background .25s ease;
  z-index: 9999;
}
.back-to-top:hover { background: rgba(255,255,255,0.18); }
.back-to-top.show {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

/* TOS accept Button */

/* Center wrapper */
.checkout-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px; /* space between checkbox and button */
}

/* TOS Checkbox Styling */
.tos-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    cursor: pointer;
    user-select: none;
}

/* Hide default checkbox */
.tos-label input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    background-color: transparent;
    margin: 0;
    font: inherit;
    width: 18px;
    height: 18px;
    border: 2px solid #fff;
    border-radius: 4px;
    display: grid;
    place-content: center;
    cursor: pointer;
}

/* Checkmark */
.tos-label input[type="checkbox"]::before {
    content: "";
    width: 10px;
    height: 10px;
    transform: scale(0);
    transition: 120ms transform ease-in-out;
    box-shadow: inset 1em 1em #fff;
}

/* Show checkmark when checked */
.tos-label input[type="checkbox"]:checked::before {
    transform: scale(1);
}

/* TOS link styling */
.tos-label a {
    color: inherit;
    text-decoration: underline;
}
.tos-label a:hover {
    text-decoration: none;
}


/* Success page */

.success-container {
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
      min-height: 100vh;
      padding: 2rem;
    }
    .success-container h1 {
      font-size: 2.4rem;
      margin-bottom: 1rem;
      color: white;
    }
    .success-container p {
      font-size: 1.1rem;
      margin-bottom: 2rem;
      color: #ccc;
    }
    .home-btn {
      padding: 1rem 2rem;
      font-weight: bold;
      background-color: white;
      color: black;
      text-decoration: none;
      border-radius: 0.5rem;
      transition: background 0.3s ease;
    }
    .home-btn:hover {
      background-color: #5e9fff;
      color: white;
    }

/*tos/privacy Page*/

.tosprivacy-wrapper {
  max-width: 800px;
  margin: 4rem auto;
  padding: 0 1rem;
}


