/* General Styles */
body {
  font-family: 'Roboto', sans-serif;
  font-size: larger;
  line-height: 1.6;
  background-color: #121212;
  color: #e0e0e0;
}

h2 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  color: #f5f5f5;
}

p {
  color: #cccccc;
}

.title, strong {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  color: #f5f5f5;
}

/* Navbar */
.navbar.is-black {
  background-color: #000;
}

.navbar-item.is-active {
  border-bottom: 2px solid #a3c212;
}

.navbar-logo {
  max-height: 50px;
}

/* Buttons */
.button.is-red {
  background-color: #525825;
  color: #fff;
  border: none;
}

.button.is-red:hover {
  background-color: #6b7440;
}

/* Hero Section */
.hero {
  position: relative;
  overflow: hidden;
  background-color: transparent !important;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-body {
  position: relative;
  z-index: 1;
  background-color: rgba(0, 0, 0, 0.7);
  color: #ffffff;
}

.hero-logo {
  height: 200px;
}

/* Sections */
#about,
#contact,
#copyright {
  background-color: #1e1e1e;
  border-radius: 8px;
  padding: 2rem;
}

.label {
  color: #bdbdbd;
  font-family: 'Roboto', sans-serif;
  font-weight: 500;
  line-height: 1.6;
}

#about p {
  color: #bdbdbd;
}

#about .column.is-half {
  border-radius: 8px;
  padding: 1rem;
}

.full-height {
  height: 100%;
}

/* Footer */
.footer {
  background-color: #000000;
  color: #ffffff;
  padding: 2rem 1.5rem;
}

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

.footer a:hover {
  text-decoration: underline;
}

.small-text {
  font-size: smaller;
}

.mt-1 {
  margin-top: 1rem;
}

.icon-link {
  color: #ffffff;
  font-size: 1rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.icon-link.align-start {
  align-items: flex-start;
}

.icon-small {
  height: 20px;
  width: 20px;
}

.copyright-text {
  font-size: 0.75rem;
  opacity: 0.4;
}

/* Fade-in Animation */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.fade-in {
  opacity: 0;
  animation: fadeIn 2s ease-in forwards;
}

/* Parallax Section */
.parallax {
  background-image: url('parallax-background.jpg');
  height: 500px;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}

.parallax-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #ffffff;
  text-align: center;
}

@media (max-width: 768px) {
  .parallax {
    display: none;
  }
}

/* Coach Styles */
.coach img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  transition: filter 0.4s ease-in-out;
}

.coach img:hover {
  filter: grayscale(0%);
}

.coach {
  filter: grayscale(100%);
  transition: filter 0.4s ease-in-out;
}

.coach:hover {
  filter: grayscale(0%);
}

/* Sportbit Popup */
#sportbit-popup-box > div.window-img {
  background-color: #000;
  background-image: url('logo.png');
  background-size: cover;
  height: 320px;
}

#sportbit-popup-box > div.window-img > img {
  display: none;
}

/* Abonnementen Page */
.video-section {
  position: relative;
  padding: 0;
  height: 60vh;
  overflow: hidden;
}

.video-section video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.video-overlay {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: rgba(0,0,0,0);
  text-align: center;
  padding: 2rem;
}

.video-overlay p {
  margin-top: 1rem;
  font-size: 1.25rem;
  font-weight: 500;
  color: #ffffff;
  max-width: 600px;
}

.text-muted {
  color: #c0c0c0;
  font-size: 1.1rem;
}

.link-accent {
  color: #a3c212;
}

.box {
  background-color: #1f1f1f;
  border: 1px solid #2a2a2a;
  border-radius: 8px;
  padding: 2rem;
}

/* Abonnementen blocks */
.tariff-row .column {
  display: flex;
}

.tariff-box {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 220px;
}
