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

body {
    background-color: #f7f7f7;
}


/* Banner Section */
#banner {
    background: url('images/newbackground.webp') no-repeat center center;
    background-size: cover;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center; 
    text-align: center;
    position: relative; 
}

.banner-text {
    color: white;
    padding: 20px;
    max-width: 80%;
    margin-bottom: 0; /* deleting space */
    display: flex;
    flex-direction: column;
    align-items: center; 
    justify-content: center;
    
}

.logo {
    width: 700px;  
    margin-top: -100px;  /*logo goes up*/
}
.banner-text h1 {
    font-size: 50px;
    font-weight: bold;
    margin-bottom: 10px; 
}

.banner-text p {
    font-size: 20px;
    font-style: italic;
    margin-bottom: 2px; /*button nearest */
}

.banner-btn {
    display: flex;
    flex-direction: column;
    align-items: center;  
    position: absolute;
    bottom: 20%;  
    z-index: 2;
    margin-top: 400px;
}

.banner-btn a {
    width: 250px;  
    text-decoration: none;
    display: inline-block;
    padding: 15px 0;  
    color: #ffffff;
    border: .5px solid #ffffff;
    position: relative;
    z-index: 1;
    transition: color 0.5s;
    text-align: center;
    font-size: 22px;  
}
.banner-btn a span {
    width: 0;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: #E9C664;
    z-index: -1;
    transition: 0.5s;
}

.banner-btn a:hover span {
    width: 100%;
}

.banner-btn a:hover {
    color: black;
}


#menuContainer {
    max-width: 1200px; 
    width: 50%;
    margin: 0 auto;
    
}


@keyframes fadeIn {
    from {
        background-color: transparent;
    }
    to {
        background-color: #2c2c31d9; 
    }
}

.fadeIn {
    animation: fadeIn 0.5s forwards;
}



#language-toggle {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    display: flex;
    align-items: center;
    margin-top: -8px;
  }

.confirmation-page {
  min-height: 100vh;
  min-height: 100svh;
  background: #111;
}

.confirmation-hero {
  min-height: 100vh;
  min-height: 100svh;
  padding: 42px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  position: relative;
  overflow-x: hidden;
  overflow-y: auto;
  background:
    linear-gradient(rgba(0, 0, 0, 0.64), rgba(0, 0, 0, 0.78)),
    url("images/newbackground.webp") center / cover no-repeat;
}

.confirmation-logo {
  width: min(360px, 74vw);
  display: block;
  flex-shrink: 0;
}

.confirmation-logo img {
  width: 100%;
  display: block;
}

.confirmation-panel {
  width: min(720px, 100%);
  padding: 42px 38px;
  border: 1px solid rgba(233, 198, 100, 0.72);
  border-radius: 8px;
  background: #050505;
  color: #fff;
  text-align: center;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.32);
}

.confirmation-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 22px;
  border-radius: 50%;
  background: #E9C664;
  position: relative;
}

.confirmation-icon::after {
  content: "";
  position: absolute;
  left: 22px;
  top: 17px;
  width: 17px;
  height: 29px;
  border: solid #111;
  border-width: 0 5px 5px 0;
  transform: rotate(45deg);
}

.confirmation-kicker {
  margin-bottom: 10px;
  color: #E9C664;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
}

.confirmation-panel h1 {
  margin-bottom: 16px;
  font-size: clamp(32px, 5vw, 54px);
  line-height: 1.08;
  overflow-wrap: anywhere;
}

.confirmation-text {
  max-width: 560px;
  margin: 0 auto;
  color: #fff;
  font-size: 19px;
  line-height: 1.55;
}

@media screen and (max-width: 640px) {
  .confirmation-hero {
    padding: 28px 16px;
    justify-content: center;
    gap: 20px;
  }

  .confirmation-logo {
    width: min(260px, 76vw);
  }

  .confirmation-panel {
    width: 100%;
    padding: 28px 18px;
  }

  .confirmation-icon {
    width: 54px;
    height: 54px;
    margin-bottom: 18px;
  }

  .confirmation-icon::after {
    left: 19px;
    top: 14px;
    width: 14px;
    height: 25px;
    border-width: 0 4px 4px 0;
  }

  .confirmation-kicker {
    font-size: 12px;
  }

  .confirmation-panel h1 {
    font-size: clamp(28px, 9vw, 36px);
    line-height: 1.12;
  }

  .confirmation-text {
    font-size: 16px;
    line-height: 1.5;
  }
}

