@import url('https://fonts.googleapis.com/css2?family=Baskervville:ital@0;1&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Libre+Baskerville:ital,wght@0,400;0,700;1,400&display=swap');



*{
    font-family: "Libre Baskerville", serif;
    margin: 0;
    padding: 0;
    text-decoration: none;
    transition: all .2s linear;
    box-sizing: border-box;
}

.libre-baskerville-regular {
    font-family: "Libre Baskerville", serif;
    font-weight: 400;
    font-style: normal;
  }
  
  .libre-baskerville-bold {
    font-family: "Libre Baskerville", serif;
    font-weight: 700;
    font-style: normal;
  }
  
  .libre-baskerville-regular-italic {
    font-family: "Libre Baskerville", serif;
    font-weight: 400;
    font-style: italic;
  }

html{
    scroll-behavior: smooth;
}

body{
    overflow-x: hidden;
    background-color: white;
    width: 100vw;
    font-size: 62.5%;
}

main{
    background-color: white;
}
.header{
    width: 99.5vw;
    height: auto;
    position: fixed;
    padding: 1rem 0;
    display: flex;
    justify-content: space-between;
    overflow: hidden;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.929);
}


.header-line{
    position: absolute;
    margin-top: 2.5vw;
    visibility: visible;
    }
    
    .header-line::after{
    content: "";
    display: block;
    position: absolute;
    background-color: #343434;
    width: 87vw;
    height: 0.5px;
    margin-left: 6vw;
    margin-top: 1rem;
    }
 
.navbar{
    display: flex;
    justify-content: space-evenly;
    margin-top: 0.7vw;
    width: 80%;
}

.navbar ul{
    display: flex;
    justify-content: space-between;
    list-style: none;
    margin-right: 1.5vw;
    margin-left: 1vw;
}

.navbar li a{
    text-decoration: none;
    list-style: none;
  color: #343434;
    font-size: 1rem;
    text-transform: uppercase;
    display: flex;
    justify-content: space-between;
    margin-right: 3vw;
}



.header .logo{
  width: 5vw;
  height: auto;
  margin-left: 3vw;
  transition: background-image 0.5s;
}

.language{
    display: flex;
    justify-content: space-between;
    margin-top: 0.9vw;
    margin-right: 6%;
}

.lang-switch a{
    font-size: 1rem;
    text-transform: uppercase;
  color: #343434;
}


.eng{
    font-weight: 600;
}

.lang-switch a:hover :focus{
    color: #343434;
    font-weight: bold;
}
.sidebar {
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 1000;
    top: 0;
    right: 0;
    background-color: white;
    overflow-x: hidden;
    transition: 0.5s;
    padding-top: 5vw;
  }
  
  /* Sidebar linkek stílusa */
  .sidebar a {
    padding: 1vw 1vw 1vw 13vw;
    text-decoration: none;
    font-size: 1rem;
    color: #343434;
    display: block;
    transition: 0.3s;
    text-transform: uppercase;
    margin-left: 1%;
    line-height: 10vw;
  }
  
  .sidebar a:hover {
    text-decoration: underline #343434 2px;
  }
  
  .sidebar .side-social {
    display: flex;
    justify-content: space-between;
    width: 2vw;
    margin-top: 10vw;
    margin-left: 2.5%;
  }

  .social-img{
    width: 5vw;
  }
  
  .sidebar .side-social a {
    transition: color 0.3s;
  }
  
  
  .side-lang .lang-switch{
    display: flex;
    justify-content: space-between;
    width: 5vw;
    margin-top: 5vw;
    margin-left: 1%
  }
  
  .side-lang a{
    color: #343434;
    font-size: 1rem;
    text-transform: uppercase;
  }
  
  .side-lang .hun{
    font-size: 1rem;
  }
  
  .side-lang .eng{
    font-size: 1rem;
    font-weight: 600;
  }
  
  
  
  /* Sidebar zárás ikonja */
  .sidebar .closebtn {
    position: absolute;
    font-size: 2rem;
    right: 1.5%;
    top: -0.1%;
  }
  
  /* Hamburger menü gomb stílusa */
  .openbtn {
    font-size: 4rem;
    cursor: pointer;
    background-color: transparent;
    color: #343434;
    border: none;
    display: none; /* Alapértelmezetten rejtett */
  }
  
  
  .dropdown{
    transform: translateX(14%);
    margin-top: 5vw;
  }
  /* Dropdown Button */
  .product-dropbtn {
    background-color: white;
    color: #343434;
    font-size: 1rem;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
  }
  
  /* Dropdown button on hover & focus */
  .product-dropbtn:hover, .ns-dropbtn:focus {
    background-color: white;
    border: none;
    outline: none !important;
  }
  
  .product-dropbtn:hover{
    text-decoration: underline 0.5px;
    text-underline-offset: 5px;
  }
  
  .product-dropdown {
    position: relative;
    display: inline-block;
  }
  
  .product-dropdown-content {
    display: none;
    position: relative;
    background-color: white;
    width: 100%;
    z-index: 1;
  }
  
  .textbox{
    padding: 2vw 2vw;
  }
  
  .product-dropdown-content a {
    color: #343434;
    font-size: 1rem;
    min-height: auto;
    text-decoration: none;
    display: block;
    transform: translateX(-5%);
  }
  
  .product-dropdown-content a:hover {
    color: #343434;
    text-decoration: underline 0.5px;
    text-underline-offset: 5px;
    display: block;
  }
  
  .product-dropdown:hover .product-dropdown-content{
    display: block;
  }
  
  .fa-caret-down {
    float: right;
    padding-right: 8px;
  }

  .texts{
    transform: translateX(-22%);
  }

