/* Base styles */
.short-description {
  text-align: center;
  max-width: 480px;
  margin: 0 auto;
  font-size: 1em;
  font-variant: normal;
  letter-spacing: normal;
  font-weight: 400;
  text-transform: none !important;
  color: #eaeaea;
  line-height: 1.5;
  font-family: "Montserrat", sans-serif;
}

.flex-column {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 260px;
  gap: 2.2em;
  padding: 0 1em;
}

.banner-name {
  margin-bottom: 0;
  margin-top: 0.5em;
  letter-spacing: 0.15em;
}

@media (max-width: 600px) {
  .short-description {
    font-size: 0.95em;
  }
}

/* X social icon */
.icon.brands.fa-x::before {
  /* either embed the glyph directly… */
  content: "𝕏";
  /* …or use the Unicode code point: */
  /* content: "\1D54F"; */
  font-family: sans-serif;
  /* pick a font that has the 𝕏 glyph */
  font-size: 1.2em;
  /* tweak size to match your other icons */
  line-height: 1;
  display: inline-block;
}

/* Boxed section styling for index page */
body.landing {
  /* Fixed blurred blue background - only for index page */
  background: #1a3a5e;
  background-attachment: fixed;
}

body.landing #page-wrapper {
  /* Override the existing background with a blurred blue gradient */
  background-image: linear-gradient(to bottom, rgba(26, 58, 94, 0.8), rgba(26, 58, 94, 0.9));
  background-attachment: fixed;
  background-size: cover;
  padding: 2em 0;
}

/* Apply styles to sections to make them boxed */
body.landing section {
  margin: 2em auto;
  max-width: 90%;
  border-radius: 15px;
  background-color: rgba(46, 56, 66, 0.8);
  /* Slightly transparent dark background */
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  overflow: hidden;
}

/* Banner section specific styling */
body.landing #banner {
  background-color: rgba(46, 56, 66, 0.8);
  padding: 2em;
  margin-top: 2em;
}

/* Two section styling */
body.landing #two {
  padding: 1em 0;
}

body.landing #two .spotlight {
  background-color: rgba(46, 56, 66, 0.8);
  margin: 2em auto;
  border-radius: 15px;
  overflow: hidden;
  max-width: 90%;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}

body.landing #two .spotlight:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  background-color: rgba(46, 56, 66, 0.9);
}

/* CTA section specific styling */
body.landing #cta {
  background-color: rgba(46, 56, 66, 0.8);
  padding: 2em;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}

body.landing #cta:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  background-color: rgba(46, 56, 66, 0.9);
}

/* Footer styling */
body.landing #footer {
  background-color: rgba(46, 56, 66, 0.9);
  margin-top: 2em;
  border-radius: 15px;
  max-width: 90%;
  margin-left: auto;
  margin-right: auto;
  padding: 1.5em;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}

body.landing #footer:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  background-color: rgba(46, 56, 66, 1);
}

/* Copyright text styling */
.copyright {
  margin-top: 1.5em;
  text-align: center;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9em;
  padding-top: 0.5em;
}

.copyright p {
  margin: 0;
  line-height: 1.5;
}

/* Responsive adjustments */
@media screen and (max-width: 736px) {
  body.landing section {
    max-width: 95%;
    padding: 1em;
  }

  body.landing #two .spotlight {
    max-width: 95%;
  }

  body.landing #footer {
    max-width: 95%;
  }
}