@media screen and (max-width: 380px) {
  .confirmation-hero {
    padding: 22px 12px;
    gap: 16px;
  }

  .confirmation-logo {
    width: min(220px, 74vw);
  }

  .confirmation-panel {
    padding: 24px 14px;
  }

  .confirmation-panel h1 {
    font-size: 26px;
  }

  .confirmation-text {
    font-size: 15px;
  }
}

@media screen and (max-height: 620px) and (orientation: landscape) {
  .confirmation-hero {
    padding: 18px;
    gap: 14px;
  }

  .confirmation-logo {
    width: 180px;
  }

  .confirmation-panel {
    padding: 22px 20px;
  }

  .confirmation-icon {
    width: 46px;
    height: 46px;
    margin-bottom: 12px;
  }

  .confirmation-icon::after {
    left: 16px;
    top: 12px;
    width: 12px;
    height: 21px;
    border-width: 0 4px 4px 0;
  }

  .confirmation-panel h1 {
    margin-bottom: 10px;
    font-size: 28px;
  }

  .confirmation-text {
    font-size: 15px;
  }
}

.terms-page {
  min-height: 100vh;
  min-height: 100svh;
  background: #050505;
  color: #fff;
}

.terms-shell {
  min-height: 100vh;
  min-height: 100svh;
  padding: 36px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  background:
    linear-gradient(rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.86)),
    url("images/newbackground.webp") center / cover no-repeat;
}

.terms-logo {
  width: min(320px, 74vw);
  display: block;
  flex-shrink: 0;
}

.terms-logo img {
  width: 100%;
  display: block;
}

.terms-panel {
  width: min(920px, 100%);
  padding: 42px;
  border: 1px solid rgba(233, 198, 100, 0.72);
  border-radius: 8px;
  background: #050505;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
}

.terms-kicker {
  margin-bottom: 10px;
  color: #E9C664;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
}

.terms-panel h1 {
  margin-bottom: 16px;
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1.08;
}

.terms-lead {
  max-width: 760px;
  color: #f3f3f3;
  font-size: 19px;
  line-height: 1.55;
}

.terms-grid {
  margin-top: 32px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.terms-grid section {
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
}

.terms-grid h2 {
  margin-bottom: 10px;
  color: #E9C664;
  font-size: 20px;
  line-height: 1.2;
}

.terms-grid p {
  color: #fff;
  font-size: 16px;
  line-height: 1.55;
}

@media screen and (max-width: 720px) {
  .terms-shell {
    padding: 28px 16px;
    gap: 20px;
  }

  .terms-logo {
    width: min(260px, 76vw);
  }

  .terms-panel {
    padding: 28px 18px;
  }

  .terms-panel h1 {
    font-size: clamp(30px, 9vw, 38px);
    overflow-wrap: anywhere;
  }

  .terms-lead {
    font-size: 16px;
  }

  .terms-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .terms-grid section {
    padding: 18px;
  }

  .terms-grid h2 {
    font-size: 18px;
  }

  .terms-grid p {
    font-size: 15px;
  }
}

@media screen and (max-width: 380px) {
  .terms-shell {
    padding: 22px 12px;
  }

  .terms-logo {
    width: min(220px, 74vw);
  }

  .terms-panel {
    padding: 24px 14px;
  }
}

@media screen and (max-height: 620px) and (orientation: landscape) {
  .terms-shell {
    padding: 18px;
    gap: 14px;
  }

  .terms-logo {
    width: 180px;
  }

  .terms-panel {
    padding: 22px 20px;
  }
}
  
  #language-icon {
    width: 32px;
    height: auto;
    transition: transform 0.2s ease;
  }
  
  #language-toggle:hover #language-icon {
    transform: scale(1.05);
  }
  
  
#sideNav {
    width:fit-content; 
    height: 80px;
    border-radius: 16px; /* vagy nagyobb pl. 24px ha még kerekebb kell */
    position:fixed;
    top: 20px;
    left: 70%; 
    transform: translateX(-20%); 
    display: flex;
    justify-content: flex-end; 
    align-items: center; 
    padding: 0 20px; 
    box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.2);
    z-index: 200;
}
nav ul {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
    
}

nav ul li {
    margin-left: 20px;
}

nav ul li a {
    text-decoration: none;
    color: #ffffff;
    font-size: 20px;
    transition: color 0.3s;
    text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.5); 
}




nav ul li a:hover {
    color: #E9C664;
}