.showroom1 .brands .logo, .showroom2 .brands .logo, .showroom3 .brands .logo{
    width: 10vw;
    height: auto;
}

.long{
    width: 20vw;
    padding: 0 1vw;
}

.tall{
    width: 10vw;
    padding: 0 1vw;
}

.medium{
    width: 20vw;
    padding: 0 1vw;
}

.showroom-container{
    display: flex;
    justify-content: space-between;
    width: 87vw;
    margin-left: 6%;
}

.map-box{
    width: 45vw;
    height: 30rem;
}

.showroom1{
    padding-top: 7rem;
}

.showroom1 .title{
    margin-left: 6%;
    margin-bottom: 2rem;
}

.showroom1 .title h1{
    color: #343434;
    font-size: 1.4rem;
    text-transform: uppercase;
    margin-bottom: 3rem;
}

.showroom1 .title h2{
    color: #343434;
    font-size: 2.5rem;
    font-weight: 600;
    text-transform: uppercase;
}



.showroom1 .brands{
    margin-left: 55%;
    transform: translateY(-100%);
}

.showroom1 .brands h1{
    height: 40px;
    color: #343434;
    font-size: 14pt;
    text-transform: uppercase;
    border-bottom: 1pt solid #343434;
    width: 110px;
    margin-bottom: 50px;
}

.showroom1 .brands .brand-logo{
    display: flex;
    justify-content: space-between;
    width: 25vw;
    margin-left: 10%;
}

.showroom2{
    padding-top: 5rem;
}

.showroom2 .title{
    margin-left: 6%;
    margin-bottom: 2rem;
}

.showroom2 .title h1{
    color: #343434;
    font-size: 1.4rem;
    text-transform: uppercase;
    margin-bottom: 3rem;
}

.showroom2 .title h2{
    color: #343434;
    font-size: 2.5rem;
    font-weight: 600;
    text-transform: uppercase;
}


.showroom2 .brands{
    margin-left: 55%;
    transform: translateY(-100%);
}

.showroom2 .brands h1{
    height: 40px;
    color: #343434;
    font-size: 1.4rem;
    text-transform: uppercase;
    border-bottom: 1pt solid #343434;
    width: 110px;
    margin-bottom: 3rem;
}

.showroom2 .brands .brand-logo{
    display: flex;
    justify-content: space-between;
    width: 25vw;
    margin-left: 3%;
    margin-bottom: 2rem;
}

.showroom2 .brands .salvatori{
    margin-left: 6%;
}

.showroom3{
    min-height: auto;
}

.showroom3 .title{
    margin-left: 6%;
    margin-bottom: 2rem;
}

