@import url("https://fonts.googleapis.com/css2?family=Poppins&display=swap");

html{
    overflow-x: hidden;
    touch-action: pan-y;
    scroll-behavior: smooth;
}

body {
    font-family: sans-serif;
    margin: 0;
    padding: 0;
    background: linear-gradient(to right, #333333, #1a1a1a, #000000);
    color: #fff;
    overflow-x: hidden;
    touch-action: pan-y;
}
body::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.7);
    z-index:  -1;
  }
h1, p {
    z-index: 1;
    transition: opacity 1s ease-out; /* Hozzáadott átmenet az `h1` elemhez */
}

#szoveg{
    text-align: center;
}

nav {
    height: 100px;
    width: 100%; /* A teljes szélességűre állítjuk a navigációs sávot */
    display: flex;
    justify-content: center; /* A tartalmat középre igazítjuk */
    align-items: center;
   
}

.koncertek {
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    color: #fff;
    font-size: 30px;
    letter-spacing: 0.5px;
    padding: 0 10px;
    position: relative;
}

.koncertek:after {
    content: "";
    position: absolute;
    background-color: #fff;
    height: 3px;
    width: 0;
    left: 0;
    bottom: -10px;
    transition: 0.3s;
}

.koncertek:hover {
    color: #888;
}

.koncertek:hover:after {
    width: 100%;
}

.tortenet{
    max-width: 800px; /* Maximum szélesség beállítása */
    margin: 0 auto; /* Középre igazítás */
    padding: 20px; /* Belső margó */
    font-size: 18px; /* Betűméret */
    line-height: 1.6; /* Sortávolság */
    text-align: justify; /* Igazítás a bal és jobb oldalra is */
    color: black; /* Szövegszín */
    background-color: white;
    border-radius: 15px; /* Kerekített sarkok */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Árnyék */
    font-weight: bold;
}

h1 {
    animation: text-appear 1s ease-out, text-vibrate 2s infinite;
  }

#fokep {
    text-align: center;
    margin-top: 20px;
}

#fokep img {
    width: 200px; /* Alapértelmezett szélesség */
    height: auto; /* Automatikus magasság beállítása */
    border-radius: 10px; /* Kerekített sarkok */
    transition: all 0.5s ease; /* Animáció létrehozása: minden tulajdonság 0.3 másodperc alatt, egyszerű átmenet */
}

#fokep img:hover {
    width: 250px; /* Nagyobb szélesség a hover esetén */
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5); /* Árnyék hozzáadása a hover esetén */
}

.header {
    padding: 50px;
    text-align: center;
    color: white;
    font-size: 30px;
    }

.main {
    margin: 30px;
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.8);
    color: black;
    border-radius: 25px;
}

section {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    padding: 20px;
}

.card {
    margin: 20px;
    padding: 10px;
    background-color: rgba(255, 255, 255, 0.8);
    color: black;
    border-radius: 25px;
    transition: transform 0.3s, box-shadow 0.3s; 
    box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.2); 
}

.card:hover {
    transform: translateY(-15px); 
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.4); 
}

.card img {
    border-radius: 50%;
    width: 250px;
    height: 250px;
    object-fit: cover;
}

.card p {
    margin-top: 10px;
    text-align: center;
}
.footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 10px;
    bottom: 0;
    width: 100%;
    margin: auto;
}

#kozep {
    text-align: center;
    font-size: 40px;
}

.kozep2 {
    text-align: center;
}

#szoveg {
    font-size: 37px;
}

.link1 {
    font-size: 20px;
}

#vonal {
    text-decoration: solid;
}

iframe {
    display: block;
    margin: 0 auto;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

@keyframes text-vibrate {
    0% {
      color: white;
    }
    50% {
      color: gray;
    }
    100% {
      color: white;
    }
}

.modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.4);
}
  
.modal.show {
    display: block;
}

.modal-content {
    background-color: #fefefe;
    margin: 15% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    max-width: 600px;
    color: black;
    border-radius: 15px;
    
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

.modal-btn {
    padding: 35px 80px;
    border: none;
    border-radius: 15px;
    background: #525252;  /* Kékebb háttérszín */
    color: #fff;
    cursor: pointer;
    transition: background-color 0.5s ease, box-shadow 0.3s ease;
    display: block;
    margin: 0 auto;
    font-size: 26px;
    box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.5); /* Sötétebb szélek */
    position: relative;
}

/* A gomb körvonalának színátmenete, ahogy beljebb halad */
.modal-btn::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border-radius: 15px;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.9), transparent); /* Fekete körvonal az alján */
    z-index: -1; /* Gomb alá helyezés */
}

.modal-btn:hover {
    background-color: #fff;
    color: #000;
    box-shadow: 0px 0px 10px rgba(0,0,0,0.5);
}

.intro {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, #333333, #1a1a1a, #000000);
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 30px;
    opacity: 1;
    transition: opacity 2s ease;
    z-index: 9999;
}

.intro h1 {
    animation: text-disappear 10s ease forwards, none; /* Mindkét animációt felsoroljuk */
}