/* Hamburger menü */
#menuBtn {
    display: none; /*hidden */
    position: fixed;
    right: 20px;
    top: 20px;
    background: #E9C664;
    padding: 10px;
    border-radius: 5px;
    z-index: 1000;
}


#menuBtn svg {
    cursor: pointer;
    transition: transform 0.2s ease;
    will-change: transform;
  }
  
  #menuBtn:hover svg {
    transform: scale(1.05);
  }

#menuBtn img{
    cursor: pointer;
    width: 20px;
    margin-top: 15px;
}
/* Logo méret mobilnézetben */
@media (max-width: 768px) {
    .logo {
        width: 350px !important;
        margin-bottom: 10px !important;
        position: static !important;
    }
}


/* mobile */
@media (max-width: 768px) {
    #menuBtn {
        display: block;
        background: #E9C664;
        width: 45px;
        height: 45px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    #menuBtn i {
        color: #2d2c31;
        font-size: 24px;
    }
    
    #sideNav {
        opacity: 0;
        pointer-events: none;
        transform: translateX(-50%) translateY(-20px);
        transition: opacity 0.3s ease, transform 0.3s ease;
        position: fixed;
        top: 20px;
        left: 74%;
        width: 40%;
        max-width: 300px;
        background: rgba(0,0,0,0.9);
        backdrop-filter: blur(10px);
        border-radius: 15px;
        padding: 20px;
        box-shadow: 0 8px 32px rgba(0,0,0,0.3);
        height: auto;
        min-height: 300px;
        z-index: 999;
        will-change: opacity, transform;
    }
    
    #sideNav.active {
        opacity: 1;
        pointer-events: auto;
        transform: translateX(-50%) translateY(0);
    }
    
    nav ul {
        flex-direction: column;
        gap: 15px;
    }
    
    nav ul li {
        margin: 0;
    }
    
    nav ul li a {
        font-size: 18px;
        color: #fff;
        padding: 12px;
        display: block;
        border-radius: 8px;
        transition: all 0.3s;
    }
    
    nav ul li a:hover {
        background: rgba(255,255,255,0.1);
        color: #E9C664;
        transform: translateX(5px);
    }
    
    /* Close button */
    .close-btn {
        position: absolute;
        top: 15px;
        right: 15px;
        color: #fff;
        font-size: 24px;
        cursor: pointer;
    }
}

/* feature section */
#feature {
    background: url('images/newbackground.webp') ;
    color: white;
    padding: 70px 20px;
  }
  
  .title-text {
    text-align: center;
    margin-bottom: 40px;
  }
  
  .title-text p {
    font-size: 20px;
    color: #E9C664;
    font-weight: bold;
  }
  
  .title-text h1 {
    font-size: 36px;
    color: white;
    font-weight: bold;
  }
  
  .price-list-container {
    display: flex;
    justify-content: center;
    gap: 80px;
    flex-wrap: wrap;
    max-width: 1000px;
    margin: 0 auto;
  }
  
  .price-column {
    flex: 1 1 300px;
  }
  
  .price-column h2 {
    color: #E9C664;
    margin-bottom: 15px;
    font-weight: bold;
  }
  
  .price-column ul {
    list-style: none;
    padding: 0;
  }
  
  .price-column li {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #444;
    font-size: 16px;
  }
  
  .price-column li .price {
    color: #E9C664;
    font-weight: bold;
  }
  
  .kids-senior {
    text-align: center;
    margin-top: 40px;
  }
  
  .kids-senior h2 {
    color: #E9C664;
    font-weight: bold;
    font-size: 22px;
  }
  
  .kids-senior p {
    font-size: 16px;
    margin: 8px 0;
  }
  
  .kids-senior .price {
    font-size: 22px;
    color: #E9C664;
    font-weight: bold;
  }
  
  /* mobile */
  @media screen and (max-width: 768px) {
    .price-list-container {
      flex-direction: column;
      align-items: center;
      gap: 40px;
    }
  
    .price-column {
      width: 90%;
    }
  
    .title-text h1 {
      font-size: 28px;
    }
  
    .price-column li {
      font-size: 15px;
    }
  }
  
/* ticketanim - 3D-s rectangle */
.title-text p::after {
    content: '';
    width: 50px;
    height: 50px;
    position: absolute;
    top: -25px;
    left: 45%;
    background-color: #3f4045;
    transform-style: preserve-3d;
    animation: rotateCube 25s infinite linear;
    z-index: -1;
}

/* ticketanim 2.animacio - 3D-s rectangle */

