/* ------------------ */
/* Global Styles */
/* ------------------ */
@font-face {
  font-family: 'Super-Comic';
  src: url('../fonts/Super Comic.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
}

body {
  margin: 0;
  font-family: Arial, sans-serif;
  scroll-behavior: smooth;
  background: #000;
  color: #fff;
}


/* ------------------ */
/* Navbar Styles */
/* ------------------ */
.navbar {
  position: fixed;
  width: 100%;
  background-color: #000;
  padding: 20px 0;
  display: flex;
  justify-content: center;
  z-index: 1000;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.nav-container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.nav-menu {
  list-style: none;
  display: flex;
  margin: 0;
  padding: 0;
  gap: 0;
}

.nav-menu li {
  position: relative;
}

.nav-menu li:not(:last-child)::after {
  content: "|";
  color: #fff;
  margin: 0 15px;
  opacity: 0.85;
}

.nav-menu a {
  color: #fff;
  text-decoration: none;
  font-size: 1.25rem;
  letter-spacing: 1px;
  transition: color 0.3s ease;
}

.nav-menu a:hover {
  color: #aaa;
}


/* ------------------ */
/* Homepage Section */
/* ------------------ */
.homepage {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 60px 20px;
  text-align: center;
  background-color: #000;
}

.homepage .logo {
  width: 300px;
  height: auto;
  display: block;
  margin: 0 auto 5px auto;
}

.homepage h1 {
  text-align: center;
  color: #fff;
  font-size: 4rem;
  margin-top: 0;
  font-family: 'Super-Comic', Arial, sans-serif;
}

.homepage h5 {
  text-align: center;
  color: #fff;
  font-weight: 300;
  font-size: 0.75rem;
  margin-top: 5px;
  letter-spacing: 1px;
  opacity: 0.8;
}

.scroll-down {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 2rem;
  color: #fff;
  animation: bounce 2s infinite;
  cursor: pointer;
  opacity: 0.9;
}

@keyframes bounce {
  0%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(10px);
  }
}


/* ------------------ */
/* Section General Styling */
/* ------------------ */
section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 60px 20px;
  text-align: center;
  background-color: #000;
}


/* ------------------ */
/* White Section (now dark theme) */
/* ------------------ */
/* If you still want the "white-section" layout but in black/white theme */
.white-section {
  background-color: #000;
  color: #fff;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 60px 20px;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.white-section h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #fff;
}

.white-section p {
  font-size: 1.2rem;
  max-width: 800px;
  margin-bottom: 40px;
  line-height: 1.6;
  color: rgba(255,255,255,0.88);
}


/* ------------------ */
/* Black Section */
/* ------------------ */
.black-section {
  background-color: #000;
  color: #fff;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 60px 20px;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.black-section h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #fff;
}

.black-section p {
  font-size: 1.2rem;
  max-width: 800px;
  margin-bottom: 40px;
  line-height: 1.6;
  color: rgba(255,255,255,0.88);
}


/* ------------------ */
/* Team Section */
/* ------------------ */
.team-section {
  background-color: #000;
  color: #fff;
  min-height: 100vh;
  padding: 60px 20px;
  text-align: center;
}

.team-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 50px;
  align-items: center;
  margin-top: 30px;
}

.team-image img {
  width: 300px;
  max-width: 100%;
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255,255,255,0.12);
}

.team-info {
  max-width: 400px;
  text-align: left;
}

.team-info h3 {
  font-size: 1.5rem;
  margin-bottom: 5px;
  color: #fff;
}

.team-info p {
  font-size: 1rem;
  margin-bottom: 10px;
  opacity: 0.9;
  color: rgba(255,255,255,0.85);
}

.team-info a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.team-info a:hover {
  color: #aaa;
}


/* ------------------ */
/* Buttons */
/* ------------------ */
.btn,
a.btn {
  background-color: #fff;
  color: #000;
  padding: 14px 28px;
  text-decoration: none;
  font-weight: 600;
  border-radius: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
  transition: all 0.3s ease;
  display: inline-block;
  margin-top: 30px;
}

