
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css");

* {
    margin: 0;
    padding:0;
    box-sizing: border-box;
    font-family: 'Poppins',sans-serif;
}

.gallery-item2 {
            width: 50%;
            height: 100%;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
            cursor: pointer;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .gallery-item2:hover {
            transform: scale(1.05);
            box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.3);
        }

        .gallery-item2 img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

.gallery-container2{
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 15px;
            padding: 20px;
            justify-items: center;
        }


.gallery-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 15px;
            padding: 20px;
            justify-items: center;
        }

        .gallery-item {
            width: 250px;
            height: 250px;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
            cursor: pointer;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .gallery-item:hover {
            transform: scale(1.05);
            box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.3);
        }

        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        /* Lightbox háttér */
        .lightbox {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.8);
            justify-content: center;
            align-items: center;
            flex-direction: column;
             transition: opacity 0.3s ease;
             z-index: 9999;
        }

        .lightbox img {
            max-width: 80%;
            max-height: 80%;
            border-radius: 10px;
            transition: transform 0.3s ease;
        }

        .lightbox.show {
    display: flex;
    opacity: 1;
}


        .lightbox .close {
            position: absolute;
            top: 20px;
            right: 30px;
            font-size: 40px;
            color: white;
            cursor: pointer;
            transition: color 0.3s ease;
        }

        .lightbox .close:hover {
            color: #ff4d4d;
        }

.video-container {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            justify-content: center;
            padding: 20px;
        }

        .video-box {
            width: 500px;
            height: 400px;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .video-box:hover {
            transform: scale(1.05);
            box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.3);
        }

        video {
            width: 100%;
            height: 100%;
            border-radius: 10px;
        }


 /* A gomb stílusa */
        #back-to-top {
            position: fixed;
            bottom: 20px;
            right: 20px;
            display: none; /* Alapból nem látszik */
            background-color: #28a745;
            color: white;
            border: none;
            width: 50px;
            height: 50px;
            padding: 12px;
            border-radius: 100%;
            cursor: pointer;
            font-size: 24px;
            z-index: 9999;
            box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
            transition: opacity 0.3s ease, transform 0.3s ease;
        }

        #back-to-top:hover {
            background-color: #218838;
            transform: scale(1.1);
        }

        ion-icon {
            font-size: 24px;
            color: white;
        }


.top {
  padding: 80px;
}

.right {
  margin: 150px;
}

.form-container{
 background-color: white;
 padding: 20px;
 border-radius: 10px;
 box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
 width: 300px;
 text-align: center;
}

  label {
    display: block;
    margin-top: 10px;
    font-weight: bold;
  }

  input {
    width: 100%;
    padding: 8px;
    margin-top: 5px;
    border: 1px solid #ccc;
    border-radius: 5px;
  }

  button {
    margin-top: 15px;
    background-color: #28a745;
    color: white;
    padding: 10px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: large;
    width: 100%;
  }

  button:hover {
    background-color: #218838;
  }

:root 
{
    --clr:#673ab7;
}

body {
    display: block;
    align-items: flex-end;
    min-height: 100vh;
    background: var(--clr);
}
div{
    margin: auto;
    padding:0;
    display: block;

}

/* Hamburger ikon */
.hamburger {
    display: none;
    position: fixed;
    top: 50px;
    right: 20px;
    transform: translateY(-50%);
    font-size: 32px;
    cursor: pointer;
    color: white;
    z-index: 1010;
}
.hamburger:hover {
  transform: scale(1.1);
}

/* Mobil menü javított elrendezéssel */
.mobile-menu {
  display: none;
    position: fixed;
    background-color: #41267e;
    top: 70px;
    right: 0;
    width: 100vh;
    height: 100vh;
    padding: 10px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
    border-radius: 10px;
    z-index: 1000; /* Mindent takarjon el */
}

body.menu-open {
  overflow: hidden;
}

.mobile-menu a {
    color: white;
    text-decoration: none;
    font-size: 18px;
    padding: 10px;
    display: block;
    text-align: center;
    transition: 0.3s ease;
}