.title-text p1 {
    position: relative;
    
    overflow: hidden;
    margin: auto;
    font-size: 35px;
    color: #E9C664;
    font-weight: bold;
    position: relative;
    z-index: 1;
    display: inline-block;
    border: #fff;
    transform-origin: center;
}

.title-text p1::after {
    content: '';
    width: 500px;
    height: 550px;
    position: absolute;
    top: -305px;
    left: -255px;
    background-color: #3f4045;
    transform-style: preserve-3d;
    animation: rotateCube 25s infinite linear;
    z-index: -1;
}

.title-text p2{
    overflow: hidden;
    margin: auto;
    font-size: 25px;
    color: #E9C664;
    font-weight: bold;
    position: relative;
    z-index: 1;
    display: inline-block;
    border: #fff;
    transform-origin: center;
}

@keyframes rotateCube {
    0% {
        transform: translateZ(-100px) rotateX(0deg) rotateY(0deg) rotateZ(0deg);
    }
    50% {
        transform: translateZ(-100px) rotateX(180deg) rotateY(180deg) rotateZ(180deg);
    }
    100% {
        transform: translateZ(-100px) rotateX(360deg) rotateY(360deg) rotateZ(360deg);
    }
}




.title-text {
    position: relative;
}

.title-text p {
    position: relative;
    z-index: 1;
}

@keyframes rotateCube {
    0% {
        transform: translateZ(-50px) rotateX(0deg) rotateY(0deg) rotateZ(0deg);
    }
    50% {
        transform: translateZ(-50px) rotateX(180deg) rotateY(180deg) rotateZ(180deg);
    }
    100% {
        transform: translateZ(-50px) rotateX(360deg) rotateY(360deg) rotateZ(360deg);
    }
}




.title-text p::after:before,
.title-text p::after:after {
    content: '';
    position: absolute;
    width: 100px;
    height: 100px;
    
}



/* icons changing to custom (maybe deleting this)'*/

.title-text p::after:before {
    background-color: #c21010; /* Második oldal színe */
    transform: rotateY(90deg);
}

.title-text p::after:after {
    background-color: #4CAF50; /* Harmadik oldal színe */
    transform: rotateX(90deg);
}

.title-text h1{
    color: #ffffff;
    font-size: 50px ;
}

.feature-box{
    
    
    width: 80%;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    text-align: center;
}

.features{
    flex-basis: 50%;
    
}
.features-img{
    flex-basis: 50%;
    margin: auto;
}
.features-img img{
    width: 70%;
    border-radius: 10px;
    
}

.features h1{
    text-align: left;
    margin-bottom: 10px;
    font-weight: 100;
    color: #E9C664;
    
}

.features-desc{
    display: flex;
    align-items: center;
    margin-bottom: 40px;
    
}

.feature-icon .bi{
    width: 50px;
    height: 500px;
    font-size: 30px;
    line-height: 50px;
    border-radius: 8px;
    color: #E9C664;
    border: 1px solid #E9C664;
    
}

.feature-text p{
    padding: 0 20px;
    text-align: initial;
    
}

@media screen and (max-width: 770px){
   .title-text h1{
        font-size: 35px;
    }
    .features{
        flex-basis: 100%;
    }
    .features-img{
        flex-basis: 100%;
    }
    .features-img img{
        width: 100%;
    }
}

/*3.part service
*/

#service {
    background: url('images/newbackground.webp') ;
    width: 100%;
    padding: 70px 0;
}

.service-box {
    width: 80%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between; 
    margin: auto;
}




/* Custom butto from Uiverse.io by btongheng */ 
.button {
    --😀: #ffffff86;
    --😀😀: #4c4b47;
    --😀😀😀: #f7f7f7;
    cursor: pointer;
    width: 250px;            /* Increase the width */
    height: 60px;    
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    font-size: 1.5em;        /* Increase font size */    
    font-weight: 800;
    letter-spacing: 2px;
    color: #fff;
    background: var(--😀);
    border: 2px solid var(--😀😀);
    border-radius: .75rem;
    box-shadow: 0 8px 0 var(--😀😀);
    transform: skew(-10deg);
    transition: all .1s ease;
    filter: drop-shadow(0 15px 20px var(--😀😀😀));
    margin-top: 150px;
  }
  
  a.button {
    text-decoration: none !important;
    color: inherit !important;
  }
  

  .banner-btn a {
    text-decoration: none;
    outline: none;
    border: none;
  }
  
  
  .button:active {
    letter-spacing: 0px;
    transform: skew(-10deg) translateY(8px);
    box-shadow: 0 0 0 var(--😀😀😀);
  }


 /* From Uiverse.io by aasisodiya */ 