.showroom3 .title h1{
    color: #343434;
    font-size: 1.4rem;
    text-transform: uppercase;
    margin-bottom: 3rem;
}

.showroom3 .title h2{
    color: #343434;
    font-size: 2.5rem;
    font-weight: 600;
    text-transform: uppercase;
}


.showroom3 .brands{
    margin-left: 55%;
    transform: translateY(-100%);
}

.showroom3 .brands h1{
    height: auto;
    color: #343434;
    font-size: 14pt;
    text-transform: uppercase;
    border-bottom: 1pt solid #343434;
    width: 110px;
    margin-bottom: 2rem;
}

.showroom3 .brands a{
    margin-left: 10%;
}




.line4{
    position: absolute;
    margin-left: 6%;
    margin-bottom: 3vw;
}

.line4:after{
    content: "";
    display: block;
    position: absolute;
    width: 87vw;
    height: 0.5px;
    background-color: #343434;
}
.footer{
    margin-top: 7vw;
    min-height: auto;
}

    .footer .title h1{
    font-size: 2.5rem;
    font-weight: 600;
    text-align: center;
    text-transform: uppercase;
    color: #343434;
    margin-bottom: 7vw;
}

.footer .big-container{
    display: flex;
    justify-content: space-between;
    width: 100vw;
}

    .footer .container1{
    display: column;
    justify-content: space-between;
    width: 50%;
}

    .footer .office{
    margin-left: 23%;
}

    .footer .office h1{
    font-size: 1.4rem;
    color: #343434;
    margin-bottom: 3vw;
    text-transform: uppercase;
}

    .footer .office p{
    font-size: 1rem;
    color: #343434;
    margin-bottom: 3.2vw;
    line-height: 2vw;
    word-spacing: 0.5vw;
}

.showroom-btn{
    border: none;
    background-color: white;
    color: #343434;
    font-size: 1.4rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-left: 23%;
    margin-bottom: 4.5vw;
}

.showroom-arrow-right{
    position: absolute;
    margin-left: 3vw;
}

.showroom-arrow-right:before{
    content: "";
    display: block;
    margin-right: 10px;
    width:5px;
    height: 5px;
    border-top: 1px solid #343434;
    border-right: 1px solid #343434;
    transform: rotate(45deg);
    margin-left: 210px;
    margin-top: 9px;
}

.showroom-arrow-right:after{
    content: "";
    display: block;
    position: absolute;
    width: 60px;
    height: 0.5px;
    background-color: #343434;
    top: 1.5px;
    left: -4px;
    margin-top: 10px;
    margin-left: 160px;
}

    .footer .social h1{
    font-size: 1.4rem;
    color: #343434;
    margin-bottom: 3vw;
    text-transform: uppercase;
}

    .footer .social a{
    font-size: 1rem;
    color: #343434;
    line-height: 2vw;
    word-spacing: 0.5vw;
}

    .footer .request{
    margin-left:1vw;
}

    .footer .request h1{
    font-size: 1.4rem;
    color: #343434;
    margin-bottom: 3rem;
    text-transform: uppercase;
}

.request{
    display: inline-block;
    justify-content: space-between;
}

.contact-form{
    position: relative;
    display: block;
    justify-content: space-between;
}

.contact-form-txt, .contact-form-phone, .contact-form-email{
    height: auto;
    width: 25vw;
    background-color: white;
    color: #343434;
    font-size: 1rem;
    border: none;
    border-bottom: 0.25px solid #343434;
    margin-bottom: 3.4vw;
}

.contact-form-txtarea{
    height: 20vh;
    width: 25vw;
    background-color: white;
    color: #343434;
    font-size: 1rem;
    border: none;
    border-bottom: 0.25px solid #343434;
    margin-bottom: 2.5vw;
}


.submit-btn{
    display: flex;
    justify-content: space-between;
}