.mobile-menu.active {
  display: flex;
  opacity: 1;
}

.mobile-menu a:hover {
    background-color: #28a745;
    border-radius: 5px;
}

/* Reszponzív nézet */
@media (max-width: 768px) {
    #navbar {
      display: none;
    }


    .hamburger {
        display: block;
    }


    .mobile-menu {
        display: none;
    }
    .mobile-menu.active {
      display: flex;
      flex-direction: column;
    }
}

#navbar {
  top: 0;
  position: sticky;
  z-index: 1000;
  width: 100%;
}

.navigation {
   position: sticky;
   top: 0;
   width: 100%;
   z-index: 1000;
   background: #41267e;
   display: flex;
   justify-content: center;
   align-items: center;
   border-radius: 10px;

}

.navigation ul {
    display: flex;
    width:350px;
}

.navigation ul li {
    list-style: none;
    width: 70px;
    height: 70px;
    z-index: 1;
}

.navigation ul li a {
   display: flex;
   justify-content: center;
   align-items: center;
   flex-direction: column; 
   text-align: center;
   font-weight: 500;
}

.navigation ul li a .icon {
    display: block;
    line-height: 75px;
    font-size: 1.5em;
    text-align: center;
    transition: 0.5s;
    color: White;
}

.navigation ul li.active a .icon {
    transform: translateY(-32px);
}

.navigation ul li a .text {
    color: White;
    font-weight: 400;
    font-size: 15px;
    letter-spacing: 0.0.5em;
    transition: 0.5s;
    opacity: 0;
    transform: translateY(20px);

}

.navigation ul li.active a .text
{
    opacity: 1;
    transform: translateY(10px);
}

.indicator {
    position: absolute;
    top: -50%;
    width: 70px;
    height: 70px;
    background: #29fd53;
    border-radius: 50%;
    border: 6px solid var(--clr);
    transition: 0.5s;
}

.indicator::before {
    content: "";
    position: absolute;
    top: 50%;
    left: -22px;
    width: 20px;
    height: 20px;
    background: transparent;
    border-top-right-radius: 20px;
    box-shadow: 0px -10px 0 0 var(--clr);
}

.indicator::after {
    content: "";
    position: absolute;
    top: 50%;
    right: -22px;
    width: 20px;
    height: 20px;
    background: transparent;
    border-top-left-radius: 20px;
    box-shadow: 0px -10px 0 0 var(--clr);
}

.highlight {
    border-bottom: 4px solid rgb(132, 0, 255)
}


.navigation ul li:nth-child(1).active ~.indicator {
    transform: translateX(calc(70px * 0));
}

.navigation ul li:nth-child(2).active ~ .indicator {
    transform: translateX(calc(55px * 1));
}

.navigation ul li:nth-child(3).active ~ .indicator {
    transform: translateX(calc(53px * 2));
}

.navigation ul li:nth-child(4).active ~ .indicator {
    transform: translateX(calc(54px * 3));
}

.navigation ul li:nth-child(5).active ~ .indicator {
    transform: translateX(calc(56px * 4));
}

.navigation ul li:nth-child(6).active ~ .indicator {
    transform: translateX(calc(57px * 5));
}

.navigation ul li:nth-child(7).active ~ .indicator {
    transform: translateX(calc(58px * 6));
}

h1 {
    text-align: center;
    margin: 10px;
    padding: 20px;
    color: white;
}

.animation {
    padding:30px;
    margin:0 auto;
    text-align: center;
    text-transform: uppercase;
    font-size: 50px;
    letter-spacing: 1px;
    color: white;
    animation: fadeIn 1.5s forwards;
    opacity: 0;
    transition-timing-function: cubic-bezier(0.785, 0.135, 0.15, 0.86);
}

.first {
    display: inline-block;
    animation: firstspan 1.5s forwards cubic-bezier(0.785, 0.135, 0.15, 0.86);
    background: #673ab7;
    z-index: 1;
    position: relative;
    font-weight: 500;
}

.slide {
    display: inline-flex;
    overflow: hidden;
}

