/* Basic Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

@font-face {
  font-family: "MavenPro";
  src: url("assets/fonts/MavenPro-Regular.woff2") format("woff2"),
    url("assets/fonts/MavenPro-Regular.woff") format("woff"),
    url("assets/fonts/MavenPro-Regular.ttf") format("truetype");
  font-style: normal;
}

@font-face {
  font-family: "MavenProSemibold";
  src: url("assets/fonts/MavenPro-SemiBold.woff2") format("woff2"),
    url("assets/fonts/MavenPro-SemiBold.woff") format("woff"),
    url("assets/fonts/MavenPro-SemiBold.ttf") format("truetype");
  font-style: normal;
}

.logo-wrapper {
  text-align: center;
  margin-bottom: 20px; /* space between logo and container */
}

body {
  font-family: "MavenPro", sans-serif;
  font-size: 16px;
  line-height: 24px;
  color: #333;
  background-color: #f1efea;
  padding: 20px;
}

.container {
  max-width: 900px;
  margin: 0 auto; /* Center the container */
  background-color: #fff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  text-align: center; /* Center content within the container */
}

header {
  margin-top: 20px;
  margin-bottom: 20px;
  padding-bottom: 20px;
}

.logo {
  max-width: 200px; /* Adjust as needed */
  height: auto;
  margin-bottom: 15px;
}

header h1 {
  font-size: 1.8em;
  font-family: "MavenPro", sans-serif;
  color: rgba(255, 90, 6, 1);
}

section {
  margin-bottom: 40px;
}

.intro p {
  margin-bottom: 15px;
  text-align: left; /* Align intro text left for readability */
  max-width: 700px; /* Limit width for readability */
  margin-left: auto;
  margin-right: auto;
}

.buttons {
  margin-top: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap; /* Allow buttons to wrap on smaller screens */
}

.buttons a img {
  height: 50px; /* Adjust button image height */
  width: auto;
  vertical-align: middle;
}

.button-web {
  display: inline-block;
  background-color: #fff;
  color: rgba(255, 90, 6, 1); /* White label */
  padding: 10px 25px;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: background-color 0.3s ease;
  border: 1px solid rgba(255, 90, 6, 1);
  height: 50px; /* Match height of image buttons */
  line-height: 26px; /* Vertically center text */
}

.button-web:hover {
  background-color: #f1efea;
}

.screenshots h2,
.features h2,
.video h2 {
  margin-bottom: 20px;
  color: rgba(5, 51, 79, 1);
}

.screenshot-gallery {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.screenshot-gallery a {
  cursor: pointer;
}

.screenshot-gallery img {
  max-height: 300px; /* Limit screenshot height */
  width: auto;
  /* border: 1px solid #ddd; */
  border-radius: 4px;
  transition: transform 0.3s ease;
  display: inline-block !important;
}

.screenshot-gallery img:hover {
  transform: scale(1.03);
}

.features ul {
  list-style: disc; /* Use standard bullets */
  padding-left: 40px; /* Indent list */
  text-align: left; /* Align list items left */
  max-width: 700px; /* Limit width for readability */
  margin-left: auto;
  margin-right: auto;
}

.features li {
  margin-bottom: 10px;
}

.link-highlight {
  text-decoration: underline;
  text-decoration-color: #6e5e5e;
  color: #000;
}

.video-placeholder {
  background-color: #f1efea;
  padding: 20px;
  border-radius: 5px;
  color: #777;
  font-style: italic;
  max-width: 600px;
  margin: 0 auto;
}

.faq {
  text-align: left; /* Align FAQ content left */
  max-width: 700px; /* Limit width for readability */
  margin-left: auto;
  margin-right: auto;
}

.faq details {
  border: 1px solid #b8b8b8;
  border-radius: 4px;
  margin-bottom: 10px;
  padding: 15px;
}

.faq summary {
  font-weight: bolder;
  cursor: pointer;
  list-style: none; /* Remove default marker */
  position: relative;
  padding-right: 25px; /* Space for custom marker */
  color: #333;
}

.faq summary::-webkit-details-marker {
  display: none; /* Hide default marker in Chrome/Safari */
}

.faq summary::after {
  content: "+"; /* Custom marker */
  position: absolute;
  right: 0;
  top: 0;
  font-size: 1.2em;
  font-weight: normal;
  color: #333;
}

.faq details[open] summary::after {
  content: "−"; /* Change marker when open */
}

.faq details p {
  margin-top: 10px;
  padding-left: 15px; /* Indent answer */
  color: #333;
}

.faq h2 {
  margin-bottom: 20px;
  color: #333;
}

footer {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid #eee;
  font-size: 0.9em;
  color: #777;
}

/* SimpleLightbox custom styling */
.sl-overlay {
  background-color: rgba(0, 0, 0, 0.8);
}

.sl-wrapper .sl-close,
.sl-wrapper .sl-navigation button {
  color: #fff;
}

.sl-wrapper .sl-counter {
  color: #fff;
}

/* Responsive Design */
@media (max-width: 768px) {
  .container {
    padding: 20px;
  }

  header h1 {
    font-size: 1.6em;
  }

  .buttons {
    flex-direction: column; /* Stack buttons vertically */
    align-items: center;
  }

  .screenshot-gallery {
    flex-direction: column;
    align-items: center;
  }

  .screenshot-gallery img {
    max-width: 80%;
    height: auto;
  }
}

@media (max-width: 480px) {
  body {
    padding: 10px;
  }

  .container {
    padding: 15px;
  }

  header h1 {
    font-size: 1.4em;
  }

  .logo {
    max-width: 150px;
  }

  .buttons a,
  .button-web {
    height: 45px;
    font-size: 0.9em;
    line-height: 25px;
  }

  .features ul {
    padding-left: 20px;
  }

  .faq summary {
    padding-right: 20px;
  }
}

.blue-wrapper {
  /* background-color:  rgb(0, 132, 188); */
  background-color: #e5ddd6;
  padding: 20px;

  .link-highlight {
    text-decoration-color: #333;
    color: #333;
  }
}
.blue-wrapper-top {
  align-items: stretch;
  background-color: rgba(0, 0, 0, 0);
  border: 0 solid black;
  box-sizing: border-box;
  display: flex;
  flex-basis: auto;
  flex-direction: column;
  flex-shrink: 0;
  list-style: none;
  margin: 0px;
  min-height: 0px;
  min-width: 0px;
  padding: 0px;
  position: relative;
  text-decoration: none;
  z-index: 0;
}

.blue-wrapper-bottom {
  align-items: stretch;
  background-color: rgba(0, 0, 0, 0);
  border: 0 solid black;
  box-sizing: border-box;
  display: flex;
  flex-basis: auto;
  flex-direction: column;
  flex-shrink: 0;
  list-style: none;
  margin: 0px;
  min-height: 0px;
  min-width: 0px;
  padding: 0px;
  position: relative;
  text-decoration: none;
  z-index: 0;
}

.blue-wrapper-top-holder {
  position: absolute;
  height: 18px;
  width: 100%;
  bottom: 0px;
}

.blue-wrapper-bottom-holder {
  position: absolute;
  height: 18px;
  width: 100%;
  top: -5px;
}
