html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  color: white;
  font-family: "Quicksand", sans-serif;
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
}

a {
  color: white;
  text-decoration-line: none;
}

a:visited {
  color: white;
}

#welcomePage {
  width: 100vw;
  height: 100vh;
}

/* ========== MENU ========== */
#menu {
  display: flex;
  justify-content: space-around;
  padding-top: 25px;
}

#changeColor {
  color: orange;
}

#leftSide {
  display: flex;
  flex-direction: row;
  font-size: 24px;
  align-items: center;
}

#leftSide img {
  width: 80px;
  height: 80px;
  display: flex;
}

#rightSide {
  display: flex;
}

#burgerIcon {
  display: none;
  font-size: 40px;
  cursor: pointer;
  user-select: none;
  padding: 10px 15px;
  color: white;
  z-index: 9999;
}

#rightSide ul {
  list-style-type: none;
  display: flex;
  flex-direction: row;
}

#rightSide ul li {
  margin-left: 35px;
  padding-bottom: 5px;
  padding-top: 10px;
}

#rightSide ul li a {
  position: relative;
  display: inline-block;
  text-decoration: none;
  color: white;
}

#rightSide ul li a::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: orange;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease-in-out;
}

#rightSide ul li a:hover::after {
  transform: scaleX(1);
}

/* ========== VIDEO BACKGROUND ========== */
#containerVideo {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: -1;
}

#containerVideo video {
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
  filter: brightness(0.65);
}

#contentVideo {
  height: 70vh;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

#contentVideo h1 {
  font-size: 102px;
  font-weight: 300;
  margin-bottom: 0;
}

#contentVideo h4 {
  width: 600px;
  font-weight: 150;
  font-size: 20px;
  text-align: inherit;
  margin-bottom: 0;
}

#contentVideo h3 {
  font-weight: 250;
  margin: 0;
  margin-top: 20px;
  padding-left: 280px;
  color: orange;
}

/* ========== DOLNA SEKCJA ========== */
#bottomPosition {
  width: 100%;
  margin-top: 60px;
  display: flex;
  flex-direction: row;
  justify-content: space-around;
}

.bottomBot {
  display: flex;
  flex-direction: row;
}

.number {
  font-size: 32px;
  color: orange;
}

.title {
  padding-top: 10px;
  padding-left: 20px;
  margin-left: 5px;
  border-left: 1px solid white;
}

.title:hover {
  cursor: pointer;
  color: orange;
  transition: 1s;
}

/* ========== MENU MOBILNE ========== */
#mobileNav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: black;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

#mobileNav.show {
  opacity: 1;
  pointer-events: all;
}

#mobileNav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#mobileNav ul li {
  margin: 20px 0;
  font-size: 16px;
}

#mobileNav ul li a {
  color: white;
  text-decoration: none;
  position: relative;
}

#mobileNav ul li a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: orange;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease-in-out;
}

#mobileNav ul li a:hover::after {
  transform: scaleX(1);
}

#closeIcon {
  position: absolute;
  top: 30px;
  right: 40px;
  font-size: 40px;
  color: orange;
  cursor: pointer;
}

/* ========== STOPKA ========== */
.new-footer {
  background-color: black;
  padding: 40px 20px;
  color: white;
  font-family: "Quicksand", sans-serif;
  font-size: 14px;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-column {
  flex: 1 1 200px;
  min-width: 180px;
}

.footer-column h4 {
  color: orange;
  margin-bottom: 10px;
  font-weight: 600;
}

.footer-column p,
.footer-column a {
  margin: 4px 0;
  color: white;
  text-decoration: none;
}

.footer-column a:hover {
  text-decoration: underline;
  color: orangered;
}

.mobile-social-icons {
  margin-top: 40px;
  display: flex;
  gap: 25px;
  justify-content: center;
}

.mobile-social-icons a {
  font-size: 28px;
  color: white;
  transition: transform 0.3s ease, color 0.3s ease;
}

.mobile-social-icons a:hover {
  transform: scale(1.2);
}

.mobile-social-icons a:nth-child(1):hover {
  color: #1877f2;
}

.mobile-social-icons a:nth-child(2):hover {
  color: #ff0000;
}

.mobile-social-icons a:nth-child(3):hover {
  color: #000000;
}



@media (max-width: 950px) {
  #containerVideo {
    height: 120%;
  }

  #containerVideo video {
    object-fit: contain;
  }

  #menu {
    justify-content: space-between;
    padding: 0;
  }

  #leftSide img {
    width: 100px;
    height: 100px;
  }

  #burgerIcon {
    display: block;
    font-size: 48px;
    padding: 0;
    margin-top: 10px;
    margin-right: 40px;
  }

  #description {
    display: none;
  }

  #rightSide ul {
    display: none !important;
  }

  #contentVideo {
    top: -125px;
  }

  #contentVideo h1 {
    font-size: 52px;
  }

  #contentVideo h4 {
    width: 300px;
    font-size: 15px;
    margin-top: 5px;
  }

  #contentVideo h3 {
    font-size: 14px;
    margin-top: 10px;
    padding-left: 160px;
  }

  #bottomPosition {
    margin: 0;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .bottomBot {
    top: -255px;
    margin-top: 25px;
    position: relative;
  }

  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}
}