:root {
  --black: #000;
  --white: #fff;
  --accent: #c8d2da;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family:
    "Inter",
    system-ui,
    -apple-system,
    sans-serif;
  background: var(--white);
  color: var(--black);
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

.wrapper {
  min-height: 100vh;
}

nav.top-nav {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  font-family: "Bebas Neue", sans-serif;
  font-size: 30px;
  letter-spacing: 0.5px;
}

.section {
  width: 100%;
  display: flex;
  flex-direction: column;
  padding: 48px;
}

.section.hero {
  position: relative;
  min-height: 100vh;
  justify-content: flex-end;
  color: var(--black);
  background-image: url("/assets/img/background.png");
  background-size: cover;
  background-position: center;
}

.section.hero .title-block {
  margin-bottom: 0;
  width: fit-content;
}

.hero-categories {
  position: absolute;
  top: calc(50% - 200px);
  right: 48px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  font-family: "Bebas Neue", sans-serif;
  font-size: 12vw;
  font-weight: 700;
  line-height: 1;
  color: var(--black);
  z-index: 10;
}

@media (min-width: 1024px) {
  .hero-categories {
    font-size: 120px;
  }
}

@media (max-width: 768px) {
  .hero-categories {
    font-size: 60px;
    top: 24px;
    right: 24px;
  }
}

.section.hero h1,
.section.hero h2,
.section.contact h2,
.section.selected h2,
.section.selected h3 {
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: 0.5px;
}

.section.hero h1 {
  font-size: clamp(64px, 12vw, 112px);
  line-height: 0.95;
}

.title-block .title-row {
  display: inline-flex;
  align-items: center;
  gap: 16px;
}

.title-block img {
  height: 120px;
  width: auto;
  display: block;
}

.section.hero h2 {
  font-size: 22px;
  margin-top: -10px;
}

.section.selected {
  background: var(--white);
  color: var(--black);
  padding: 64px 48px;
  gap: 120px;
}

.section.selected h2 {
  font-size: clamp(40px, 6vw, 72px);
}

.video-list {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.video-card {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  align-items: start;
}

.video-embed {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  overflow: hidden;
  background: var(--accent);
}

.video-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-meta h3 {
  font-size: clamp(32px, 4vw, 48px);
  margin-bottom: 12px;
  font-size: 20px;
  font-family:
    "Inter",
    system-ui,
    -apple-system,
    sans-serif !important;
}

.video-meta p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--black);
}

.section.contact {
  min-height: 100vh;
  justify-content: space-between;
  align-items: flex-start;
  background: var(--white);
  color: var(--black);
  background-image: url("/assets/img/background_contact.jpg");
  background-size: cover;
  background-position: center;
}

.section.contact h2 {
  font-size: clamp(40px, 6vw, 72px);
  margin-bottom: 32px;
}

.contact-body {
  display: flex;
  flex-direction: column;
  gap: 0px;
}

.contact-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 22px;
  font-weight: 700;
}

.contact-links a {
  text-decoration: none;
  padding-bottom: 4px;
  width: fit-content;
  padding-left: 10px;
}

.footer-social {
  margin-top: 20px;
  display: flex;
  gap: 16px;
}

.footer-social a {
  width: 64px;
  height: 64px;
  display: block;
}

.footer-social img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

@media (max-width: 768px) {
  nav.top-nav {
  }

  .section {
  }

  .video-card {
    grid-template-columns: 1fr;
  }
}
