/* General */
/* --------------------- */

:root {
  --white: #fff;
   --gray-2: #a0a3ad;
  --line: #3d404a;
  --orange: #d94a01;
}
html {
  box-sizing: border-box;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}
*,
:after,
:before {
  box-sizing: inherit;
}
body {
  margin: 0;
  color: var(--gray-2);
  font-family: museo-sans, sans-serif;
  background: #111217;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
}
a {
  text-decoration: underline dotted #fe0000;
  text-decoration-thickness: 3px;
  color: inherit;
}
a:active,
a:hover {
  outline: 0;
}
ul {
  padding: 0;
}
h1 {
  margin-bottom: 24px;
}
a.button-cta {
  background: #0e2438;
  border-radius: 11px;
  padding: 20px 45px;
  color: #ffffff;
  display: inline-block;
  font: normal bold 26px/1 "Open Sans", sans-serif;
  text-align: center;
  text-decoration: none;
  transition: background 0.3s, transform 0.3s;
}
a.button-cta.disabled {
  pointer-events: none;
  background-color: #bdc3c7;
  border-color: #bdc3c7;
}
a.button-cta:hover {
  background: #0c1f2c;
  transform: translateY(-3px);
}
a.button-cta:active {
  transform: translateY(1px);
}
.logo {
  width: 800px;
  max-width: 100%;
  height: auto;
  align-self: center;
}
.logo video {
  max-width: 100%;
}
.text-sm {
  font-family: 'museo-sans', sans-serif;;
  font-size: 16px;
  line-height: 24px;
}
.text-ml {
  font-family: 'museo-sans', sans-serif;;
  font-size: 24px;
  line-height: 38px;
}
.text-lg {
  font-family: 'museo-sans', sans-serif;;
  font-size: 30px;
  line-height: 38px;
}
.text-xl {
  font-family: 'museo-sans', sans-serif;;
  font-size: 60px;
  line-height: 68px;
}
.text-center {
  text-align: center;
}
.text-primary {
  color: var(--white);
}
.text-secondary {
  color: var(--gray-2);
}
.top-divider {
  position: relative;
}
.top-divider::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  display: block;
  height: 1px;
  background: var(--line);
}
.underline {
  border-bottom: 2px solid var(--orange);
}
.wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  /*
  background-image: linear-gradient(to bottom, rgba(0,0,0,0), rgba(0,0,0,1)), url('../images/bg-landing-page.jpeg');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top center;
  background-color: black;
  */
  background: radial-gradient(ellipse at bottom, #1B2735 0%, #090A0F 100%);
}
.container {
  padding: 25px 24px 0px 24px;
}

/* Header */
/* --------------------- */
.main .header {
  display: block;
  text-align: right;
  margin-bottom: 1rem;
}

.header a {
  text-decoration: none;
  text-shadow: 1px 0 10px rgb(51, 152, 219);
}

/* Stars  */
/* --------------------- */
#stars, #stars2, #stars3 {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;  
}
#stars {
  width: 1px;
  height: 1px;
  background: transparent;
  box-shadow: 
    50px 50px #FFF, 
    400px 300px #FFF,
    700px 650px #FFF,
    1000px 900px #FFF,
    1300px 1150px #FFF,
    1700px 1350px #FFF,
    2050px 1600px #FFF,
    2350px 1850px #FFF,
    2650px 2100px #FFF;
  animation: animStar 100s linear infinite;
}

#stars:after {
  content: " ";
  position: absolute;
  top: 1000px;
  width: 1px;
  height: 1px;
  background: transparent;
  box-shadow: 
  50px 50px #FFF, 
  400px 300px #FFF,
  700px 650px #FFF,
  1000px 900px #FFF,
  1300px 1150px #FFF,
  1700px 1350px #FFF,
  2050px 1600px #FFF,
  2350px 1850px #FFF,
  2650px 2100px #FFF;
}

#stars2 {
  width: 2px;
  height: 2px;
  background: transparent;
  box-shadow: 
  150px 150px #FFF, 
  550px 450px #FFF,
  850px 750px #FFF,
  1150px 1000px #FFF,
  1450px 1250px #FFF,
  1850px 1450px #FFF,
  2200px 1700px #FFF,
  2500px 1950px #FFF,
  2800px 2200px #FFF;
  animation: animStar 170s linear infinite;
}

#stars2:after {
  content: " ";
  position: absolute;
  top: 3000px;
  width: 2px;
  height: 2px;
  background: transparent;
  box-shadow: 
  150px 150px #FFF, 
  550px 450px #FFF,
  850px 750px #FFF,
  1150px 1000px #FFF,
  1450px 1250px #FFF,
  1850px 1450px #FFF,
  2200px 1700px #FFF,
  2500px 1950px #FFF,
  2800px 2200px #FFF;
}

