

/*

https://paletton.com/#uid=73J0u0kwi++bu++hX++++rd++kX
https://paletton.com/#uid=52V0u0kw0w0jyC+oRxVy4oIDfjr
https://paletton.com/#uid=52V0u0kw0w03EN0kaxSEymnUtcJ

Interplanetary Robot League will be green.

*/

/* Variables */

:root {
    --primary: #00BD39;
    --primaryLight: #C8E2D0;
    --primaryLighter: #47C06C;
    --primaryDarker: #008428;
    --primaryDark: #004B17;
    --secondary: #057D9F;
    --secondaryLight: #BDD0D5;
    --secondaryLighter: #408EA4;
    --secondaryDarker: #03576F;
    --secondaryDark: #00313F;
    --tertiary: #8BEA00;
    --tertiaryLight: #EAF6DA;
    --tertiaryLighter: #AFEB57;
    --tertiaryDarker: #61A400;
    --tertiaryDark: #375D00;
}


/* / Variables */



/* High level */

.bg-dark {

    background-color: var(--primaryDark) !important;

    /*
    --bs-bg-opacity: 1;
    background-color: rgba(var(--bs-dark-rgb),var(--bs-bg-opacity)) !important;
    */
}
.bg-light {
    background-color: var(--primaryLight) !important;
}


/* / High level */



/* Navbar section */

/* Smooth hover effect */
.nav-link {
    transition: color 0.3s ease, transform 0.2s ease;
}

.nav-link:hover {
    color: #0d6efd !important;
    transform: translateY(-2px);
}

/* Brand styling */
.navbar-brand {
  letter-spacing: 1px;
}

/* Button hover polish */
.btn-outline-light:hover {
  background-color: #0d6efd;
  border-color: #0d6efd;
  color: #fff;
}

/* Optional: sticky navbar */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
}


/* / Navbar section */


/* Hero section */

/* Hero section layout */
.hero {
  position: relative;
  height: 90vh;
  overflow: hidden;
}

/* Video styling */
.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: 1;
}

/*
.hero-video {
    filter: brightness(50%);
}
*/

/* Dark overlay for contrast */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2;
    pointer-events: none
}

/* Content sits above video */
.hero-content {
  position: relative;
  z-index: 3;
  top: 50%;
  transform: translateY(-50%);
}

/* Optional: smoother text animation */
.hero-content h1,
.hero-content p {
  animation: fadeInUp 1s ease forwards;
}

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

/* / Hero section */


/* Features section */

.feature-card {
  background: #ffffff;
  border-radius: 12px;
  transition: all 0.3s ease;
  border: 1px solid #eee;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.feature-icon {
  font-size: 2.5rem;
  color: #0d6efd; /* Bootstrap primary */
}


/* / Features section */


/* Call to Action section */

#cta {
    background: var(--primaryLight);

    /*background: linear-gradient(135deg, var(--secondaryDark) 0%, var(--secondaryLight) 100%);*/

    /*background: linear-gradient(135deg, #0d6efd 0%, #6610f2 100%);
    border-radius: 12px;
    margin-top: 2rem;*/
}

#cta .btn {
    padding: 0.75rem 2rem;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

#cta .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

/* / Call to Action section */


/* Footer section */

footer a:hover {
    color: #f8f9fa;
    text-decoration: underline;
}

footer p, footer a {
    font-size: 0.9rem;
}

footer i {
    margin-right: 8px;
}

/* / Footer section */








