/* #1b252e (Dark Blue) */
/* #2a957c (Pale Green) */
/* #fffaef (Off-White)  */
 
 
 :root {
  --bg: #fffaf0;
  --bg-alt: #202530;
  --text-body: #202530;
  --text-header: #202530;
  --text-alt: #fffaf0;
  --primary: #202530;
  --hover: #fffaf0;
  --br: 30px;
  --br-alt: 15px;
}


*{
  padding: 0;
  margin: 0;
}


body {
    background-color: var(--bg);
    color: var(--text-body);
    font-family: "zalando-regular","Segoe UI", Helvetica, Arial, sans-serif;
}

h1 {
    color: var(--text-body);
    font-size: 3rem;
}

h2 {
    color: var(--text-header);
    font-size: 2rem;
}

a {
  text-decoration: none;
  color: var(--text-body);
}

a, button, input, textarea, select, label {
  touch-action: manipulation;
}

img {
  -webkit-touch-callout: none; /* iOS: disables save image menu */
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;

  -webkit-user-drag: none; /* prevents drag ghost image */

  touch-action: manipulation; /* prevents unwanted gestures */
}

small {
    display: flex;
    justify-content: center;
    padding: 2rem;
}

#main {
    max-width: 1000px;
    margin: 0 auto;
}


.skip-to-main-content-link {
  position: absolute;
  left: -9999px;
  z-index: 999;
  padding: 1em;
  background-color: var(--primary);
  color: var(--text-alt);
  opacity: 0;
}
.skip-to-main-content-link:focus {
  left: 50%;
  transform: translateX(-50%);
  opacity: 1;
}


/* Style the navigation menu */
.site-header {
  top: 0;
  position: sticky;
  z-index: 9999;
}
.topnav {
  overflow: hidden;
}

/* Hide the links inside the navigation menu (except for logo/home) */
.topnav #myLinks {
  display: none;
  background-color: var(--primary);

  max-height: 100dvh;

  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
}

.topnav #myLinks a {
  color: var(--text-alt);
}

#myLinks.show {
  display: block;

}


/* Style navigation menu links */
.topnav a {
  color: var(--text-alt);
  padding: 1.5rem;
  text-decoration: none;
  font-size: 1rem;
  display: block;
  background-color: var(--primary);
  
}

.topnav a.active {
  background-color: var(--bg);
  color: var(--primary);}

/* Style the hamburger menu */
.topnav a.icon {
  background: var(--primary);
  color: var(--text-alt);
  display: block;
  position: absolute;
  right: 0;
  top: 0;
}

/* Add a grey background color on mouse-over */
/* .topnav a:hover {
  background-color: #ddd;
  color: black;
} */

/* Style the active link (or home/logo) */
.active {
  background-color: var(--bg);
  color: var(--primary);
}



/* Reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
  will-change: opacity, transform;
}
.reveal.active {
  opacity: 1;
  transform: translateY(0);
}




.hero-content {
  padding: 10rem 2rem 10rem 2rem;
}

.hero-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero-text p {
    margin-top: 2rem;
}


.intro-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2rem;
}

.intro-image picture {
    display: flex;
    justify-content: center;
}

.intro-image picture img {
  aspect-ratio: 2/3;
  max-width: 100%;
  overflow: hidden;
  object-fit: cover;
  object-position: 10% 100%;
}

.intro-text {
  display: flex;
  flex-direction: column;
  margin-top: 2rem;
  margin-bottom: 2rem;
  gap: 2rem;
}



.feature-container {
  display: flex;
  flex-direction: column;
}

.display-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 2rem;
}

.display-image picture {
    display: flex;
    justify-content: center;
}

.display-image picture img {
    aspect-ratio: 1/1;
    width: 100%;
    overflow: hidden;
    object-fit: cover;
    /* object-position: 10% 100%; */
}

.display-text h2 {
    font-size: 1rem;
}

.cta-container {
  display: flex;
  flex-direction: column;
  padding: 2rem;
  justify-content: center;
  align-items: center;
  gap: 2rem;
}

.cta-link {
  width: 100%;
  display: flex;
  justify-content: center;
}

.cta-link a {
  color: var(--bg);
  border: 2px solid var(--primary);
  background-color: var(--primary);
  padding: 1rem;
  border-radius: var(--br);
  transition: ease-in-out 0.15s;
  text-align: center;

  min-width: 10rem;
  width: 25%;
  max-width: 16rem;
}

.cta-link a:hover {
  color: var(--primary);
  background-color: var(--bg);
  border: 2px solid var(--primary);
}

.site-footer {

  border-top: 2px solid var(--primary);


  background-color: var(--primary);
  color: var(--text-alt);
  margin-top: 4rem;
}

.footer-container {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  padding: 2rem;
  gap: 1rem;
}

.site-footer h2 {
  color: var(--text-alt);
}

.site-footer .featured-links a {
  color: var(--text-alt);
}

.site-footer .social-links {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  font-size: 2rem;
}

.site-footer .social-links a {
  color: var(--text-alt); 
}




@media screen and (min-width: 1025px) {
  .topnav #myLinks {
    display: flex;
    flex-direction: row;
  }

  .topnav a.icon {
    display: none;
  }
/* NEED TO FIX MENU BUTTON WHEN EXPANDING AND ENLARGIN SCREEN - LOGO CELL REMAINS BLUE INSTEAD OF bg */
  /* .topnav a.active  {
    background-color: var(--bg) !important;
  } */

  .intro-image picture img {
    aspect-ratio: auto;
    max-width: 100%;
    overflow: hidden;
    object-fit: cover;
    /* object-position: 10% 100%; */
}

  .feature-container {
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
  }
  .display-container {
    flex: 1 1 calc(100% - 700px);
  }
}