#main-content {
    transition: opacity 1s ease;
}
@keyframes text-disappear {
    0% {
        opacity: 1;
        transform: translateX(0);
    }
    100% {
        opacity: 0;
        transform: translateX(100%);
    }
}

@keyframes slideIn {
    0% {
        transform: translateY(100%);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

.wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    list-style: none;
    padding: 0;
    margin: 0;
}

.wrapper .icon {
    position: relative;
    background: #ffffff;
    border-radius: 50%;
    padding: 15px;
    margin: 10px;
    width: 50px;
    height: 50px;
    font-size: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    min-width: 50px; /* Új hozzáadott tulajdonság: Az ikonok minimális szélessége */
}

.wrapper .tooltip {
    position: absolute;
    top: 0;
    font-size: 14px;
    background: #ffffff;
    color: #ffffff;
    padding: 5px 8px;
    border-radius: 5px;
    box-shadow: 0 10px 10px rgb(255, 255, 255);
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5); /* 3D hatás */
}

.wrapper .tooltip::before {
    position: absolute;
    content: "";
    height: 8px;
    width: 8px;
    background: #ffffff;
    bottom: -3px;
    left: 50%;
    transform: translate(-50%) rotate(45deg);
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.wrapper .icon:hover .tooltip {
    top: -45px;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.wrapper .icon:hover span,
.wrapper .icon:hover .tooltip {
    text-shadow: 0px -1px 0px rgba(0, 0, 0, 0.1);
}

.wrapper .facebook:hover,
.wrapper .facebook:hover .tooltip,
.wrapper .facebook:hover .tooltip::before {
    background: #1877F2;
    color: #ffffff;
}

.wrapper .youtube:hover,
.wrapper .youtube:hover .tooltip,
.wrapper .youtube:hover .tooltip::before {
    background: #CD201F;
    color: #ffffff;
}

.wrapper .facebook {
    background: #1877F2; /* Facebook ikon háttere */
}

.wrapper .instagram {
    background: #E4405F; /* Instagram ikon háttere */
}

.wrapper .youtube {
    background: #CD201F; /* YouTube ikon háttere */
}

.wrapper .icon i {
    stroke: #000000; /* Vonal színe */
}

  .slider{
    width: 1300px;
    max-width: 100vw;
    height: 700px;
    margin: auto;
    position: relative;
    overflow: hidden;
}
.slider .list{
    position: absolute;
    width: max-content;
    height: 100%;
    left: 0;
    top: 0;
    display: flex;
    transition: 1s;
}
.slider .list img{
    width: 1300px;
    max-width: 100vw;
    height: 100%;
    object-fit: cover;
}
.slider .buttons{
    position: absolute;
    top: 45%;
    left: 5%;
    width: 90%;
    display: flex;
    justify-content: space-between;
}
.slider .buttons button{
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #fff5;
    color: #fff;
    border: none;
    font-family: monospace;
    font-weight: bold;
}
.slider .dots{
    position: absolute;
    bottom: 10px;
    left: 0;
    color: #fff;
    width: 100%;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
}
.slider .dots li{
    list-style: none;
    width: 10px;
    height: 10px;
    background-color: #fff;
    margin: 10px;
    border-radius: 20px;
    transition: 0.5s;
}
.slider .dots li.active{
    width: 30px;
}
@media screen and (max-width: 768px){
    .slider{
        height: 400px;
    }
}

.fb-video-container {
    display: flex;
    justify-content: center;
}

.fb-video {
    touch-action: none;
}

.image-wrapper {
    padding: 10px;
    text-align: center;
}

.image-frame {
    display: inline-block;
    width: 50%; /* Változtatva százalékosra */
    height: auto; /* Változtatva automatikusra */
    min-width: 200px; /* Új: minimális szélesség */
    min-height: 200px; /* Új: minimális magasság */
    overflow: hidden;
   
}

.image-frame img {
    width: 100%;
    height: auto; /* Változtatva automatikusra */
    object-fit: cover;
}

/* Média lekérdezés a képernyő szélességének ellenőrzésére */
@media (max-width: 768px) {
    .image-frame {
        width: 100%; /* A kép kitölti a képernyő teljes szélességét */
    }
}

.videjo {
    position: relative;
    margin: 0 auto;
    width: 100%;
    max-width: 800px;
    margin-bottom: 30px;
}

.videjo-wrapper {
    position: relative;
    width: 100%;
    padding-top: 75%;
}

.videjo-wrapper iframe {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.sasmadar{

    text-align: center;
    font-weight: bolder;
    font-size: 25px;
    margin-bottom: 20px;
    margin-top: 20px;
}

.go-top-btn {
    position: fixed;
    bottom: 35px;
    right: 35px;
    border-radius: 50%;
    cursor: pointer;
    height: 100px;
    width: 100px;
    background: rgba(255, 255, 255, 0.5); /* Átlátszó fehér hátteret használunk (0.5 az átlátszóság mértéke) */
    border: 3px solid transparent; /* Átlátszó keret */
    display: none;
    justify-content: center;
    align-items: center;
  }
  
  .go-top-btn img {
    width: 50px;
    height: 50px;
  }

.eddigi{
    margin-top: 60px;
    margin-bottom: 60px;
}


  

