/* --- All CSS from style.css is placed here --- */

/* montserrat-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/montserrat-v30-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* montserrat-600 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 600;
  src: url('../fonts/montserrat-v30-latin-600.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* montserrat-700 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 700;
  src: url('../fonts/montserrat-v30-latin-700.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* Base styles */
body,
html {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  font-family: "Open Sans", sans-serif;
  color: #fff;
  box-sizing: border-box;
}
*,
*::before,
*::after {
  box-sizing: inherit;
}
strong {
  font-size: larger;
}

main {
  overflow-x: hidden; /* Prevents horizontal scroll on small screens */
}

/* --- Custom Selection & Focus Styles --- */
::selection {
  background-color: #02affc;
  color: #fff;
}
a:focus-visible,
button:focus-visible {
  outline: 2px solid #02affc;
  outline-offset: 3px;
  border-radius: 4px;
}

/* Background image container */
.background-container {
  width: 100%;
  height: 100%;
  background-image: url("./hero-image.webp"); /* Assumes image is in the same folder or public root */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
}

.scroll-indicator {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%; /* Starts with 0 width */
  height: 5px; /* Height of the scroll bar */
  background: linear-gradient(to right, #d022fa, #02affc);
  z-index: 1000; /* Ensure it's above other content */
  transition: width 0.1s ease-out; /* Smooth transition for width change */
}

/* Scroll Down Indicator Styles */
.scroll-down-indicator {
  position: absolute;
  bottom: 20px; /* Adjust distance from the bottom */
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #fff; /* Color of the text and arrow */
  font-family: "Open Sans", sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  animation: bounce 2s infinite; /* Add bounce animation */
  cursor: pointer;
}

.scroll-down-indicator span {
  margin-bottom: 5px;
}

.scroll-down-indicator svg {
  width: 24px; /* Size of the arrow icon */
  height: 24px;
  stroke: #fff; /* Color of the arrow icon stroke */
}

/* Bounce Animation */
@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  40% {
    transform: translateX(-50%) translateY(-10px);
  }
  60% {
    transform: translateX(-50%) translateY(-5px);
  }
}

/* Site Header */
.site-header {
  position: fixed;
  top: 0px;
  left: 0px;
  right: 0px;
  z-index: 10;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.site-logo-link {
  line-height: 0;
  display: inline-block;
  transition: transform 0.3s ease; /* Transition for logo */
}
.site-logo-link:hover {
  transform: scale(1.05); /* Logo hover effect */
}
.site-logo {
  height: 50px;
  width: auto;
  max-width: 180px;
  filter: drop-shadow(0px 0px 5px rgba(0, 0, 0, 0.5));
}

/* Header Right-Side Container */
.header-right {
  display: flex;
  align-items: center;
  gap: 25px;
  margin-right: 15px;
}

/* --- HAMBURGER MENU STYLES --- */
.hamburger-menu {
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1010;
  width: 35px;
  height: 35px;
  display: none; /* Hidden on desktop */
  justify-content: center;
  align-items: center;
}
.hamburger-menu svg {
  width: 28px;
  height: 28px;
  stroke: #fff;
  stroke-width: 2.5;
  transition: transform 0.3s ease;
}
.hamburger-menu .icon-close {
  display: none;
}
.hamburger-menu .icon-menu {
  display: block;
}
.hamburger-menu.is-active .icon-menu {
  display: none;
}
.hamburger-menu.is-active .icon-close {
  display: block;
  transform: rotate(180deg);
}

/* Navigation Styles (Desktop) */
.main-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 25px;
}
.main-nav a {
  text-decoration: none;
  color: #e0e0e0;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 1.1em;
  transition: color 0.3s ease, transform 0.2s ease;
}
.main-nav a:hover {
  color: #02affc;
  transform: translateY(-2px);
}

/* Waitlist Button in Navbar */
.nav-waitlist-btn {
  background: linear-gradient(to right, #d022fa, #02affc);
  color: white !important;
  padding: 8px 18px;
  border-radius: 6px;
  transition: all 0.3s ease;
  font-weight: 600 !important;
  font-family: "Montserrat", sans-serif;
  font-size: 1.1em;
  text-decoration: none;
  display: inline-block;
  cursor: pointer;
  white-space: nowrap; /* Add this line to prevent text wrapping */
}
.nav-waitlist-btn:hover {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  filter: brightness(1.1);
}

/* Hero Section */
#hero {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding: 20px;
  text-align: center;
  animation: fadeIn 1.5s ease-out forwards;
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.hero-title-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}
.hero-word {
  font-size: 2.8em;
  font-weight: 700;
  line-height: 1.2;
  margin: 0;
  font-family: "Montserrat", sans-serif;
}
.circle-separator {
  font-size: 32px;
  margin: 0 0.4em;
  background: linear-gradient(to right, #d022fa, #02affc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}
.hero-slogan {
  font-size: 1.8em;
  font-weight: 600;
  margin-top: 10px;
  max-width: 800px;
  color: #f0f0f0;
  font-family: "Montserrat", sans-serif;
  margin-bottom: 30px;
}
.hero-waitlist-btn {
  background: linear-gradient(to right, #d022fa, #02affc);
  color: white;
  padding: 16px 36px;
  border: none;
  border-radius: 8px;
  font-size: 1.15em;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
  text-decoration: none;
}
.hero-waitlist-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
  filter: brightness(1.1);
}

/* Shared Content Section Styles */
.content-section {
  position: relative;
  z-index: 1;
  max-width: 1000px;
  margin: 80px auto;
  padding: 50px;
  background-color: rgba(10, 10, 10, 0.75);
  background-image: url("data:image/svg+xml,%3Csvg%20width%3D%22100%25%22%20height%3D%22100%25%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cfilter%20id%3D%22noise%22%3E%3CfeTurbulence%20type%3D%22fractalNoise%22%20baseFrequency%3D%220.6%22%20numOctaves%3D%223%22%20stitchTiles%3D%22stitch%22%2F%3E%3C%2Ffilter%3E%3Crect%20width%3D%22100%25%22%20height%3D%22100%25%22%20filter%3D%22url(%23noise)%22%20opacity%3D%220.08%22%2F%3E%3C%2Fsvg%3E");
  background-blend-mode: overlay;
  backdrop-filter: blur(5px);
  border-radius: 12px;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.03);
  color: #e0e0e0;
  line-height: 1.7;
  text-align: left;
}
/* Specific style for legal/info pages */
.content-section.info-page {
  margin-top: 120px;
  margin-bottom: 80px;
}
.content-section h2,
.content-section h3 {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  color: #f0f0f0;
  margin-bottom: 25px;
}
.content-section h2 {
  font-size: 2.5em;
  background: linear-gradient(to right, #d022fa, #02affc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  margin-bottom: 40px;
  text-align: center;
}
.content-section h3 {
  color: #f0f0f0;
  margin-top: 30px;
}
.info-page h3 {
  font-size: 1.6em;
  text-align: left;
}
.content-section p {
  margin-bottom: 1.5em;
  font-size: 1.05em;
}
.content-section ul {
  list-style: none;
  padding: 0;
  margin-bottom: 1.5em;
}
.content-section ul li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 10px;
}
.content-section ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #02affc;
  font-size: 1.2em;
}