.buttonBlack {
  background-color: #E9C664;
  border: none;
  padding: 1rem;
  font-size: 1rem;
  width: 10em;
  border-radius: 1rem;
  color: #000;
  box-shadow: 0 0.4rem #dfd9d9;
  cursor: pointer;
 }
 
 button:active {
  color: gray;
  box-shadow: 0 0.2rem #dfd9d9;
  transform: translateY(0.2rem);
 }
 
 button:hover:not(:disabled) {
  background: gray;
  color: white;
  
 }
 
 button:disabled {
  cursor: auto;
  color: grey;
 }

/* Service Box */
/* SHOPS section  */
.service-box {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
    margin: auto;
    position: relative;
}

/*  shop box */
.single-service {
    flex-basis: 30%;
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    text-align: center;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

/* images */
.single-service img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

/* zoom to pic */
.single-service:hover img {
    transform: scale(1.05);
}

/* Overlay with hover */
.shop-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.75);
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: 10px;
    z-index: 2;
}

/* Hover came overlay */
.single-service:hover .shop-overlay {
    opacity: 1;
}

/* shops name */
.shop-overlay h3 {
    font-size: 22px;
    margin-bottom: 10px;
    font-weight: bold;
}

/* address+phone */
.shop-overlay p {
    margin: 5px 0;
    font-size: 14px;
}

/* reservation button */

.shop-button {
    margin-top: 20px;
    background-color: #E9C664;
    color: black;
    padding: 14px 30px;         
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 18px;             
    transition: background-color 0.3s ease;
    display: inline-block;
  }
  
.shop-button:hover {
    background-color: #d2b14f;
}

.shop-button:disabled {
  cursor: not-allowed;
  opacity: 0.55;
}

.shop-button:disabled:hover {
  background-color: #E9C664;
}

.shop-button.active {
  background-color: #2d2c31 !important; 
  color: #fff !important;              
  border: none !important;
  box-shadow: inset 0 0 0 2px #fff;    
}


.shop-address {
    color: white;
    text-decoration: none;
    font-size: 14px;
    line-height: 1.4;
    display: inline-block;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.shop-address:hover {
    color: #E9C664;
    text-decoration: underline;
}

/* mobile */
@media screen and (max-width: 770px) {
    .service-box {
        flex-direction: column;
        align-items: center;
    }

    .single-service {
        flex-basis: 100%;
    }

    .shop-overlay h3 {
        font-size: 18px;
    }

    .shop-overlay p {
        font-size: 13px;
    }

    .shop-button {
        padding: 12px 24px;
        font-size: 16px;
        border-radius: 6px;
      }
}

/*review part*/

.container{
    width: 100%;
    height: 100%;
    
    display: flex;
    align-items: center;
    justify-content: center;
}

#client-reviews {
    background-color: #f7f7f7;
    padding: 50px 20px;
    text-align: center;
}

.section-title h2 {
    font-size: 36px;
    font-weight: bold;
    color: #000;
    margin-bottom: 10px;
}

.google-logo {
    height: 24px;
    width: auto;
    vertical-align: middle;
    margin-right: 8px;
    margin-top: -4px;
  }
  


/* Star Rating */
.rating {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 24px;
    color: #E9C664;
    justify-content: center; 
}

.star {
    color: #E9C664; /* Full star color */
}

.star.half {
    color: #E9C664; /* Half star color */
}

.rating-text {
    font-size: 18px;
    color: #333;
    margin-left: 10px;
}

.section-title h3 {
    font-size: 24px;
    color: #E9C664;
    margin-bottom: 30px;
}

.reviews {
    background-color: #f7f7f7;
    display: flex;
    justify-content: space-between;
    gap: 50px;
    margin-bottom: 40px;
}

.review-item {
    background-color: transparent; 
    padding: 20px;
    border-radius: 10px;
    box-shadow: none; 
    width: 30%; 
    text-align: center;
}

.review-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #ddd;
    margin-bottom: 15px;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.5); 
}

.review-item p {
    
    font-size: 14px;
    color: #333;
    margin-bottom: 10px;
}

.review-item h4 {
    font-size: 16px;
    font-weight: bold;
    color: #333;
}


.social-links {
    margin-bottom: 20px;
}

.social-links a {
    margin: 0 10px;
    font-size: 24px;
    color: #333;
    text-decoration: none;
}

.social-links a:hover {
    color: #E9C664;
}