.second {
    font-weight: 100;
    z-index: -1;
    display: inline-block;
    animation: secondspan 1.5s forwards cubic-bezier(0.785, 0.135, 0.15, 0.86);
}

@keyframes fadeIn {
    0%{
        opacity: 0;
        transition-timing-function: scale(1);
    }
    50%{
        opacity: 1;
        transition-timing-function: scale(1);
    }
    100%{
        opacity: 1;
        transition-timing-function: scale(1);
    }
}

@keyframes firstspan {
    0%{
        transform: translateX(100%);
    }
    40% {
        transform: translateX(100%);
    }
    100%{
        transform: translateX(0%);
    }
}

@keyframes secondspand {
    0%{
        transform: translateX(50%);
    }
    50% {
        transform: translateX(50%);
    }
    100%{
        transform: translateX(0%);
    }
}

h2 {
    margin: 10px;
    padding: 10px;
    text-align: center;
    color:white;
}

footer {
    position: relative;
    width: 100%;
    bottom: 0;
    left: 0;
    font-size:15px;
    min-height: 100px;
    background: rgb(143, 10, 135);
    padding: 20px 50px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  
  footer .social_icon, footer .menu {
    position: relative;
    display: flex;
    justify-content:center;
    align-items:center;
    margin: 10px 0;
  }
  
  footer .social_icon li, footer .menu li {
    list-style: none;
  }
  footer .social_icon li a {
    font-size: 2em;
    color: White;
    margin: 0 10px;
    display: inline-block;
    transition: 0.5s;
  }
  footer .social_icon li a:hover {
    transform: translateY(-15px);
    color: #48ff00;
  }
  
  footer .menu li a {
    font-size: 1.2em;
    color: White;
    margin: 0 10px;
    display: inline-block;
    transition: 0.5s;
    text-decoration: none;
    opacity: 0.75;
  }
  footer .menu li a:hover {
    opacity: 1;
    color: #fff;
  }
  p {
    color : #eee;
    text-align: center;
    margin-top: 15px;
    margin-bottom: 10px;
    font-size: 1.1em;
  }
  
  /*wave and animation*/
  footer .wave {
    position: absolute;
    top: -250px;
    left: 0;
    width: 100%;
    height: 100px;
    background: url(img/wave.png);
    background-size: 1000px 100px;
  }
  
  footer .wave#wave1 {
    z-index: 1000;
    opacity: 1;
    bottom: 0;
    animation: animateWave 4s linear infinite;
  }
  
  footer .wave#wave2 {
    z-index: 999;
    opacity: 0.5;
    bottom: 10px;
    animation: animateWave_02 4s linear infinite;
  }
  footer .wave#wave3 {
    z-index: 1000;
    padding: 10px;
    opacity: 0.2;
    bottom: 0;
    animation: animateWave 3s linear infinite;
  }
  
  footer .wave#wave4 {
    z-index: 999;
    opacity: 0.7;
    bottom: 20px;
    animation: animateWave_02 3s linear infinite;
  }
  
  @keyframes animateWave {
    0%{
      background-position-x: 1000px; 
    }
    100%{
      background-position-x: 0px; 
    }
  }
  
  @keyframes animateWave_02 {
    0%{
      background-position-x: 0px; 
    }
    100%{
      background-position-x: 1000px; 
    }
  }




.kartya{
	width: 900px;
	height: 500px;
	background-color: transparent;
	border-radius: 5px;
	padding-top: 25px;
	float: center;
	margin: auto;
    padding-bottom: 700px;
}

.pic{
	width: 700px;
	height: 200px;
	border-radius: 5px;
	margin: auto;
}

.pic img{
	width: 100%;
	border-radius: 5px;

}
.center {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 50%;
    padding: 5px;
}

.column {
    float: left;
    width: 33.33%;
    padding: 5px;
}

.row::after {
    content: "";
    clear: both;
    display: table;
}