.btn:hover,
a.btn:hover {
  background-color: #000;
  color: #fff;
  border: 2px solid #fff;
}


/* ------------------ */
/* Social Links */
/* ------------------ */
.social-links a {
  display: inline-block;
  margin: 10px 15px;
  font-size: 1.1rem;
  text-decoration: none;
  color: #fff;
  border-bottom: 2px solid transparent;
  transition: color 0.3s ease, border-color 0.3s ease;
}

.social-links a:hover {
  color: #aaa;
  border-color: #aaa;
}

.social-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-top: 30px;
}

.social-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #0f0f0f;
  border-radius: 12px;
  padding: 20px 30px;
  text-decoration: none;
  color: #fff;
  width: 150px;
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow: 0 8px 20px rgba(0,0,0,0.45);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.social-card img {
  width: 40px;
  height: 40px;
  margin-bottom: 10px;
  filter: invert(1); /* makes black icons appear white */
}

.social-card span {
  font-size: 1.1rem;
  font-weight: bold;
}

.social-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.7);
}


/* ------------------ */
/* Contact Section */
/* ------------------ */
.contact-section {
  background-color: #000;
  color: #fff;
  min-height: 100vh;
  padding: 60px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.contact-intro {
  max-width: 700px;
  font-size: 1.1rem;
  margin-bottom: 30px;
  line-height: 1.6;
  opacity: 0.85;
  color: rgba(255,255,255,0.88);
}

.contact-card {
  background-color: #0f0f0f;
  padding: 20px 30px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.45);
  margin-bottom: 25px;
}

.email-link {
  display: inline-block;
  margin-top: 10px;
  font-size: 1.2rem;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.email-link:hover {
  color: #aaa;
}

.contact-socials a {
  margin: 0 10px;
  font-weight: 500;
  color: #fff;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.contact-socials a:hover {
  color: #aaa;
}


/* ------------------ */
/* Support Section */
/* ------------------ */
.support-section {
  background-color: #000;
  color: #fff;
  min-height: 100vh;
  padding: 60px 20px;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.support-text {
  max-width: 700px;
  margin: 0 auto 40px auto;
  font-size: 1.1rem;
  opacity: 0.85;
  color: rgba(255,255,255,0.88);
}

.support-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.support-card {
  background-color: #0f0f0f;
  border-radius: 12px;
  padding: 20px 30px;
  max-width: 300px;
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.45);
  text-align: center;
  transition: transform 0.3s ease;
  color: #fff;
}

.support-card:hover {
  transform: translateY(-5px);
}

.support-card img {
  width: 50px;
  margin-bottom: 15px;
  filter: invert(1);
}

.support-card h4 {
  margin-bottom: 10px;
  font-size: 1.25rem;
  color: #fff;
}

.support-card p,
.support-card code {
  color: rgba(255,255,255,0.88);
}

/* Boost button (monochrome now) */
.boost-btn {
  background-color: #fff;
  color: #000;
  padding: 14px 28px;
  font-weight: 700;
  text-decoration: none;
  border-radius: 30px;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 6px 15px rgba(0,0,0,0.45);
  margin-top: 20px;
  display: inline-block;
}

.boost-btn:hover {
  background-color: #aaa;
  color: #000;
  transform: scale(1.05);
}


/* ------------------ */
/* Fade-In Animations */
/* ------------------ */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Base state for animations */
.fade-in-left, .fade-in-right, .fade-in-up {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in-left {
  transform: translateX(-50px);
}

.fade-in-up {
  transform: translateY(30px);
}

/* Triggered state */
.fade-in-left.visible,
.fade-in-right.visible,
.fade-in-up.visible {
  opacity: 1;
  transform: translateX(0);
}

.fade-in-up.visible {
  transform: translateY(0);
}