/*Contact us*/
.contact-info {
    
    color: #fff;
    padding: 40px 20px;
    text-align: left;
}

.contact-info h3 {
    font-size: 30px;
    margin-bottom: 20px;
}

.contact-info p {
    font-size: 16px;
    margin-bottom: 10px;
}

.contact-details p {
    margin-bottom: 5px;
    
}

.contact-details strong {
    color: #E9C664;
}


#client-reviews {
    margin-bottom: -10px; /*tried negative marigin, works */
}


/*Phone */
@media (max-width: 768px) {
    
    #client-reviews,
  .reviews {
    display: none !important;
  }
}




/* Galery section*/
#gallery {
    background-color: #f7f7f7;
    padding: 60px 20px;
    margin-top: -40px
}

#gallery .title-text p {
    color: #E9C664;
    font-size: 20px;
    text-align: center;
    font-weight: bold;
}

#gallery .title-text h1 {
    color: #1f1f1f;
    font-size: 40px;
    text-align: center;
    margin-bottom: 40px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
}

.gallery-grid a {
    display: block;
    overflow: hidden;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.gallery-grid a:hover {
    transform: scale(1.05);
}

.gallery-grid img {
    width: 100%;
    height: 250px; /* fix height all pic */
    object-fit: cover; /* pic cutting for fitting */
    border-radius: 10px;
    display: block;
}

@media (max-width: 768px) {
    #gallery {
      padding: 30px 10px;
    }
  
    .gallery-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr); /* 2 colums on mobile */
      gap: 10px;
      padding: 0 10px;
      max-width: 100%;
    }
  
    .gallery-grid a {
      border-radius: 6px;
      overflow: hidden;
      display: block;
      width: 100%;
      height: 150px; /* fix height */
    }
  
    .gallery-grid img {
      width: 100%;
      height: 100%;
      object-fit: cover; /* cutting pic to not scretch */
      display: block;
      border-radius: 6px;
    }
  }
  


  .image {
    
    perspective: 3000px;
    width: 300px; 
    height: 200px;
    position: relative;
    transform-style: preserve-3d;
    transition: transform 0.4s;
  }
    .image img {
    width: 100%;
    height: 100%;
    transform: rotateX(70deg) rotateZ(-60deg) translate3d(-120px, 0px, 70px);
    box-shadow: -80px 60px 15px 5px rgba(0, 0, 0, 0.4);
    transition: all 0.4s;
    transform-style: preserve-3d;
  }
  
  .image:hover img {
    transform: rotateX(0deg) rotateZ(0deg) translate3d(0px, 0px, 0px);
    box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.0);
  }
  
  .image:hover {
    transform: translateY(-10px);
  }
  




/* Footer Section */
#footer {
    background-color: #f7f7f7; 
    color: #000; 
    text-align: center;
    padding: 50px 20px;
    position: relative;
    
}

.title-text p {
    font-size: 18px;
    color: #E9C664;
}

.title-text h1 {
    font-size: 40px;
    font-weight: bold;
    margin-top: 10px;
    color: white 
}



.contact-details {
    
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-top: 40px;
    flex-wrap: wrap;
    
}

.contact-item {
    display: flex;
    flex-direction: column; 
    align-items: center;
    gap: 10px; 
    text-align: center;
    max-width: 250px; 
}

.contact-icon {
    width: 40px;  
    height: 40px;
    object-fit: contain;
}

.contact-info {
    font-size: 16px;
    color: #000;
    text-align: center;
}

.contact-info strong {
    color: #E9C664;
}

.contact-info p {
    margin-top: 5px;
    font-size: 14px;
    color: #333;
}


p {
    
    font-size: 18px;
    
    line-height: 1.6;
    text-align: center;
}

footer {
    background-color: #f7f7f7 ;
    padding: 10px 0;
    text-align: center;
}

footer p {
    color: white;
    margin: 0;
    font-size: 18px;
    line-height: 1.6;
}

/* style links */
a {
    
    color: #2d2c31; 
    text-decoration: none;
}


a:hover {
    text-decoration: underline; 
}


