/* Base */
body {
  font-family: 'Caveat', cursive;
}

/* Wood texture background */
.wood-texture {
  background: linear-gradient(180deg, #553a21 0%, #1a0f08 100%);
}

/* Smooth scroll */
html {
  scroll-behavior: smooth;
}

/* Carousel */
.carousel-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

/* Logo highlight animation */
.logo-highlight {
  filter: brightness(0) invert(1);
  opacity: 1;
  transform: scale(1.15);
}
.logo-dim {
  filter: brightness(0) invert(1) sepia(0.8) hue-rotate(10deg) saturate(3);
  opacity: 0.5;
  transform: scale(1);
}

/* Transitions for logos */
.media-logo {
  transition: all 0.5s ease;
}

/* FAQ accordion */
.faq-answer {
  overflow: hidden;
  transition: max-height 0.3s ease, opacity 0.3s ease;
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: #1a0f08;
}
::-webkit-scrollbar-thumb {
  background: #553a21;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: #efc938;
}

/* YouTube embed responsive */
.video-embed {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
}
.video-embed iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border-radius: 0.75rem;
}
