:root {
  --primary-color: #000000;
  --secondary-color: #267fdc;
  --background-color: #f8f9fa;
  --text-color: #212529;
}

*,
*::after,
*::before {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

body {
  font-family: "Inter", Tahoma, Geneva, Verdana, sans-serif;
  background-color: var(--background-color);
  color: var(--text-color);
  line-height: 1.6;
  min-height: 100vh;
}

.flashscreen {
  position: relative;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: white;
  background-image: url("../assets/images/trail-flashscreen.png");
  background-size: cover;
  z-index: 9998;
}

.whitescreen {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: white;
  z-index: 1;
  transform: translateX(100%);
  /* transition: transform 0.5s ease; */
}

a {
  text-decoration: none;
  display: block;
  padding: 10px;
}

header {
  background-color: var(--primary-color);
  color: #fff;
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo a {
  color: white;
  font-size: 1.5em;
  display: flex;
  align-items: center;
  margin-inline: 20px;
}

.logo img {
  height: 40px;
  margin-right: 10px;
}

nav {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.hamburger {
  display: flex;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  margin-right: 20px;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: white;
  margin: 3px 0;
  transition: 0.3s;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

.nav-links {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: var(--primary-color);
  display: none;
  flex-direction: column;
  padding: 0;
  margin: 0;
  list-style: none;
  z-index: 1;
}

.nav-links.active {
  display: flex;
}

.nav-links li {
  text-align: center;
  padding: 10px 0;
}

.nav-links a {
  color: white;
}

.current-page {
  transform: rotate(90deg);
  margin: 0 20px -10px 0;
}

.welcome-text,
.social-text {
  padding-inline: 20px;
  font-size: 1.2em;
}

img {
  max-width: 100%;
  height: auto;
}

.app-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 20px;
  margin: 20px;
}

.btn {
  background-color: var(--secondary-color);
  color: #fff;
  text-align: center;
  font-size: 1.2em;
  border: none;
  border-radius: 5px;
  width: 100%;
  padding: 10px 20px;
  cursor: pointer;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  transition: background-color 0.3s ease;
}

.hashtag-text {
  text-align: center;
  font-size: 1.2em;
  margin-top: 20px;
  background-color: #f0f0f0;
  border-radius: 4px;
  padding: 2px 5px;
}

.social-icons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: 10px;
}

.home-link,
.home-link a {
  text-align: left;
  margin-top: -10px;
}

.row1,
.row3 {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin: 20px;
}

.row3 img {
  margin: 20px 0;
}

.instructions {
  list-style: none;
  padding: 0;
  margin: 20px;
}

.pub-list {
  max-width: 100dvw;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 20px;
}

.pub-list.reverse {
  flex-direction: column-reverse;
}

.pub-list div {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
  border-radius: 5px;
  background-color: #e9ecef;
  font-weight: bold;
}

.pub-item,
.pub,
.pub-btns {
  display: flex;
  align-items: center;
  gap: 10px;
  background-color: #e9ecef;
  border-radius: 5px;
  margin: 10px;
}

.pub-item {
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.pub-item img {
  flex: 2;
  width: 125px;
  height: 100px;
  border-radius: 5px;
}

.pub-btns {
  font-size: smaller;
}

.pub-btns a {
  background-color: var(--secondary-color);
  color: #fff;
  padding: 5px 10px;
  border-radius: 5px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.page-header {
  text-align: center;
  margin: 20px;
}

.privacy-policy {
  max-width: 800px;
  margin: 20px auto;
  padding: 20px;
  background-color: #e9ecef;
  border-radius: 5px;
}

footer {
  background-color: var(--primary-color);
  color: #fff;
  padding: 20px;
  margin-top: 40px;
  text-align: center;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-content p {
  margin: 10px 0;
  padding: 0;
}

.footer-content a {
  color: #fff;
  text-decoration: underline;
  display: inline;
  padding: 0;
}

.footer-content a:hover {
  opacity: 0.8;
}
