/* General Styles */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  background: #FFFFFF;
  color: #000000;
}

section {
  padding: 2rem 1rem;
  max-width: 900px;
  margin: auto;
}

/* Sticky Header */
.sticky-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: #FFFFFF;
}

/* Logo Bar (Three-Part Layout) */
.logo-bar {
  display: flex;
  align-items: stretch; /* Ensures all parts stretch to full height */
  width: 100%;
  height: 240px;
  background: #FFFFFF;
  overflow: hidden;
  padding: 0;
  margin: 0;
}

.logo-side {
  flex: 1;
  background-repeat: repeat-x;
  background-position: center center;
  background-size: auto 100%;
  padding: 0;
  margin: 0;
}

.logo-side.left {
  background-image: url('header/left-stripes.png');
}

.logo-side.right {
  background-image: url('header/right-stripes.png');
}

.logo-center {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  margin: 0;
  max-width: 100%;
}

.logo-center img {
  height: auto;
  width: 100%;
  max-width: 100%;
  display: block;
  margin: 0;
  padding: 0;
  vertical-align: middle;
}


/* Navigation Bar */
.nav-bar {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1rem;
  position: relative;
  background-color: #FFFFFF;
}

.nav-links {
  position: absolute;
  right: 1rem;
  top: -10%;
  transform: translateY(-50%);
  display: flex;
  gap: 1rem;
}

.nav-links a {
  color: #ff0000;
  text-decoration: none;
  font-weight: bold;
  white-space: nowrap;
}

.nav-links a:hover {
  color: #000000;
  text-decoration: none;
}

/* Vimeo Video */
.video-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  max-width: 900px;
  margin-top: -20%;
  margin-bottom: -20%;
}

.video-container iframe {
  position: absolute;
  top: -20px;
  left: 0;
  width: 100%;
  height: 100%;
}

/* Footer */
.footer {
  text-align: center;
  padding: 1rem;
  background: #FFFFFF;
  font-size: 0.9rem;
  color: #787878;
}

.footer a {
  color: #787878;
  text-decoration: none;
  margin: 0 0.5rem;
}

.footer a:hover {
  color: #000000;
  text-decoration: none;
}
