@font-face {
  font-family: 'Basic Sans'; /* Ezt a nevet használjuk a CSS-ben */
  src: url('./fonts/BasicSans-RegularIt.ttf') format('truetype'), /* TTF formátum */
       url('./fonts/fonts.com-Basic_Sans_Regular.otf') format('opentype'), /* OTF formátum */
       url('./fonts/FontsFree-Net-fbb2db09-ad15-4458-b437-c5e9dba2d145.ttf') format('truetype'); /* Másik TTF fájl */
  font-weight: normal;
  font-style: normal;
}

* {
    box-sizing: border-box;
    margin: 0px;
    padding: 0px;
  }
  body {
     font-family: 'Bebas Neue', sans-serif;
     background-image: url('/img/Réteg\ 2.jpg');
     background-size: cover;
     height: 100vh;
     margin: 0;
  }

  .Logo img {
    height: 80px;
    margin: 20px 0 0 0;
  }

  nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-weight: normal;
    height: 10%;
    padding: 0 20px;
    position: relative;
    z-index: 3;
    width: 100%;
  }
  nav .mainMenu {
    display: flex;
    list-style: none;
    color: white;
    margin-top: 0px;
  }
  nav .mainMenu li a {
    display: inline-block;
    padding: 15px;
    text-decoration: none;
    text-transform: uppercase;
    color: rgb(0, 0, 0);
    font-size: 20px;
    transition: 0.2s ease;
  }
  nav .mainMenu li a:hover {
   text-decoration: underline;
   text-decoration-thickness: 2,5px;
   text-underline-offset: 4px;
  }

  
  nav .openMenu {
    font-size: 2rem;
    margin: 20px;
    display: none;
    cursor: pointer;
    color: rgb(0, 0, 0);
  }
  nav .mainMenu .closeMenu,
  .icons i {
    font-size: 2rem;
    display: none;
    cursor: pointer;
    color: rgb(0, 0, 0);
  }
  .fa-facebook:hover {
    color: rgb(0, 110, 255);
  }
  .fa-instagram:hover {
    color: rgb(255, 0, 68);
  }
  nav .logo {
    margin: 6px;
    cursor: pointer;
    text-transform: uppercase;
  }

  .navinstalogo {
    color: rgb(0, 0, 0);
    padding-top: 2%;
    font-size: 30px;
  }

  .navinstalogo i {
    padding: 2px;
  }

  .main-title {
    font-size: 62px;
    text-transform: uppercase;
    text-align: center;
    margin: 46px 0;
}

.header {
    display: flex;
    background-color: #ffffff;
    padding: 16px;
    justify-content: space-between;
    align-items: center;
}

.header__logo {
    font-size: 36px;
    text-transform: uppercase;
    margin-left: 16px;
    letter-spacing: 2px;
}

.header__nav ul {
    display: flex;
    list-style-type: none;
    font-size: 18px;
    gap: 16px;
}

.header__nav a {
    color: rgb(0, 0, 0);
    text-decoration: none;
    padding: 14px;
    border-radius: 6px;
}

.header__nav a:hover {
    text-decoration: underline;
}

a.header__nav--active {
    background-color: #cbe300;
    color: #0c1014;
    pointer-events: none;
}



  @media (max-width: 800px) {
    .csomagok,h1{
      justify-content: center;
      align-items: center;
      text-align: center;
    }
    nav .mainMenu {
      height: 100vh;
      position: fixed;
      top: 0px;
      right: 0px;
      left: 0px;
      z-index: 10;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      background: rgb(255, 255, 255);
      transition: top 1s ease 0s;
      display: none;
    }
    nav .mainMenu .closeMenu {
      display: block;
      position: absolute;
      top: 20px;
      right: 20px;
    }
    nav .openMenu {
      display: block;
      margin-left: 90%;
    }
    nav .mainMenu li a:hover {
      background: none;
    }
    .icons i {
      display: inline-block;
      padding: 12px;
      color: rgb(0, 0, 0);
    }
    .navinstalogo {
      display: none;
    }
    .Logo {
      display: none;
    }

    .pricing {
      flex-direction: column;
    }
  }
  /*NAVBAR VÉGE*/
  
  #lightgallery {
    margin:  0 0.1rem;
}

#lightgallery a {
    height: auto;
    margin: 0.5rem;
}

#lightgallery a img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

    #lightgallery{
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        grid-auto-flow: row;
    }

    #lightgallery > *:nth-child(2),
    #lightgallery > *:nth-child(5),
    #lightgallery > *:nth-child(8), 
    #lightgallery > *:nth-child(11), 
    #lightgallery > *:nth-child(14) {
        transform: translateY(0px); /* Középső sor lejjebb tolása */
    }

    .logo {
        position: fixed;
        top: 50%;
        left: 50%;
        transform: translate(-50%,-50%);
        z-index: 2;
    }

    @media (max-width: 640px) {
        #lightgallery {
            margin: 0;
            background: infinite;
            overflow: hidden;
        }
  
    }

    #szoveg {
      padding: 30px 0;
      text-align: center;
      color: white;
    }