.footer-row{
    

    
    width: 80%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.footer-left,.footer-right{
    
    
    flex-basis: 45%;
    padding: 10px;
    margin-bottom: 20px;
    margin-top: -40px
}
.footer-right{
    text-align: right;
}
.footer-row h1{
    
    margin: 10px 0;
}
.footer-row p{
    
    line-height: 35px;
}
.footer-left .fa,.footer-right .fa{
    font-size: 20px;
    
    margin: 10px;
}
.footer-img{

    max-width: 370px;
    opacity: 0.1;
    position: absolute;
    left: 50%;
    top: 35%;
    transform: translate(-50%,-50%);
}
.feature-icon{
    text-align: center;
    
}


.social-links {
  text-align: center;
  padding: 30px 0;
  background-color: #f7f7f7;
}

.social-links a {
  margin: 0 10px;
  display: inline-block;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.social-links img {
  width: 32px;
  height: 32px;
  filter: invert(0%); 
  transition: filter 0.3s, transform 0.3s;
}

.social-links a:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.social-links a:hover img {
  transform: scale(1.5);
  filter: invert(58%) sepia(80%) saturate(400%) hue-rotate(10deg) brightness(98%) contrast(95%);
}


@media screen and (max-width: 770px){
    .footer-left,.footer-right{
        flex-basis: 100%;
        font-size: 14px;
    }
    .footer-img{
        top: 25%;
    }
    .contact-details {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 12px;
        padding: 0 10px;
      }
    
      .contact-item {
        width: 45%;
        max-width: 45%;
        padding: 10px 0;
      }
    
      .contact-icon {
        width: 24px;
        height: 24px;
      }
    
      .contact-item strong {
        font-size: 13px;
        color: #E9C664;
      }
    
      .contact-item p {
        font-size: 13px;
        margin: 4px 0;
      }
}

/* Rezervace*/
.reservation-section {
    background: #f7f7f7;
    padding: 60px 20px;
    max-width: 900px;
    margin: auto;
    font-family: 'Montserrat', sans-serif;
  }
  .step {
    margin-bottom: 40px;
    
  }

  /*rezervace*/
  .circle {
    background: black;
    color: white;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    font-weight: bold;
    font-size: 21px;
    flex-shrink: 0;
    margin-right: 50px;
    position: relative; 

  }
  /*rezervace*/
  .circle-step-3 {
    top: -20px; 
  }
  /*rezervace*/
  .circle-step-4 {
    top: -20px;
  }
  /*rezervace*/
.locations-select {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
/*rezervace*/
.locations-select label {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 100px;
}
/*rezervace*/
.locations-select img {
  width: 70px;
  height: 70px;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid #ccc;
}
/*rezervace*/
.locations-select p {
  margin: 0.3em 0 0;
  font-size: 0.85rem;
}
/*rezervace*/
  .categories, .services, .time-slots, .slots {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 15px;
    
  }
  /*rezervace*/
  .category-btn {
    padding: 12px 24px;
    border-radius: 25px;
    border: none;
    background-color: gray;
    color: white;
    font-weight: bold;
    cursor: pointer;
    margin-left: 50px;
  }
  /*rezervace*/
  .category-btn.active {
    background-color: black;
  }
  /*rezervace*/
  .services label {
    width: 100%;
    padding: 10px;
    background: #eee;
    border-radius: 8px;
    cursor: pointer;
  }
  /*rezervace*/
  .slots {
    gap: 10px;
    display: flex;
    flex-wrap: wrap;
    margin-top: 10px;
  }
  /*rezervace*/
  .slots div, .slots span {
    background: #ddd;
    padding: 8px 12px;
    border-radius: 6px;
    cursor: pointer;
  }
  /*rezervace*/
  .booking-form input, .booking-form textarea {
    width: 100%;
    margin: 10px 0;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 6px;
  }
  /*rezervace*/
  .booking-form textarea {
    height: 100px;
  }

  /*rezervace*/
  .checkboxes {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 20px;
    margin-left: 10px;
    font-size: 15px;
    font-weight: 500;
    color: #2d2c31;
  }
  
  /*rezervace*/
  .checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
  }
  
  /*rezervace*/
  .checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: #E9C664; 
    cursor: pointer;
    flex-shrink: 0;
  }
  
/*rezervace*/
  .time-btn.selected {
    background-color: black !important;
    color: white;
    font-weight: bold;
  }
  /*rezervace*/
  .reservation-card {
    position: relative;
    padding-left: 50px;
  }
  /*rezervace*/
  .step-line {
    position: absolute;
    top: 20px;
    height: 0px; 
    left: 20px;
    width: 4px;
    background-color: black;
    z-index: 0;
  }
  
  /*rezervace*/
  .step-line-0-1 {
    position: absolute;
    top: 10px;           
    height: 240px;       
    left: 20px;
    width: 4px;
    background-color: black;
    z-index: 0;
    display: none;       
  }
  
/*rezervace*/
  .step-line-2-3 {
    position: absolute;
    top: 110px;         
    height: 260px;      
    left: 20px;
    width: 4px;
    background-color: black;
    z-index: 0;
  }
  /*rezervace*/
  .step-line-3-4 {
    position: absolute;
    top: 260px;     
    height: 500px;      
    left: 20px;
    width: 4px;
    background-color: black;
    z-index: 0;
    display: none;
  }
  /*rezervace*/
  .step-line-4-6 {
    position: absolute;
    top: 600px;         
    height: 700px;      
    left: 20px;
    width: 4px;
    background-color: black;
    z-index: 0;
    display: none;
  }
  
/*rezervace*/
  .step h2 {
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
    z-index: 1;
    margin-left: -50px;
  }
  


  /*rezervace*/
  /* Reservation calendar layout fix */
  .step-horizontal {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 10px;
    position: relative;
  }
  /*rezervace*/
  .step-horizontal::before {
    content: "";
    position: absolute;
    height: 4px;
    background-color: black;
    top: 1%; /* A vonal most feljebb lesz */
    left: -15px; /* A vonal a 3. lépés bal szélénél kezdődik */
    right: 50%; /* A vonal rövidebb, a jobb oldalon le van vágva */
    z-index: 0;
    display: none; 
  }
  /*rezervace*/
  .step-horizontal.active::before {
    display: block; /* A vonal csak akkor jelenik meg, ha az .active osztály hozzáadódik */
  }
  /*rezervace*/
  .step-horizontal h2 {
    position: relative;
    z-index: 1;
  }
  
  /*rezervace*/
  .date-block {
    flex: 0 0 48%;
    max-width: 48%;
    min-width: 240px;
    display: none; 
  }
  /*rezervace*/
  .time-block {
    flex: 0 0 48%;
    max-width: 48%;
    display: none; 
  }
  /*rezervace*/
  .calendar-small {
    display: block;
    width: 100%;
    font-size: 1px;
    padding: 0;
    min-height: 200px;
  }
  /*rezervace*/
  .datepicker {
    width: 100%;
    max-width: 250px;
    font-size: 13px;
    padding: 0;
  }
  /*rezervace*/
  .datepicker .datepicker-main {
    width: 100%;
  }
  /*rezervace*/
  .datepicker .days,
  .datepicker .datepicker-grid {
    width: 100%;
    justify-content: space-between;
  }
  /*rezervace*/
  .datepicker .datepicker-controls {
    justify-content: space-between;
  }
  /*rezervace*/
  /* Fix datepicker year/decade button style */
  .datepicker .datepicker-controls .button.view-switch {
    background: transparent;
    font-weight: bold;
    font-size: 10px;
    color: #000;
    padding: 2px 6px;
    border-radius: 14px;
  }
  /*rezervace*/
  .datepicker .datepicker-controls .button.view-switch:hover {
    background: #000;
    color: #fff;
  }
  
  /*rezervace*/
  /* contact first hidden */
  #contact-step {
    display: none;
  }

