/* General Reset and Font Setup */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Barlow', sans-serif;
  background-color: #000;
  color: #fff;
  overflow-x: hidden;
}

/* Static Background Image */
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-image: url('/images/bgstatic.png');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  opacity: 0.15;
  z-index: -1;
}

/* Header Styling */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 50px;
  padding: 0 2rem;
  background-color: #f1aa1c;
  backdrop-filter: blur(6px);
}

.site-header .logo {
  display: flex;
  align-items: center;
  height: 100%;
}

.site-header .logo img {
  height: 30px;
  width: auto;
  display: block;
}

.site-header .nav a {
  margin-left: 1.5rem;
  color: #000;
  text-decoration: none;
  font-weight: 500;
  transition: opacity 0.3s;
}

.site-header .nav a:hover {
  opacity: 0.7;
}

/* Section Styling */
.section {
  width: 100vw;
  height: 550px;
  background-size: cover;
  background-position: center;
  padding-top: 50px;
}

.section-news {
  background-image: url('/images/section-news.jpg');
}

.section-videos {
  background-image: url('/images/section-videos.jpg');
}

.section-tools {
  background-image: url('/images/section-tools.jpg');
}

/* Responsive */
@media (max-width: 768px) {
  .site-header {
    flex-direction: column;
    align-items: flex-start;
  }
  .site-header .nav a {
    margin: 0.5rem 0;
  }
}