.contact-form-btn{
        border: none;
        background-color: white;
        color: #343434;
        font-size: 1rem;
        text-transform: uppercase;
    }
    
    .contact-arrow-right{
        position: absolute;
    }
    
    .contact-arrow-right:before{
        content: "";
        display: block;
        margin-right: 10px;
        width:5px;
        height: 5px;
        border-top: 1px solid #343434;
        border-right: 1px solid #343434;
        transform: rotate(45deg);
        margin-left: 150px;
        margin-top: 9px;
    }
    
    .contact-arrow-right:after{
        content: "";
        display: block;
        position: absolute;
        width: 60px;
        height: 0.5px;
        background-color: #343434;
        top: 1.5px;
        left: -4px;
        margin-left: 100px;
        margin-top: 10px;
    }

    .opening-hours{
    margin-left: 23%
}

    .opening-hours h1{
    font-size: 1.4rem;
    color: #343434;
    margin-bottom: 2vw;
    text-transform: uppercase; 
}

    .opening-hours p{
    font-size: 12pt;
    color: #343434;
    margin-bottom: 3vw;
    line-height: 2vw;
    word-spacing: 0.5vw;
}

    .newsletter{
    margin-top: 5.5vw;
}

    .newsletter h1{
    font-size: 1.4rem;
    color: #343434;
    margin-bottom: 4.5vw;
    text-transform: uppercase; 
}

    .newsletter p{
    font-size: 1rem;
    color: #343434;
    margin-bottom: 3vw;
    line-height: 25px;
    word-spacing: 5px;
}

    .newsletter .newsletter-form-email{
        height: auto;
        width: 25vw;
        background-color: white;
        color: #343434;
        font-size: 1rem;
        border: none;
        border-bottom: 0.25px solid #343434;
        margin-bottom: 3vw;
    }

    .subscribe-btn{
        display: flex;
        justify-content: space-between;
    }

    .newsletter-btn{
            border: none;
            background-color: white;
            color: #343434;
            font-size: 1rem;
            text-transform: uppercase;
        }
        
        .newsletter-arrow-right{
            position: absolute;
            margin-left: 40px;
        }
        
        .newsletter-arrow-right:before{
            content: "";
            display: block;
            margin-right: 10px;
            width:5px;
            height: 5px;
            border-top: 1px solid #343434;
            border-right: 1px solid #343434;
            transform: rotate(45deg);
            margin-left: 180px;
            margin-top: 6px;
        }
        
        .newsletter-arrow-right:after{
            content: "";
            display: block;
            position: absolute;
            width: 60px;
            height: 0.5px;
            background-color: #343434;
            top: 1.5px;
            left: -4px;
            margin-left: 130px;
            margin-top: 7px;
        }
    

    .container2{
    display: column;
    justify-content: space-between;
    width: 60%;
    margin-left: 10vw;
}

    .container{
    min-height: auto;
    margin-left: 6%;
    margin-top: 5vw;
    display: flex;
    justify-content: space-between;
    width: 85vw;
}

    .container .data{
    display: flex;
    justify-content: space-between;
    width: 40%;
}

    .container p{
    color: #646464;
    font-size: 1rem;
}

/* Cookie Banner Styles */
.cookie-banner {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: white;
    color: #343434;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
    opacity: 0;
    transform: translateY(100%);
    font-family: "Libre Baskerville", serif;
    max-width: 50vw;
}

.cookie-banner.visible {
    transform: translateY(0);
    opacity: 1;
}

.cookie-content {
    text-align: left;
    flex: 1;
    font-size: 1rem;
    line-height: 1.5;
    color: #343434;
}

.cookie-content a {
    color: #00adef; /* Match your site's accent color */
    text-decoration: underline;
}

.cookie-btn {
    background: transparent;
    color: #343434;
    padding: 10px 15px;
    font-size: 1rem;
    text-transform: uppercase;
    cursor: pointer;
    margin-left: 10px;
    margin-top: 10px;
    border: none;
    transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out;
}

.cookie-btn.accept {
    /* Shadow added to the accept button */
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1); /* Adds light shadow */
    background-color: #343434;
    color: #fff;
}

.cookie-btn.accept:hover {
    background-color: #343434;
    color: white;
}

.cookie-btn.reject:hover {
    background-color: #343434;
    color: white;
}