#stars3 {
  width: 3px;
  height: 3px;
  background: transparent;
  box-shadow:         
  250px 310px #FFF, 
  450px 550px #FFF,
  150px 850px #FFF,
  1250px 1100px #FFF,
  1550px 1350px #FFF,
  1950px 1550px #FFF,
  2300px 1800px #FFF,
  2600px 2050px #FFF,
  2900px 2300px #FFF;
  animation: animStar 258s linear infinite;
}

#stars3:after {
  content: " ";
  position: absolute;
  top: 3500px;
  width: 3px;
  height: 3px;
  background: transparent;
  box-shadow:   
  250px 310px #FFF, 
  450px 550px #FFF,
  950px 850px #FFF,
  1250px 1100px #FFF,
  1550px 1350px #FFF,
  1950px 1550px #FFF,
  2300px 1800px #FFF,
  2600px 2050px #FFF,
  2900px 2300px #FFF;
}

@keyframes animStar {
  from {
    transform: translateY(0px);
  }
  to {
    transform: translateY(-2000px);
  }
}
@media (max-width: 767px) {
  #stars {
      box-shadow: 
      30px 130px #FFF,
      55px 1130px #FFF,  
      22px 2130px #FFF,
      222px 3330px #FFF, 
      412px 2930px #FFF,   
      200px 550px #FFF,
      110px 280px #FFF,
      90px 4190px #FFF,
      200px 1150px #FFF,
      80px 790px #FFF,
      65px 1530px #FFF,
      132px 2730px #FFF,
      322px 3930px #FFF,
      422px 4730px #FFF,
      210px 5150px #FFF,
      310px 540px #FFF,
      290px 2490px #FFF;
  }

  #stars2 {
      box-shadow: 
      100px 600px #FFF, 
      320px 111px #FFF, 
      160px 45px #FFF,
      210px 750px #FFF,
      125px 90px #FFF,
      150px 130px #FFF,
      270px 220px #FFF,
      280px 490px #FFF,
      375px 1290px #FFF,
      165px 2490px #FFF,
      215px 3590px #FFF,
      235px 4790px #FFF,
      155px 5190px #FFF,
      175px 2390px #FFF;
  }

  #stars3 {
      width: 4px;
      height: 4px;
      box-shadow: 
      270px 470px #FFF, 
      370px 770px #FFF,
      350px 1770px #FFF,
      222px 3170px #FFF,
      90px 55px #FFF,
      170px 160px #FFF,
      290px 260px #FFF,
      390px 390px #FFF,
      190px 990px #FFF,
      350px 2070px #FFF,
      222px 3270px #FFF,
      290px 4370px #FFF,
      390px 5170px #FFF;
  }
}
/* Main */
/* --------------------- */
.main {
  flex-grow: 1;
  flex: 1 0 auto;
  position: relative;

}
.title, .content, .header {
  display: flex;
  flex-direction: column;
  height: auto;
  width: 938px;
  max-width: 100%;
  margin: 0 auto;
  padding-top: 20px;
}
.subtitle {
  flex: 1;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  margin: 3rem auto 2rem auto;
}

/* Footer */
/* --------------------- */
.footer {
  padding-top: 48px;
  flex-shrink: 0;
}
.footer-wrapper {
  position: relative;
  padding: 8px 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  width: 1120px;
  max-width: 95%;
  margin: 0 auto;
}
.footer-wrapper > div {
  width: 33%;
}
.footer a {
  text-decoration: none;
}
.footer .links {
  display: flex;
  color: var(--gray-2);
}
.footer .copyright {
  color: var(--gray-2);
}
.footer .links ul {
  flex: none;
  width: 100%;
  display: inline-flex;
  gap: 24px;
  justify-content: center;
  list-style: none;
  padding: 0;
}
.footer .socials {
  text-align: right;
}
.footer .socials svg {
  width: 21px;
  height: 21px;
  fill: var(--gray-2);
}
.footer a:hover, .footer a svg:hover {
  color: #fff;
  transition: .25s ease;
  fill: #fff;
}
.footer .socials li {
  display: inline-flex;
}
.footer .socials li + li {
  margin-left: 10px;
}
/* Gallery Mosaic Grid */
/* --------------------- */
.gallery {
  display: grid;
  grid-gap: 10px; /* Adjust the gap between images */
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); /* Creates a flexible grid layout */
  padding: 10px;
}

.gallery a {
  display: block;
  overflow: hidden;
  position: relative;
}

.gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* This will ensure images cover the grid item fully */
  transition: transform 0.3s ease-in-out;
}

/* Optional: Scale images on hover for a nice effect */
.gallery a:hover img {
  transform: scale(1.05);
}

/* Media Queries */
/* --------------------- */

@media screen and (max-width: 942px) {
  .footer-wrapper {
    flex-direction: column;
    justify-items: center;
    padding-top: 20px;
  }
  .text-lg {
    font-size: 22px;
    line-height: 28px;
  }
  .text-xl {
    font-size: 40px;
    line-height: 44px;;
  }
  .footer-wrapper > div {
    width: unset;
  }
  .footer .copyright, .footer .links {
    margin-bottom: 20px;
  }
}
