
@font-face {
  font-family: "Sport";
  src: url(../fonts/Sports-World-Regular.woff2);
}

@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/montserrat/v31/JTUSjIg1_i6t8kCHKm459WlhyyTn89ddpQ.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

body {
  margin: 0;
  padding: 0;
}

html {
  background-color: #F4AA4A;
}

/* Navigation Bar */

.nav-links {
  font-family: "Sport";

  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 20px;

  width: 100%;
  box-sizing: border-box;

  gap: 20px;

}

nav {
  background-color: #F4AA4A;

  position: sticky;
  top: 0;
  left: 0;

  width: 100%;
  box-sizing: border-box;

  border-radius:  0 0 30px 30px;
}

#start-link {
  display: none;
}

.nav-left {
  display: flex;
  gap: 20px;
  justify-self: flex-start;
  position: relative;
  width: 300px;

  justify-content: end;
}

.nav-left a {
  position: relative;
}

.nav-left a::before {
  content: "";
  position: absolute;
  display: block;
  width: 100%;

  height: 3px;
  bottom: -4px;
  right: 0;

  background-color: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease-in-out;
}

.nav-left a:hover::before {
  transform: scaleX(1);
}

.nav-right {
  display: flex;
  gap: 20px;
  justify-self: end;
  width: 300px;
}

.nav-right a {
  position: relative;
}

.nav-right a::before {
  content: "";
  position: absolute;
  display: block;
  width: 100%;

  height: 3px;
  bottom: -4px;
  right: 0;

  background-color: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease-in-out;
}

.nav-right a:hover::before {
  transform: scaleX(1);
}

.active {
  color: #f5f5f5;
}

.logo-link img {
  height: 50px;
  display: block;
}

.logo-link:hover img {
  transform: translateY(-4px);
  transition: ease-in-out 0.3s;
}

nav a {
  text-decoration: none;
  color: #000;
  display: block;
  text-align: center;
}

.burger span {
  display: block;
  width: 30px;
  height: 4px;
  border-radius: 99px;
  background-color: #000;
  margin: 4px 0;
}

.burger {
  background-color: transparent;
  border: none;
  display: none;
}

body {
  background: #f1f1f1;
}

nav {
  z-index: 10;
}

/* Hero */

.page-top {
  background-color: #f5f5f5;
  background-size: cover;
  background-position: center;
  padding-bottom: 3rem;
}

.hero {
  min-height: 360px;
  display: flex;
  align-items: flex-end;
}

.hero-overlay {
  width: 100%;
  padding: 2rem 3.5rem 1rem;
}

.hero-content {
  margin: 0;
  font-family: "Sport";
  font-size: 110px;
  color: #f5f5f5;
  text-shadow: #111 2px 2px 1px;
  font-weight: 700;
}

/* Main Content */

main {
  margin-top: -28px;
  padding: 2em 3em 4em;
  background-color: #f5f5f5;
  border-radius: 30px 30px 0 0;
}

/* Responsive */

@media (max-width: 900px) {
  .hero-overlay {
    padding: 20px 20px 10px;
  }

  .hero-content {
    font-size: 60px;
  }
}

@media (max-width: 700px) {
  nav {
    position: sticky;
    display: flex;
    justify-content: center;
    padding: 15px 25px;
  }

  .nav-links {
    display: flex;
    align-items: center;
    gap: 24px;
  }

  .nav-left, .nav-right {
    display: flex;
    flex-direction: column;
    align-items: start;
    width: auto;
    gap: 8px;
  }

  nav a:hover {
    color: white;
    transition: all ease-in-out 0.3s;
  }

  .nav-left a::before, .nav-right a::before {
    display: none;
  }

  .logo-link {
    position: absolute;
    left: 25px;
    top: 15px;
  }


  .burger {
    display: block;
    position: absolute;
    right: 25px;
    top: 15px;
  }

  footer section {
    flex-direction: column;
    gap: 20px;
  }
}

@media (max-width: 500px) {
  .hero {
    min-height: 200px;
  }

  main {
    padding: 1em 1em 3em;
  }

  nav {
    gap: 10px;
    padding: 15px 10px;
  }

  .nav-left, .nav-right {
    gap: 12px;
    font-size: 14px;
  }
}

footer {
  background-color: #F4AA4A;
  padding: 30px;

  font-family: "Montserrat", sans-serif;
}

footer section {
  display: flex;
  gap: 70px;
}

footer a {
  text-decoration: none;
  color: black;
  display: flex;
  align-items: center;
  gap: 10px;
}

footer .kontakt {
  display: flex;
  flex-direction: column;
  justify-content: start;
  gap: 10px;
}

footer a:hover {
  color: white;
  transition: all ease-in-out 0.3s;
}

footer img {
  width: 25px;
}

#copyright {
  margin: 0 auto;
  margin-top: 30px;
  width: fit-content;
}