@media only screen and (max-width: 1300px){
    .header{
        height: auto;
    }

    .navbar, .language {
        display: none;
    }
    
        .language{
            margin-left: 70%;
            margin-right: 5%;
        }
    
        .lang-switch a{
            font-size: 1rem;
        }
    
    /* Megnyitott állapot a sidebarhoz */
        .open-sidebar {
        width: 20%; /* Sidebar szélessége, amikor nyitva van */
        }
    
        .side-social{
            display: block;
        }
    
        .side-lang{
            display: block;
          }
    
          .openbtn {
            display: block;
            position: absolute;
            top: 30%;
            right: 10%;
            z-index: 1001;
            font-size: 2vw;
        }

        .sidebar a{
            line-height: 2vw;
            margin-left: 0;
            padding: 1vw 1vw 1vw ;
          }

          .dropdown{
            margin-top: 1vw;
          }

          .product-dropbtn{
            margin-left: 0;
            transform: none;
            transform: translateX(-20%);
          }

          .social-img{
            width: 2vw;
            height: auto;
          }

          .sidebar .side-social{
            margin-top: 2.5vw;
          }
          
          .showroom1 .showroom-container, .showroom2 .showroom-container, .showroom3 .showroom-container, {
              display: flex;
              flex-direction: column;
          }
          
          .map-box{
            width: 87vw;
          }
          
          .showroom1 .brands, .showroom2 .brands, .showroom3 .brands{
            width: 100vw;
            margin-left: 6%;
            transform: none;
            margin-top: 4rem;
            margin-bottom: 4rem;
          }
    }



@media only screen and (max-width: 1000px) {
    .header .logo{
        width: 8vw;
      }
      
       .openbtn {
            font-size: 4vw;
        }

    .navbar, .language {
        display: none;
    }
    
        .language{
            margin-left: 70%;
            margin-right: 5%;
        }
    
        .lang-switch a{
            font-size: 1rem;
        }
    
    /* Megnyitott állapot a sidebarhoz */
        .open-sidebar {
        width: 100%; /* Sidebar szélessége, amikor nyitva van */
        }
    
        .side-social{
            display: block;
        }
    
        .side-lang{
            display: block;
          }

          .sidebar a{
            padding: 5vw 8vw 2vw;
          }

          .dropdown{
            margin-top: 5vw;
            transform: translateX(10%);
          }

          .side-lang a{
            margin-left: 0;
          }

          .social-img{
            width: 4vw;
          }
          
          .aboutus .text{
              display: flex;
              flex-direction: column;
          }
          
          .aboutus p{
            width: 85vw;
          }
          
          .img-about{
            max-width: 150vw;
            height: auto;
          }
        
      
    .footer .big-container{
        display: flex;
        flex-direction: column;
        height: auto;
    }

    .footer .request{
        margin-left: 10vw;
        width:50vw;
    }
    
    .project-wrapper{
        width:80vw;
        margin-left: 0;
    }

    .project-wrapper p{
        width:85vw;
    }

    .aboutus p, .footer .office p, .footer .opening-hours p, .footer .social a{
        line-height: 3.5vw;
    }

      .aboutus, .footer .office, .footer .social, .footer .showroom, .footer .opening-hours, .footer .newsletter, .footer .request{
        margin-bottom: 10vw;
    }

    .footer .title h1{
        margin-top: 15vw;
    }

    .container p{
        font-size: 0.8rem;
    }

    .newsletter .newsletter-form-email, .contact-form-email, .contact-form-txt, .contact-form-txtarea{
        width: 60vw;
    }
    
}

@media only screen and (max-width: 500px) {
    .aboutus p, .footer .office p, .footer .opening-hours p, .footer .social a{
        line-height: 6vw;
    }

    .footer .title h1{
        font-size: 2.2rem;
    }
    
    .product-dropbtn{
        margin-left: 3vw;
    }
    
    .showroom1 h2, .showroom2 h2, .showroom3 h2{
        width: 80vw;
    }
    
    .showroom1 .brands, .showroom2 .brands, .showroom3 .brands{
        width: 80vw;
    }
    
    .showroom1 .brands .logo, .showroom2 .brands .logo, .showroom3 .brands .logo{
    width: 27vw;
    height: auto;
    padding: 0 3vw;
}

.long{
    width: 60vw;
    padding: 0 3vw;
}

.tall{
    width: 30vw;
    padding: 0 3vw;
}

.medium{
    width: 50vw;
    padding: 0 3vw;
}
}