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

body, html {
  width: 100%;
  height: 100%;
  font-family: Arial, sans-serif;
  overflow: hidden;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #faf60ff8;
  color: #000000;
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
}

header .logo h1 {
  font-size: 20px;
}

nav .nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
}

nav .nav-links li a {
  color: #000000;
  text-decoration: none;
  font-weight: bold;
}

nav .nav-links li a.active {
  border-bottom: 2px solid #000000;
}

.hamburger {
  display: none;
  font-size: 24px;
  cursor: pointer;
  color: #000000;
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 60px;
    right: 20px;
    background: #faf60ff8;
    flex-direction: column;
    gap: 10px;
    padding: 10px;
    border: 1px solid #000000;
  }

  .nav-links.open {
    display: flex;
  }

  .hamburger {
    display: block;
  }
}

main {
  display: flex;
  flex-direction: row;
  height: 100vh;
  margin-top: 80px; /* offset for fixed header */
  overflow-x: auto;
  scroll-behavior: smooth;
}

section {
  color: #faf60ff8;
  min-width: 100vw;
  height: calc(100vh - 80px); /* adjust for header */
  padding: 40px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-color: #000000;
  border-right: 1px solid #000000;
}

section:nth-child(even) {
  background-color: #000000;
}

/* Unvisited link */
a:link {
  color: #faf60ff8; /* Light blue */
}

/* Visited link */
a:visited {
  color: #1ab415; /* Purple, or whatever you prefer */
}

/* Mouse over link */
a:hover {
  color: #ff4081; /* Pink or highlight */
}

/* Selected link */
a:active {
  color: #e91e63;
}

.logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}

.site-logo {
  width: 100px; /* adjust as needed */
  height: auto;
  border-radius: 50%;
  object-fit: cover;
}

.tagline {
  font-size: 14px;
  color: #000000;
  font-style: italic;
  font-weight: bold;
  margin-top: 5px;
  display: block;
  width: 100%;
  text-align: center;
}


.youtube-icon {
  width: 40px;        /* Adjust the size as needed */
  height: auto;
  vertical-align: middle;
  margin-right: 5px;  /* Adds space between icon and link text */
}

.email-icon {
  width: 30px;        /* Adjust the size as needed */
  height: auto;
  vertical-align: middle;
  margin-right: 5px;  /* Adds space between icon and link text */
}