@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;300;400;500;600&display=swap");

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    -webkit-transition: all .2s linear;
    transition: all .2s linear;
}

body {
    background-color: #181818;
    color: #f5f5f5;
    height: 100vh;
}

html::-webkit-scrollbar {
  width: 1rem;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 9rem;
}

html::-webkit-scrollbar-track {
  background: #202020;
}

html::-webkit-scrollbar-thumb {
  background: #F84143;
  border-radius: 5rem;
}

.main-header {
  width: 100%;  
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  padding-left: 70px;
  transition: background-color 0.3s ease;
}

.main-header.scrolled {
  background: rgba(32, 32, 32, 0.274);
  backdrop-filter: blur(4px);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo img {
  height: 55px;
  margin-top: 4px;
}

.nav-links {
  display: flex;
  gap: 30px;
  margin-top: 4px;
}

.nav-links a {
  color: white;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #F84143;
}

.discord-button .discord-link {
  display: flex;
  align-items: center;
  gap: 8px;
  background-color: #1f1f1f;
  padding: 6px 14px;
  border-radius: 6px;
  color: #ffffff;
  text-decoration: none;
  font-size: 14px;
  font-weight: bold;
  transition: background-color 0.2s ease;
  margin-top: 4px;
}

.discord-button .discord-link:hover {
  background-color: #5865F2;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
  transition: transform 0.3s ease;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: white;
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* Animace na křížek */
.hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobilní menu */
.mobile-menu {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  background: rgba(0, 0, 0, 0.95);
  padding: 1rem 0;
  position: absolute;
  top: 100%;
  width: 100%;
  left: 0;
  z-index: 999;
  opacity: 0;
  transform: translateY(-10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.mobile-menu a {
  color: white;
  text-decoration: none;
  font-weight: bold;
}

.mobile-discord {
  background-color: #1f1f1f;
  padding: 6px 14px;
  border-radius: 6px;
}

.mobile-discord:hover {
  background-color: #5865F2;
}

.mobile-menu.show {
  display: flex;
  opacity: 1;
  transform: translateY(0);
}

/* Hero sekce */
.hero {
  position: relative;
  height: 100vh;
  background: url("../content/night city test.png") no-repeat center center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  padding-bottom: 50px;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0,0,0,0.4), rgba(0,0,0,0.7));
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.hero-content h1 {
  font-size: 5.3rem;
  font-weight: bold;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 35px;
  color: #c5c4c4;
}

.cta-button {
  background-color: #F84143;
  color: white;
  padding: 12px 24px;
  text-decoration: none;
  border-radius: 6px;
  font-weight: bold;
  transition: background 0.3s ease;
}

.cta-button:hover {
  background-color: #fff;
  color: black;
}
  

  .about {
    background-color: #08080886;
    color: #fff;
    padding: 7rem 2rem;
  }
  
  .about-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    align-items: center;
    justify-content: space-between;
  }
  
  .about-text {
    flex: 1 1 500px;
  }
  
  .about-text h2 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
  }
  
  .underline {
    width: 70px;
    height: 4px;
    background-color: #fff;
    margin-bottom: 1.5rem;
  }
  
  .about-text p {
    font-size: 1rem;
    line-height: 1.6;
  }
  
  .about-image {
    flex: 1 1 400px;
    display: flex;
    justify-content: center;
  }
  
  .about-image img {
    max-width: 100%;
    border-radius: 12px;
    border: 6px solid #1a1a1a;
  }

  .destination {
    padding: 3rem 9%;
  }

  .heading {
    text-align: center;
    margin-bottom: 2rem;
  }
  
  .heading span {
    color: #F84143;
    font-size: 1.3rem;
  }
  
  .heading h1 {
    font-size: 2.7rem;
    color: #fff;
  }

  .destination .box-container {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (minmax(17rem, 1fr))[auto-fit];
        grid-template-columns: repeat(auto-fit, minmax(17rem, 1fr));
    gap: 1rem;
  }
  
  .destination .box-container .box {
    border-radius: 1rem;
    overflow: hidden;
    background: #2b2b2b;
  }
  
  .destination .box-container .box:hover img {
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
  }
  
  .destination .box-container .box .image {
    height: 13rem;
    overflow: hidden;
    width: 100%;
  }
  
  .destination .box-container .box .image img {
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  
  .destination .box-container .box .content {
    padding: 1rem;
    text-align: center;
  }
  
  .destination .box-container .box .content h3 {
    font-size: 1rem;
    color: #fff;
  }
  
  .destination .box-container .box .content p {
    padding: .5rem 0;
    font-size: 1rem;
    color: #aaa;
    line-height: 2;
  }
  
  .destination .box-container .box .content a {
    font-size: 1.4rem;
    color: #29d9d5;
  }
  
  .destination .box-container .box .content a:hover i {
    padding-left: 1rem;
  }
  
  .destination .box-container .box .content a i {
    padding-right: .5rem;
  }

  .services {
    padding: 3rem 9%;
  }

  .services .box-container {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (minmax(22rem, 1fr))[auto-fit];
      grid-template-columns: repeat(auto-fit, minmax(22rem, 1fr));
  gap: 1.5rem;
}

.services .box-container .box {
  background: #2b2b2b;
  border-radius: 1rem;
  padding: 1.7rem;
  text-align: center;
  border: 0.2rem solid #181818;
}

.services .box-container .box:hover {
  border: 0.2rem solid #F84143;
}

.services .box-container .box i {
  font-size: 2.4rem;
  color: #F84143;
  margin-bottom: 2rem;
}

.services .box-container .box h3 {
  font-size: 1.4rem;
  color: #fff;
}

.services .box-container .box p {
  padding: 1rem 0;
  font-size: 0.9rem;
  color: #aaa;
  line-height: 2;
}

.footer {
  text-align: center;
  margin-top: 2rem;
  margin-bottom: 2rem;
  padding: 1.7rem;
}

hr {
  height: 2px;
  color: #333333;
  background-color: #333333;
  border: none;
  width: 65%;
  margin: 1rem auto 0.1rem;
}

.discord-svg {
  width: 35px;
  margin-top: 5px;
  transition: fill 0.3s ease, transform 0.3s ease;
}

.discord-icon:hover path {
  fill: #5865F2;
}

.socky{
  padding-right: 2.2rem;
}

.socky a {
  color: white;
  text-decoration: none;
  padding: 10px;
  transition: all 0.2s ease;
}

#ig:hover {
  color: #833AB4
}

#tt:hover {
  color: #f51a5f
}

#yt:hover {
  color: rgb(247, 26, 26);
}

  @media (max-width: 992px) {
    .nav-links,
    .discord-button {
      display: none;
    }

    .mobile-menu.show {
      display: flex;
    }
    
    .main-header {
      padding-left: 0;
    }

    .hamburger {
      display: flex;
    }
  
    .nav-container {
      padding: 10px 20px;
    }
  }