/* RESET + BASE */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html, body {
  font-family: 'Lato', sans-serif;
  background: linear-gradient(to bottom, #0A0F1F 0%, #0E172A 100%);
  overflow-x: hidden;
  color: white;
}

/* HEADER */
header img {
  height: 60px; /* Adjust the height as needed */
  width: auto;
}
.navbar {
  position: fixed;
  width: 100%;
  padding: 20px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 10;
  background: rgba(0,0,0,0.4);
  backdrop-filter: blur(10px);
}
.logo {
  font-size: 24px;
  font-weight: bold;
  color: #00C9A7;
}
.nav-button {
  padding: 10px 20px;
  background: #00C9A7;
  color: #0A0F1F;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
}

/* HERO */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}
#particles {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  background: rgba(255,255,255,0.05);
  padding: 60px 40px;
  border-radius: 20px;
  backdrop-filter: blur(10px);
  text-align: center;
}
.hero h1 {
  font-size: 54px;
  margin-bottom: 20px;
}
.hero p {
  font-size: 20px;
  color: #CBD5E0;
  margin-bottom: 40px;
}

/* FORM */
form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: center;
}
form input {
  padding: 15px;
  width: 300px;
  border: 1px solid #CBD5E0;
  background: rgba(255,255,255,0.1);
  color: #ffffff;
  border-radius: 8px;
}
form button {
  padding: 15px;
  width: 200px;
  background: #00C9A7;
  border: none;
  border-radius: 8px;
  color: #0A0F1F;
  font-weight: bold;
}

/* WHY SECTION */
.why {
  padding: 100px 40px;
  background: #0E172A;
  text-align: center;
}
.why h2 {
  font-size: 36px;
  margin-bottom: 40px;
}
.features {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}
.feature-tile {
  background: rgba(255,255,255,0.05);
  padding: 30px 20px;
  border-radius: 16px;
  width: 300px;
  backdrop-filter: blur(10px);
}
.feature-tile h3 {
  font-size: 22px;
  margin-bottom: 10px;
}
.feature-tile p {
  font-size: 16px;
  color: #CBD5E0;
}
.feature-icon {
  font-size: 32px;
  color: #00C9A7;
  margin-bottom: 12px;
  filter: drop-shadow(0 0 6px rgba(0, 201, 167, 0.5));
}

/* PARTNERS */
.partners {
  display: flex;
  justify-content: center;
  gap: 40px;
  padding: 100px 40px;
  background: #0A0F1F;
  flex-wrap: wrap;
}
.partner-card {
  background: rgba(255,255,255,0.05);
  padding: 40px;
  border-radius: 16px;
  max-width: 400px;
  text-align: center;
  backdrop-filter: blur(10px);
}
.partner-card h2 {
  font-size: 24px;
  color: #ffffff;
  margin-bottom: 15px;
}
.partner-card ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 20px;
}
.partner-card ul li {
  color: #CBD5E0;
  margin-bottom: 8px;
}
.partner-btn {
  display: inline-block;
  padding: 12px 24px;
  background: #00C9A7;
  color: #0A0F1F;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
}

