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

html, body {
  height: 100%;
  font-family: 'Space Grotesk', sans-serif;
  overflow-x: hidden; 
}

/* Background image instead of video */
.background-image {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-image: url("assets/main_background.png"); /* Or any image you want */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -10;
  filter: none;
}
.background-image-black {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-image: url("assets/background_black.png"); /* Or any image you want */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -10;
  filter: none;
}

/* Overlay Gradient and Blur */
.overlay {
  position: relative;
  min-height: 100%;
  width: 100%;
  background: transparent;       /* Remove dark gradient */
  backdrop-filter: none;        /* Remove blur */
  display: flex;
  flex-direction: column;
  padding: 2rem;
  z-index: 0; /* optional */
}

/* Header & Logo Container with Glassmorphism */
.header {
  display: flex;
  justify-content: center; /* Center nav */
  align-items: center;
  padding: 1rem 2rem;
  position: relative;
}

/* Keep logo on top-left, detached from nav */
.logo {
  height: 50px;
  position: absolute;
  left: 2rem;
  top: 1rem;
}



.center-text {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  padding: 1rem 2rem; /* Reduced height */
  max-width: 90vw;
  border-radius: 0;   /* Removed rounded corners */


  z-index: 1;
}


.title {
  font-weight: 700;
  font-size: 4rem;
  color: #FE8113;
  letter-spacing: 0.12em;
  text-shadow: 0 0 12px #FE811388;
  position: relative;
  animation: fadeIn 1.5s ease-in-out;
}

/* Pulsing laser underline */
.title::after {
  content: '';
  display: block;
  margin: 0.5rem auto 0;
  width: 50%;
  height: 4px;
  background: #FE8113;
  border-radius: 2px;
  animation: pulse 2s infinite;
}

.subtitle {
  font-weight: 300;
  font-size: 1.5rem;
  margin-top: 1rem;
  color: #ffffffee;
  animation: fadeIn 2.5s ease-in-out;
}

/* Animations */
@keyframes fadeIn {
  0% { opacity: 0; transform: translateY(20px); }
  100% { opacity: 1; transform: translateY(0); }
}