/*
.navigation{
    position: relative;
    width: 60px;
    height: 60px;
    background:#fff ;
    border-radius: 50%;
    transition: 0.5s;
    transition-delay: 0.5s;
    border-radius: 60px;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    box-shadow: 0 10px 15px rgba(0,0,0,0.05);
}

.navigation .toggleMenu{
    position: absolute;
    width: 60px;
    height: 60px;
    background: #fff;
    border-radius: 50%;
    transition: 0.5s;
    display: flex;
    justify-content: center;
    transition-delay: 0.5s;
    align-items: center;
    cursor: pointer;
}

.navigation.active {
    width: 600px;
}

.navigation.active .toggleMenu {
    background: #0514ed;
    transition-delay: 0s;
    transform: translateY(60px);
    width:30px;
    height:30px;
    box-shadow: 0 10px 15px rgba(0,0,0,0.05);
}

.navigation .toggleMenu::before {
    content: "";
    position: absolute;
    width: 30px;
    height: 3px;
    border-radius: 3px;
    background: #333;
    transform: translateY(-5px);
    transition: 0.5s;
    transition-delay: 0.5s;
}

.navigation .toggleMenu::after {
    content: "";
    position: absolute;
    width: 30px;
    height: 3px;
    border-radius: 3px;
    background: #333;
    transform: translateY(5px);
    transition: 0.5s;
    transition-delay: 0.5s;
}

.navigation.active .toggleMenu::before {
   transition-delay: 0s;
    background: #fff;
   transform: translateY(0px) rotate(45deg) scale(0.6);
}

.navigation.active .toggleMenu::after {
    background: #fff;
    transform: translateY(0px) rotate(315deg) scale(0.6);
 }

 .navigation li {
    list-style: none;
    transition: 0.5s;
    transform: scale(0);
 }

 .navigation.active li {
    transition-delay: 0.5s;
    display: flex;
    transform: scale(1);
 }

 .navigation li a{
    text-decoration: none;
    color: #333;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    border-radius: 20px;
    padding: 5px 15px;
    transition: 0.5s;
 }

 .navigation li a:hover {
    background: #0514ed;
    color: #fff;

 }
    */