/*rezervace*/
  @media (max-width: 768px) {
    .step-line,
    .step-line-0-1,
    .step-line-1-2,
    .step-line-2-3,
    .step-line-3-4,
    .step-line-4-6,
    .step-horizontal::before {
      display: none !important;
    }
  
    
    .step h2 {
      font-size: 1rem;
    }
    .category-btn {
      padding: 8px 16px;
      font-size: 0.85rem;
    }
    .services label {
      font-size: 0.75rem;
      padding: 6px;
    }
    .booking-form input,
    .booking-form textarea {
      font-size: 0.85rem;
      padding: 8px;
    }
    .circle {
      width: 36px;
      height: 36px;
      font-size: 16px;
      margin-right: 10px;
    }
    .step-horizontal {
      flex-direction: column;
    }
    .step-horizontal.active::before,
    .step-line,
    .step-line-1-2,
    .step-line-2-3 {
      display: none !important;
    }
    .date-block,
    .time-block {
      max-width: 100%;
      flex: 0 0 100%;
    }
    .slots {
      display: flex;
      flex-wrap: wrap;
      gap: 6px 12px;
      justify-content: flex-start;
      font-size: 0.8rem;
      padding-left: 10px;
    }
    .time-btn {
      background: none;
      border: none;
      padding: 0;
      margin: 0;
      font-size: 0.8rem;
      color: #000;
      line-height: 1.6;
    }
    .time-btn.selected {
      font-weight: bold;
      text-decoration: underline;
    }
  }
  
