:root {
  --main-color: #f5b700;
}

* {
  box-sizing: border-box;
}

body {
  background-color: #151515;
  font-family: "Inter", sans-serif;
  margin: 0;
}

a {
  text-decoration: none;
  color: #fff;
  transition: color 0.3s;
}

.an {
  height: 1px;
  width: 100%;
}

.wrapper {
  max-width: 1280px;
  margin: auto;
  display: flex;
}

nav {
  width: 100%;
  position: fixed;
  top: 0;
  z-index: 3;
  transition: all 0.5s;
  background: #0003;
}

nav .wrapper {
  justify-content: space-between;
}

.logo {
  padding: 10px 0;
  display: flex;
}

.logo img {
  height: 48px;
  transition: all 0.2s;
  margin: auto;
  margin-left: 10px;
}

nav ul {
  display: flex;
  list-style-type: none;
  margin: 0;
  padding: 0;
}

nav li {
  display: block;
  font-weight: 700;
  font-size: 18px;
  cursor: pointer;
}

nav li {
  padding: 12px 0;
  margin: 16px 25px;
  border-bottom: 2px solid transparent;
}

nav li:hover {
  border-bottom: 2px solid var(--main-color);
}

div#kontakt {
  max-width: 800px;
}

div#start {
  width: 100%;
  min-height: 100vh;
  padding: 100px 0;
  color: #fff;
  align-items: center;
  display: flex;
  justify-content: center;
  flex-direction: column;
}

.section {
  width: 100%;
  min-height: 100vh;
  padding: 70px 0;
  background-origin: padding-box;
  box-sizing: border-box;
  align-items: center;
  justify-content: center;
}

.content .wrapper {
  justify-content: center;
  display: flex;
  flex-wrap: wrap;
}

.orange {
  color: var(--main-color);
  font-size: 2rem;
  margin: 0 auto;
  padding-bottom: 2px;
  font-weight: 700;
}

h1,
h2 {
  animation: fadeIn 0.5s;
  text-align: center;
}

h1 {
  margin: 0;
  color: #fff;
  font-size: 4rem;
}

h1.bigger {
  font-weight: 700;
  font-size: 5.5rem;
}

h2 {
  margin: 10px 0;
  text-align: center;
  font-size: 25px;
}

.section h2 {
  margin-bottom: 50px;
}

p {
  text-align: center;
  font-weight: 300;
  font-size: 1.25rem;
  max-width: 800px;
  line-height: 1.7rem;
}

.pswp-gallery {
  display: flex;
  flex-wrap: wrap;
  max-width: 1200px;
  justify-content: center;
  margin: auto;
  gap: 40px;
}

.pswp-gallery img {
  width: 350px;
  height: 350px;
  object-fit: cover;
  border-radius: 8px;
  transition: 0.3s all;
}

.pswp-gallery img:hover {
  transform: scale(1.1);
}

form {
  min-width: 320px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  font-family: "Inter", sans-serif;
}

form * {
  border: none;
}

input,
textarea {
  font-size: 1.15rem;
  color: #555;
  padding: 15px;
  min-width: 320px;
  width: 100%;
  box-sizing: border-box;
  margin: 10px 0;
  outline: none;
  font-family: "Inter", sans-serif;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
  border-radius: 8px;
  background: #222;
}

.submit {
  font-size: 1.15rem;
  color: #fff;
  border: none;
  font-weight: 600;
  cursor: pointer;
  width: 320px;
  color: var(--main-color);
  background: #f5b70033;
  transition: 0.3s all;
}

.submit:hover {
  background: var(--main-color);
  color: #fff;
}

footer {
  padding: 20px 0;
  width: 100%;
  text-align: center;
  color: #777;
  font-size: 1.1rem;
}
footer .wrapper {
  padding: 0 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

footer .links {
  display: flex;
  gap: 20px;
}

footer a {
  color: #777;
  font-size: 1.3rem;
}

footer a:hover {
  color: #fff;
}

#up {
  position: fixed;
  padding: 14px;
  font-weight: 600;
  background: #000;
  font-size: 30px;
  color: #fff;
  display: flex;
  justify-content: center;
  align-content: center;
  opacity: 0;
  right: 2%;
  bottom: 6%;
  cursor: pointer;
  transition: all 0.3s;
}

#dark {
  background: #000;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99;
  display: none;
  opacity: 0;
  transition: all 0.5s;
}

#lightbox {
  position: fixed;
  z-index: 100000;
  left: 50%;
  top: 50%;
  width: 0px;
  height: 0px;
  transition: all 0.5s;
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@media (max-width: 768px) {
  #rmenu {
    float: left;
    width: 100%;
    display: none;
  }
  #rmenu > li {
    float: none;
    text-align: center;
  }
  nav {
    position: static;
    height: 60px;
  }
  .wrapper {
    margin: auto 10px;
  }
  .logo {
    width: 100%;
    height: 60px;
  }
  #logo {
    margin: auto;
  }
  h1 {
    font-size: 44px;
  }
  h1.bigger {
    font-size: 64px;
  }
  .orange {
    font-size: 20px;
    font-weight: 600;
  }

  footer .wrapper {
    padding: 0 10px;
    display: block;
  }
  footer span {
    display: block;
    padding: 5px 0;
  }
  footer {
    height: initial;
    padding: 0;
  }
  footer .links {
    justify-content: center;;
  }
}
@media (max-width: 720px) {
}