/* FOOTER */
.footer {
  text-align: center;
  background: #0E172A;
  padding: 60px 20px;
  min-height: 160px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.footer-links a {
  color: #94A3B8;
  margin: 0 12px;
  text-decoration: none;
  transition: color 0.3s ease;
}
.footer-links a:hover {
  color: #00C9A7;
}
.footer-social {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
}
.footer-social .social-icon {
  display: inline-block;
  width: 40px;
  height: 40px;
  transition: transform 0.3s ease, filter 0.3s ease;
}
.footer-social .social-icon svg {
  width: 100%;
  height: 100%;
  fill: #94A3B8;
  transition: fill 0.3s ease, transform 0.3s ease, filter 0.3s ease;
}

.footer-social .social-icon:hover svg {
  fill: #00C9A7;
  transform: scale(1.2);
  filter: drop-shadow(0 0 8px #00C9A7);
}
.footer-social a {
  display: inline-block;
  width: 32px;
  height: 32px;
}
.footer-social svg {
  width: 28px;
  height: 28px;
  padding: 2px;
  aspect-ratio: 1;
  vertical-align: middle;
  fill: #94A3B8;
  background: none;
  display: block;
  margin: auto;
  viewBox: 0 0 24 24;
  transform-box: fill-box;
  transform-origin: center;
}
.footer-social a:hover svg {
  fill: #00C9A7;
  transform: scale(1.2);
  filter: drop-shadow(0 0 8px #00C9A7);
}
.footer-copy {
  margin-top: 20px;
  font-size: 12px;
  color: #6B7280;
}

/* ANIMATION */
.fade-in-on-scroll {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1.2s ease-out, transform 1.2s ease-out;
}
.fade-in-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}
.stagger-1 { transition-delay: 0.2s; }
.stagger-2 { transition-delay: 0.4s; }
.stagger-3 { transition-delay: 0.6s; }

.transition-blend {
  height: 100px;
  background: linear-gradient(to bottom, rgba(10,15,31,1), #0E172A);
}
.footer-social svg {
  width: 100%;
  height: 100%;
  overflow: visible;
  fill: #94A3B8;
  transition: fill 0.3s ease, transform 0.3s ease, filter 0.3s ease;
}

.footer-social a:hover svg {
  fill: #00C9A7;
  transform: scale(1.2);
  filter: drop-shadow(0 0 8px #00C9A7);
}
.social-icon svg {
  width: 28px;
  height: 28px;
  transition: all 0.3s ease;
}
.social-icon:hover svg {
  fill: #00C9A7;
  filter: drop-shadow(0 0 8px #00C9A7);
  transform: scale(1.15);
}
.social-icon.instagram svg {
  transform: scale(1.15);
}
/* HEADERS */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Lato', sans-serif;
  color: #ffffff;
  margin-bottom: 16px;
  line-height: 1.2;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
}

h1 {
  font-size: 3rem;
  font-weight: 900;
}

h2 {
  font-size: 2.25rem;
  font-weight: 800;
}

h3 {
  font-size: 1.5rem;
  font-weight: 700;
}
h1, h2, h3 {
  text-shadow: 0 0 8px rgba(0, 201, 167, 0.3);
}
.nav-button {
  padding: 10px 20px;
  background: #00C9A7;
  color: #0A0F1F;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 16px;
  box-shadow: 0 0 10px rgba(0, 201, 167, 0.3);
  transition: all 0.3s ease;
  cursor: pointer;
}

.nav-button:hover {
  background: #02e5bd;
  color: #000;
  box-shadow: 0 0 16px rgba(0, 201, 167, 0.6);
}

/* LINKS */
a {
  color: #94A3B8;
  text-decoration: none;
  transition: color 0.3s ease, filter 0.3s ease;
}

a:hover {
  color: #00C9A7;
  filter: drop-shadow(0 0 6px #00C9A7);
}
button,
.partner-btn {
  padding: 15px 24px;
  border: none;
  border-radius: 12px;
  background: #00C9A7;
  color: #0A0F1F; /* ensures high contrast on light background */
  font-weight: bold;
  font-size: 16px;
  box-shadow: 0 0 12px rgba(0, 201, 167, 0.4);
  transition: all 0.3s ease;
  cursor: pointer;
}

button:hover,
.partner-btn:hover {
  background: #02e5bd;
  box-shadow: 0 0 16px rgba(0, 201, 167, 0.6);
  color: #000; /* darken text slightly if needed */
}
.feature-icon {
  font-size: 28px;
  color: #00C9A7;
  margin-bottom: 12px;
  text-shadow: 0 0 8px rgba(0, 201, 167, 0.4);
}

@media (max-width: 768px) {
  .hero-content {
    background: rgba(255, 255, 255, 0.02); /* ultra light see-through */
    backdrop-filter: blur(3px); /* optional subtle blur */
  }
}
.hero-content h1,
.hero-content p {
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.6);
}