/* From Uiverse.io by Tokkstrr */ 
/*works janky on mobile :<*/
.container {
    position: relative;
    width: 500px;
    height: 500px;
    transition: 200ms;
    margin: auto;
  }
  
  .container:active {
    width: 500px;
    height: 245px;
  }
  
  #card {
    position: absolute;
    inset: 0;
    z-index: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 20px;
    transition: 700ms;
    background: chocolate;
  }
  
  .subtitle {
    transform: translateY(160px);
    color: rgb(143, 10, 135);
    text-align: center;
    width: 100%;
  }
  
  .title {
    opacity: 0;
    transition-duration: 300ms;
    transition-timing-function: ease-in-out-out;
    transition-delay: 100ms;
    position: absolute;
    font-size: 20px;
    margin-right: 10px;
    margin-left: 10px;
    text-align: center;
    color: blanchedalmond;
  }
  
  .tracker:hover ~ #card .title {
    opacity: 1;
  }
  
  #prompt {
    bottom: 8px;
    left: 12px;
    z-index: 20;
    font-size: 50px;
    font-weight: bold;
    transition: 300ms ease-in-out-out;
    max-width: 1000px;
    color: rgb(255, 255, 255);
  }
  
  .tracker {
    position: absolute;
    z-index: 200;
    width: 100%;
    height: 100%;
  }
  
  .tracker:hover {
    cursor: pointer;
  }
  
  .tracker:hover ~ #card #prompt {
    opacity: 0;
  }
  
  .tracker:hover ~ #card {
    transition: 300ms;
    filter: brightness(1.1);
  }
  
  .container:hover #card::before {
    transition: 200ms;
    content: "";
    opacity: 80%;
  }
  
  .canvas {
    perspective: 800px;
    inset: 0;
    z-index: 200;
    position: absolute;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    grid-template-rows: 1fr 1fr 1fr 1fr 1fr;
    gap: 0px 0px;
    grid-template-areas:
      "tr-1 tr-2 tr-3 tr-4 tr-5"
      "tr-6 tr-7 tr-8 tr-9 tr-10"
      "tr-11 tr-12 tr-13 tr-14 tr-15"
      "tr-16 tr-17 tr-18 tr-19 tr-20"
      "tr-21 tr-22 tr-23 tr-24 tr-25";
  }
  
  #card::before {
    content: "";
    background: blueviolet;
    opacity: 0%;
    width: 105%;
    height: 105%;
    border-radius: 20px;
    position: absolute;
    z-index: "-";
    transition: 200ms;
  }
  
  .tr-1 {
    grid-area: tr-1;
  }
  
  .tr-2 {
    grid-area: tr-2;
  }
  
  .tr-3 {
    grid-area: tr-3;
  }
  
  .tr-4 {
    grid-area: tr-4;
  }
  
  .tr-5 {
    grid-area: tr-5;
  }
  
  .tr-6 {
    grid-area: tr-6;
  }
  
  .tr-7 {
    grid-area: tr-7;
  }
  
  .tr-8 {
    grid-area: tr-8;
  }
  
  .tr-9 {
    grid-area: tr-9;
  }
  
  .tr-10 {
    grid-area: tr-10;
  }
  
  .tr-11 {
    grid-area: tr-11;
  }
  
  .tr-12 {
    grid-area: tr-12;
  }
  
  .tr-13 {
    grid-area: tr-13;
  }
  
  .tr-14 {
    grid-area: tr-14;
  }
  
  .tr-15 {
    grid-area: tr-15;
  }
  
  .tr-16 {
    grid-area: tr-16;
  }
  
  .tr-17 {
    grid-area: tr-17;
  }
  
  .tr-18 {
    grid-area: tr-18;
  }
  
  .tr-19 {
    grid-area: tr-19;
  }
  
  .tr-20 {
    grid-area: tr-20;
  }
  
  .tr-21 {
    grid-area: tr-21;
  }
  
  .tr-22 {
    grid-area: tr-22;
  }
  
  .tr-23 {
    grid-area: tr-23;
  }
  
  .tr-24 {
    grid-area: tr-24;
  }
  
  .tr-25 {
    grid-area: tr-25;
  }
  
  .tr-1:hover ~ #card {
    transition: 125ms ease-in-out;
    transform: rotateX(20deg) rotateY(-10deg) rotateZ(0deg);
  }
  
  .tr-2:hover ~ #card {
    transition: 125ms ease-in-out;
    transform: rotateX(20deg) rotateY(-5deg) rotateZ(0deg);
  }
  
  .tr-3:hover ~ #card {
    transition: 125ms ease-in-out;
    transform: rotateX(20deg) rotateY(0deg) rotateZ(0deg);
  }
  
  .tr-4:hover ~ #card {
    transition: 125ms ease-in-out;
    transform: rotateX(20deg) rotateY(5deg) rotateZ(0deg);
  }
  
  .tr-5:hover ~ #card {
    transition: 125ms ease-in-out;
    transform: rotateX(20deg) rotateY(10deg) rotateZ(0deg);
  }
  
  .tr-6:hover ~ #card {
    transition: 125ms ease-in-out;
    transform: rotateX(10deg) rotateY(-10deg) rotateZ(0deg);
  }
  
  .tr-7:hover ~ #card {
    transition: 125ms ease-in-out;
    transform: rotateX(10deg) rotateY(-5deg) rotateZ(0deg);
  }
  
  .tr-8:hover ~ #card {
    transition: 125ms ease-in-out;
    transform: rotateX(10deg) rotateY(0deg) rotateZ(0deg);
  }
  
  .tr-9:hover ~ #card {
    transition: 125ms ease-in-out;
    transform: rotateX(10deg) rotateY(5deg) rotateZ(0deg);
  }
  
  .tr-10:hover ~ #card {
    transition: 125ms ease-in-out;
    transform: rotateX(10deg) rotateY(10deg) rotateZ(0deg);
  }
  
  .tr-11:hover ~ #card {
    transition: 125ms ease-in-out;
    transform: rotateX(0deg) rotateY(-10deg) rotateZ(0deg);
  }
  
  .tr-12:hover ~ #card {
    transition: 125ms ease-in-out;
    transform: rotateX(0deg) rotateY(-5deg) rotateZ(0deg);
  }
  
  .tr-13:hover ~ #card {
    transition: 125ms ease-in-out;
    transform: rotateX(0deg) rotateY(0deg) rotateZ(0deg);
  }
  
  .tr-14:hover ~ #card {
    transition: 125ms ease-in-out;
    transform: rotateX(0deg) rotateY(5deg) rotateZ(0deg);
  }
  
  .tr-15:hover ~ #card {
    transition: 125ms ease-in-out;
    transform: rotateX(0deg) rotateY(10deg) rotateZ(0deg);
  }
  
  .tr-16:hover ~ #card {
    transition: 125ms ease-in-out;
    transform: rotateX(-10deg) rotateY(-10deg) rotateZ(0deg);
  }
  
  .tr-17:hover ~ #card {
    transition: 125ms ease-in-out;
    transform: rotateX(-10deg) rotateY(-5deg) rotateZ(0deg);
  }
  
  .tr-18:hover ~ #card {
    transition: 125ms ease-in-out;
    transform: rotateX(-10deg) rotateY(0deg) rotateZ(0deg);
  }
  
  .tr-19:hover ~ #card {
    transition: 125ms ease-in-out;
    transform: rotateX(-10deg) rotateY(5deg) rotateZ(0deg);
  }
  
  .tr-20:hover ~ #card {
    transition: 125ms ease-in-out;
    transform: rotateX(-10deg) rotateY(10deg) rotateZ(0deg);
  }
  
  .tr-21:hover ~ #card {
    transition: 125ms ease-in-out;
    transform: rotateX(-20deg) rotateY(-10deg) rotateZ(0deg);
  }
  
  .tr-22:hover ~ #card {
    transition: 125ms ease-in-out;
    transform: rotateX(-20deg) rotateY(-5deg) rotateZ(0deg);
  }
  
  .tr-23:hover ~ #card {
    transition: 125ms ease-in-out;
    transform: rotateX(-20deg) rotateY(0deg) rotateZ(0deg);
  }
  
  .tr-24:hover ~ #card {
    transition: 125ms ease-in-out;
    transform: rotateX(-20deg) rotateY(5deg) rotateZ(0deg);
  }
  
  .tr-25:hover ~ #card {
    transition: 125ms ease-in-out;
    transform: rotateX(-20deg) rotateY(10deg) rotateZ(0deg);
  }
  
  .noselect {
    -webkit-touch-callout: none;
    /* iOS Safari */
    -webkit-user-select: none;
    /* Safari */
    /* Konqueror HTML */
    -moz-user-select: none;
    /* Old versions of Firefox */
    -ms-user-select: none;
    /* Internet Explorer/Edge */
    user-select: none;
    /* Non-prefixed version, currently
                                      supported by Chrome, Edge, Opera and Firefox */
  }
  
.booking-form {
  width: 100%;
  max-width: 400px;
  padding: 20px;
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0px 0px 15px rgba(0,0,0,0.2);
  transition: transform 0.3s ease, box-shadow 0.3 ease ;
}

/* Animáció megnyitáskor */
.booking-form.hover {
  transform: scale(1.05);
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.3);
}

/* Input mezők */
.booking-form input,
.booking-form select {
  width: 100%;
  padding: 12px;
  margin: 10px 0;
  border-radius: 5px;
  border: 1px solid #ccc;
  transition: box-shadow 0.3 ease, transform 0.2 ease;
}

/* Belekattintáskor a mezők kiemelkednek */
.booking-form input:focus,
.booking-form select:focus {
  box-shadow: 0px 0px 10px rgba(255, 87, 51, 0.7);
  transform: scale(1.02);
}

/* Küldés gomb */
.booking-form button {
  width: 100%;
  padding: 12px;
  background: #28a745;
  color: white;
  border: none;
  border-radius: 5px;
  font-size: large;
  cursor: pointer;
  transition: background 0.3 ease, transform 0.2 ease;
}

/* Hover effekt a gombon */
.booking-form button:hover {
    background: #e64a19;
    transform: scale(1.05);
}