@keyframes pulse {
  0% { box-shadow: 0 0 5px #FE8113; }
  50% { box-shadow: 0 0 20px #FE8113; }
  100% { box-shadow: 0 0 5px #FE8113; }
}

/* Responsive */
@media (max-width: 600px) {
  .title {
    font-size: 2.5rem;
  }

  .subtitle {
    font-size: 1rem;
  }

  .logo {
    height: 40px;
  }
}

/* Header layout */
.header {
  position: relative;
  width: 100%;
  margin-top: 1rem;
  padding: 0;
}

/* Logo in top-left */
.logo {
  position: absolute;
  top: 0;
  left: 2rem;
  height: 50px;
}

/* Centered nav bar */
.nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.2rem;
  font-size: 1rem;
  font-weight: 300;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  padding: 0.4rem 1.2rem;
  backdrop-filter: blur(8px);
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.05);
  width: fit-content;
  margin: 0 auto; /* ← CENTER the nav block */
}


.nav-item {
  color: #ccc;
  text-decoration: none;
  transition: all 0.3s ease;
}

.nav-item:hover {
  color: #FE8113;
}

.nav-item.current {
  font-weight: 700;
  color: #ffffff;
}

.mission-content {
  text-align: center;
  margin: auto;
  max-width: 800px;
  padding: 2rem;
}

.mission-content .title {
  margin-bottom: 2rem;
}

.mission-text p {
  font-weight: 300;
  font-size: 1.2rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  color: #ffffffee;
}

.mission-text strong {
  font-weight: 500;
  color: #FE8113;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  animation: fadeInUp 1s ease-out forwards;
  opacity: 0;
}

.fade-in-delayed {
  animation: fadeInUp 1.2s ease-out forwards;
  animation-delay: 0.4s;
  opacity: 0;
} 

/* Value */

.value-content {
  text-align: center;
  max-width: 1200px;
  margin: 5vh auto 0;
  padding: 2rem;
}

.value-content .title {
  margin-bottom: 2.5rem;
}

.value-text {
  max-width: 1100px;
  margin: 0 auto;
}

.value-text p {
  font-size: 1.4rem;
  margin-bottom: 1.4rem;
  line-height: 1.7;
}

.value-text .highlight {
  color: #ffffff;
  font-weight: 500;
  font-size: 1.5rem;
}

.value-text .secondary {
  color: #cccccc;
  font-weight: 300;
  font-size: 1.2rem;
}

/* Larger video placeholder */
.video-placeholder {
  margin-top: 3rem;
}

.placeholder-image {
  width: 100%;
  max-width: 900px;
  border-radius: 12px;
  box-shadow: 0 0 24px rgba(255, 255, 255, 0.08);
  height: auto;
  display: block;
  margin: 0 auto;
}

.video-placeholder video {
  width: 100%;
  max-width: 1100px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 0 28px rgba(255, 255, 255, 0.08);
}

/* partners page */

.partners-content {
  max-width: none;   /* no limit */
  width: 60%;       /* take full width */
  margin: 3vh auto 0;
  padding: 2rem;     /* keep a little breathing room on the sides */
}


.partners-content .title {
  text-align: center;
  margin-bottom: 2.5rem;
}

.partner-columns {
  display: flex;
  justify-content: space-between;
  gap: 3rem;
  flex-wrap: wrap;
}

.partner-box {
  flex: 1 1 45%;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 12px;
  padding: 2rem;
  margin: 0.0rem auto 0;
  backdrop-filter: blur(6px);
  box-shadow: 0 0 16px rgba(255, 255, 255, 0.05);
  text-align: left;
  color: #ffffffcc;
}
.partner-title {
  font-size: 1.6rem;
  color: #ffffff;
  font-weight: 700;
  margin: 0 0 2.5rem 0;
  position: relative;
}

.partner-box p {
  font-size: 1.05rem;
  line-height: 1.6;
  margin-bottom: 1rem;
  font-weight: 300;
}

.partner-button {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.6rem 1.5rem;
  font-size: 1rem;
  font-weight: 500;
  color: black;
  background-color: #FE8113;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.partner-button:hover {
  background-color: #ffbb32;
}

/* Responsive */
@media (max-width: 900px) {  /* or 768px, typical mobile */
  .partner-columns {
    flex-direction: column;
    align-items: center;
  }

  .partner-box {
    width: 100%;
    margin-bottom: 2rem;
  }
}

/* Demo */

.demo-content {
  max-width: 600px;
  margin: auto;
  padding: 2rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: calc(100vh - 120px);
}

.demo-content .subtitle {
  margin-bottom: 2rem;
  font-size: 1.2rem;
  color: #ffffffcc;
  font-weight: 300;
}

.demo-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}

.demo-form input {
  padding: 0.6rem 1rem;
  font-size: 1rem;
  width: 100%;
  max-width: 300px;
  border-radius: 8px;
  border: 1px solid #555;
  background: #111;
  color: white;
  font-family: 'Space Grotesk', sans-serif;
}

.demo-form button {
  padding: 0.6rem 1.5rem;
  font-size: 1rem;
  font-weight: 500;
  color: black;
  background-color: #FE8113;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.demo-form button:hover {
  background-color: #ffbb32;
}

.error-message {
  color: #ff4444;
  font-size: 0.9rem;
  margin-top: 0.5rem;
}


/* Contact */

.contact-content {
  max-width: 800px;
  margin: auto;
  padding: 2rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: calc(100vh - 120px); /* subtract header height */
}


.contact-content .title {
  margin-bottom: 2.5rem;
}

.contact-links {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-links a {
  font-size: 1.3rem;
  font-weight: 500;
  color: #FE8113;
  text-decoration: none;
  transition: color 0.3s ease, transform 0.3s ease;
}

.contact-links a:hover {
  color: #ffffff;
  transform: translateY(-2px);
}
