/* Global */
* {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-family: Inter, Inter UI, Inter-UI, SF Pro Display, SF UI Text,
    Helvetica Neue, Helvetica, Arial, sans-serif;
}

html {
  scroll-behavior: smooth
}

body,
html {
  margin: 0;
  padding: 0;
}

/* Header */
.sticky-header {
  position: fixed;
  top: 0;
  width: 100%;
  background: white;
  padding-top: 10px;
  padding-bottom: 10px;
  /* box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.2); */
  /* box-shadow: 0 14px 20px -8px rgba(14, 12, 27, 0.05); */
  z-index: 1000;
  /* Ensures the header is always on top */
  transition: box-shadow 0.3s ease-in-out;
}

.header-shadow {
  /* box-shadow: 0 4px 2px -2px gray; */
  box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.5)
    /* Example shadow effect */
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;

  max-width: 1200px;
  /* Matches the main content max-width */
  margin: 0 auto;
  /* Centers the container */
  display: flex;
  /* Example layout: Adjust as needed for your design */
  align-items: center;
  /* Centers items vertically */
  justify-content: space-between;
  /* Example spacing: Adjust as needed */
}

.navigation {
  padding-right: 10px;
}

#header-logo {
  display: flex;
  align-items: center;
  cursor: pointer;
}

#header-logo img {
  height: 50px;
}

#header-logo div {
  font-weight: 500;
  font-size: 22px;
}

#header-button {
  display: flex;
  align-items: center;
  background: linear-gradient(white, white) padding-box,
    linear-gradient(to right, rgb(116, 152, 239), rgb(168, 88, 234)) border-box;
  border-radius: 50em;
  border: 4px solid transparent;
  cursor: pointer;
  padding-left: 8px;
  padding-right: 8px;
  padding-top: 4px;
  padding-bottom: 4px;
}

@media (max-width: 768px) {
  #header-logo {
    font-size: 14px;
  }

  #header-button {
    font-size: 12px;
  }
}

#download-icon {
  height: 22px;
}

.navigation a,
.mobile-menu-icon {
  text-decoration: none;
  margin-left: 20px;
  color: black;
}

.navigation {
  display: flex;
  align-items: center;
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  flex-direction: column;
  align-items: start;
  background-color: white;
  width: 100%;
  position: absolute;
  top: 70px;
  /* Adjust based on your header's height */
}

.mobile-menu a {
  padding: 10px 20px;
  text-decoration: none;
  width: 100%;
  display: block;
}

.mobile-menu-icon {
  display: none;
  /* Hide the mobile menu icon by default and display it in mobile view */
}

@media (max-width: 768px) {
  .navigation a {
    display: none;
  }

  .mobile-menu-icon {
    cursor: pointer;
    display: flex;
    align-items: center;
  }

  .mobile-menu-icon::after {
    background-image: url(./DownArrow.svg);
    content: "";
    display: inline-block;
    height: 15px;
    margin-left: 5px;
    width: 15px;
  }
}

/* Content */
#content {
  padding-top: 70px;
  max-width: 1200px;
  /* Set to your preferred max width */
  margin: 0 auto;
  /* This centers the container in the viewport */
}

section {
  border-radius: 1rem;
}

/* All Sections */
.section-title {
  font-size: 24px;
  font-weight: 500;
}

.section-content {
  display: flex;
  justify-content: space-between;
  /* This will be overridden for the product section */
  align-items: center;
  padding: 4rem;
}

.section-desc-emphasis {
  font-weight: 600;
}

.section-video-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.replay-button {
  font-size: 16px;
  width: 100px;
  border: none;
  height: 44px;
  display: block;
  background: none;
  cursor: pointer;
  color: rgb(116, 152, 239);
}

@media (max-width: 768px) {
  .section-content {
    font-size: 16px;
    flex-direction: column;
    padding: 1rem 0.1rem 1rem 0.1rem;
  }

  .section-title {
    font-size: 22px;
    text-align: center;
  }
}

/* Intro Section */
#section-intro .section-content {
  justify-content: center;
  /* Horizontally centers the content */
  align-items: center;
  /* Vertically centers the content */
  flex-direction: column;
  /* Stacks the title and additional content vertically */
  text-align: center;
  /* Ensures text within the divs is centered */
}

#intro-title {
  font-size: 30px;
  font-weight: 500;
}

#intro-tagline {
  font-size: 24px;
}

#intro-video {
  max-width: 764px;
}

@media (max-width: 768px) {
  #intro-title {
    font-size: 24px;
    font-weight: 500;
  }

  #intro-tagline {
    font-size: 18px;
  }

  #section-intro .section-content {
    padding: 0.1rem;
  }

  #intro-video {
    max-width: 100%;
  }
}

/* Non-Intro Section Shared */
.section-video {}

.section-desc {
  font-size: 18px;
  color: #333;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.6;
  padding-right: 1rem;
  padding-left: 1rem;
}

@media (max-width: 768px) {
  .section-video {
    max-width: 100%;
  }

  .section-desc {
    font-size: 16px;
  }

}

/* Section 1 */
#section-1 {
  background: whitesmoke;
}

#section-1-video {
  border-radius: 14px;
  max-width: 550px;
}

@media (max-width: 768px) {
  #section-1-video {
    border-radius: 14px;
    max-width: 100%;
  }
}

/* Section 2 */
#section-2 .section-content {
  justify-content: space-around;
}

/* Section 3 */
#section-3 {
  background: #333;
  color: white;
}

#section-3 .section-desc {
  color: white;
}

#section-3-video {
  border-radius: 14px;
  max-width: 340px;
}

/* Section 4 */
#section-4 .section-content {
  justify-content: space-around;
}

/* Get Recall Section */
#Get-Recall {
  background-color: whitesmoke;
}

#Get-Recall .section-content {
  justify-content: center;
  /* Horizontally centers the content */
  align-items: center;
  /* Vertically centers the content */
  flex-direction: column;
  /* Ensures text within the divs is centered */
  list-style: none;
}

#download-button {
  cursor: pointer;
}

/* Hightlight Navigation */
.highlighted {
  animation: highlightSection 3s;
  background-color: yellow;
  /* Example highlight color */
}

@keyframes highlightSection {
  from {
    background-color: yellow;
  }

  to {
    background-color: whitesmoke;
  }
}

/* Footer */
footer {
  margin-top: 2rem;
  border-top: 1px solid whitesmoke;
}

.footer-container {
  display: flex;
  margin: 0 auto;
  /* Centers the container */
  justify-content: space-between;
  max-width: 1200px;
}

.footer-section-lists {
  display: flex;
}

.footer-section-list {
  list-style: none;
  text-align: left;
}

.footer-section-title {
  color: #000;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 28px;
}

.footer-section-item {
  margin-bottom: 20px;
}

.footer-section-link {
  color: #333;
  font-size: 16px;
  font-weight: 400;
  text-decoration: none;
}

#vy-logo-img {
  padding: 20px;
  max-height: 100px;
  width: auto;
  height: auto;
}