/* Features section specific */
#features .features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}
#features .feature-item {
  background-color: rgba(0, 0, 0, 0.2);
  padding: 20px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}
#features .feature-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}
#features .feature-item h3 {
  color: #02affc;
  text-align: left;
  font-size: 1.5em;
  margin-bottom: 15px;
}
#features .feature-item p {
  font-size: 1em;
  line-height: 1.6;
  flex-grow: 1;
}

/* --- FAQ Accordion Styles --- */
.faq-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 15px;
  margin-bottom: 15px;
}
.faq-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  background: none;
  border: none;
  padding: 10px 0;
  cursor: pointer;
  text-align: left;
}
.faq-question h3 {
  color: #f0f0f0;
  text-align: left;
  font-size: 1.6em;
  margin: 0;
  transition: color 0.3s ease;
}
.faq-question:hover h3 {
  color: #02affc;
}
.faq-icon {
  width: 24px;
  height: 24px;
  stroke: #02affc;
  stroke-width: 2;
  transition: transform 0.3s ease-out;
  margin-left: 20px;
  flex-shrink: 0; /* Prevents icon from shrinking */
}
.faq-item.active .faq-icon {
  transform: rotate(180deg); /* Rotates arrow to point up */
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out;
}
.faq-answer p {
  padding: 10px 0 10px 10px; /* Indent the answer text */
  margin: 0;
  color: #ccc;
  line-height: 1.6;
  font-size: 1em;
}

/* Footer */
.site-footer {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 30px 20px;
  background-color: rgba(10, 10, 10, 0.75);
  backdrop-filter: blur(5px);
  box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.4);
  text-align: center;
  color: #999;
  font-size: 0.9em;
  margin-top: 50px;
}
.site-footer .footer-links ul {
  list-style: none;
  margin: 0 0 15px 0;
  padding: 0;
  display: flex;
  justify-content: center;
  gap: 20px;
}
.site-footer .footer-links a,
.site-footer .footer-links span {
  text-decoration: none;
  color: #e0e0e0;
  font-weight: 500;
  transition: color 0.3s ease;
}
.site-footer .footer-links a:hover {
  color: #02affc;
}
.site-footer .footer-links span {
  color: #888; /* Style for the current page link */
}
.site-footer .copyright {
  margin-top: 15px;
  color: #777;
}

/* --- Responsive Adjustments --- */
@media (max-width: 768px) {
  .header-right {
    gap: 15px;
  }
  .nav-waitlist-btn {
    padding: 6px 12px;
    font-size: 0.9em;
  }
  .main-nav {
    display: none;
  }
  .hamburger-menu {
    display: flex; /* Show hamburger on mobile */
  }
  .main-nav.is-active {
    display: flex; /* Make overlay visible */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    margin: 0;
    background: rgba(10, 20, 30, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 1005;
    justify-content: center;
    align-items: center;
  }
  .main-nav.is-active ul {
    flex-direction: column;
    gap: 40px;
    text-align: center;
  }
  .main-nav.is-active a {
    font-size: 2em;
  }
  .hero-word {
    font-size: 2.2em;
  }
  .hero-slogan {
    font-size: 1.4em;
  }
  .circle-separator {
    display: none;
  }
  .hero-title-container {
    flex-direction: column;
    gap: 0;
  }
  .content-section {
    margin: 60px 20px;
    padding: 30px;
  }
  .content-section.info-page {
    margin-top: 100px;
    margin-bottom: 60px;
  }
  .content-section h2 {
    font-size: 2.2em;
  }
  #features .feature-item h3,
  .info-page h3 {
    font-size: 1.4em;
  }
  .faq-question h3 {
    font-size: 1.4em;
  }
}

@media (max-width: 480px) {
  .hero-word {
    font-size: 1.8em;
  }
  .hero-slogan {
    font-size: 1.1em;
  }
  .content-section {
    padding: 25px 20px;
  }
  .content-section h2 {
    font-size: 2em;
  }
  .main-nav.is-active a {
    font-size: 1.5em;
  }
}
