* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Open Sans', sans-serif;
}

body {
  height: auto;
  background-color: rgb(235, 235, 235);
  text-align: center;
}

li {
  list-style: none;
}

a {
  text-decoration: none;
  color: white;
  font-size: 1rem;
  padding: 22px;
}

a:hover {
  background-color: #FFE6A7;
  color: black;
  width: 100%;
  text-align: center;
}

                            /* --- Fejlcéc ---*/
header {
  width: 100%;
  position: relative;
  padding-left: 20px;
  padding-right: 20px;
  background-color: rgb(80, 80, 80);
  position: fixed;
  border-top: ridge 1px rgb(160, 160, 160);
  border-bottom: ridge 1px rgb(160, 160, 160);
}


                          /* --- Felső menüsor --- */
.navbar {   
    width: 100%;
    max-width: 1400px;
    height: 60px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-style: white;
   }



  .navbar .links {
    display: flex;

    margin: auto;
  }

  .navbar .toggle_btn {
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    display: none;
  }

  .logo {
    display: none;
  }
                        /* --- Lenyíló menü --- */

.dropdown_menu {
  display: none;
  position: absolute;
  right: 2rem;
  top: 60px;
  height: 0;
  width: 300px;
  background: rgba(100, 100, 100, 0.9);
  backdrop-filter: blur(15px);
  border-radius: 10px;
  overflow: hidden;
  transition: height 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.dropdown_menu.open {
  height: 370px;
}

.dropdown_menu li {
  padding: 0.7rem;
  display: flex;
  align-items: c2enter;
  justify-content: center;
  padding: 0px;
}

.dropdown_menu .action_btn {
  width: 100%;
  display: flex;
  justify-content: center;
}

                   /* --- Responsiv menü --- */

  @media (max-width: 650px) {
    .navbar .links,
    .navbar .action_btn {
      display: none;
    }

    .navbar .toggle_btn {
      display: block;
    }

    .dropdown_menu {
      display: block;
    }
  }

  @media (max-width: 576px) {
      .dropdown_menu {
        left: 2rem;
        width: unset;
      }
  }

  @media (max-width: 650px) {
    .logo {
      display: block;
    }
  }


                /* --- Responsiv menü --- */

@media (max-width: 650px) {
  .navbar .links,
  .navbar .action_btn {
    display: none;
  }

  .navbar .toggle_btn {
    display: block;
  }

  .dropdown_menu {
    display: block;
  }
}

@media (max-width: 576px) {
    .dropdown_menu {
      left: 2rem;
      width: unset;
    }
}

              /* ---  Bérlés--- */

 .kozepso_box {
  background-color: white;
    margin: auto;
    width: 100%;
    max-height: 1100px;
    border-bottom: solid 3px lightgray; 
  }

.szoveg_box {
    max-width:1500px;
    height: 1000px;
    background-color: white;
    text-align: center;
    margin: auto;
    width: 100%;  
    padding-top: 40px;
}
@media screen and (max-width: 850px) {
  .szoveg_box {
    margin: auto;
    width: 100%;
    display: block;
    padding-top: 80px;
    padding-bottom: 20px;
    border-top: solid 1px white;
    height: auto;
    text-align: center;
  } 
}

.container {
  text-align: left;
  width: 80%;
  margin: 0 auto;
  background-color: #fff;
  padding: 20px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  margin-top: 50px;
  border-radius: 8px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.szoveg-kep {
  float: left;
  width: 50%;
  background-color: white;
}

h1 {
  width: 100%;
  text-align: center;
  color: #333;
}

form {
  width: 50%;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 850px) {
  form {    
    width: 100%;    
  } 
}

label {
  margin-bottom: 10px;
  font-weight: bold;
}

input, textarea, select {
  margin-bottom: 20px;
  padding: 10px;
  font-size: 16px;
  border: 1px solid #ddd;
  border-radius: 4px;
  width: 100%;
  box-sizing: border-box;
}

select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background: url('data:image/svg+xml;base64,PHN2ZyBmaWxsPSIjMDAwMDAwIiB2aWV3Qm94PSIwIDAgMTEgMTEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZD0iTTAgMGgxMXYxMUgweiIvPjxwYXRoIGQ9Ik01LjI1IDguNzVsLTMuMTI1LTMuMTI1IDEuNDUtMS40NWwyLjE3NSAyLjE3NSAyLjE3NS0yLjE3NSAxLjQ1IDEuNDV6Ii8+PC9zdmc+');
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 10px 10px;
}

button {
  padding: 15px;
  font-size: 16px;
  background-color: #5cb85c;
  color: #fff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

button:hover {
  background-color: #4cae4c;
}

.image-container {
  background-color: white;
  padding-top: 20px;
  margin-left: 60px;
  width: 80%;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}
@media screen and (max-width: 850px) {
  .image-container {    
    display: none;    
  } 
}

#product-image {
  max-width: 70%;
  height: auto;
  border: 1px solid #ddd;
  border-radius: 4px;
}

                              /* ---  Lábléc--- */

.footer_box {
    background-color: rgb(80, 80, 80);
    margin: auto;
    width: 100%;
    max-height: 400px;
  }

.footer_kozepe {
    max-width:1200px;
    height: 400px;
    background-color: rgb(80, 80, 80);
    text-align: justify;
    margin: auto;
    width: 100%;  
    padding-top: 20px;  
}


                /* ---  Lábléc - bal oldali rész /térkép/ --- */

.footer_kozepe_1 {
  float: left;
  width: 40%;
  height: auto;
  max-height: 400px;
  padding-top: 30px;
  background-color: rgb(80, 80, 80);
}
@media screen and (max-width: 850px) {
  .footer_kozepe_1 {
    width: 100%;
    display: block;
    padding-top: 20px;
    padding-bottom: 20px;
    border-top: solid 1px rgb(160, 160, 160);
    height: auto;
  } 
}

.google-map {
 width: 100%;
 height: 290px;
}

.google-map iframe {
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;

}
@media screen and (max-width: 850px) {
  .google-map {
    width: 100%;
    display: block;    
  } 
}


                   /* ---  Lábléc - középső rész --- */

.footer_kozepe_2 {
  float: left;
  width:30%;
  height: auto;
  padding-top: 30px;
  padding-left: 40px;
  color: white;
  background-color: rgb(80, 80, 80);
  line-height: 1.4rem;
}
@media screen and (max-width: 850px) {
  .footer_kozepe_2 {
    width: 100%;
    display: block;
    padding-top: 20px;
    padding-bottom: 20px;
    padding-left: 40px;
    border-top: solid 1px;
  } 
}


               /* ---  Lábléc - jobb szélső rész--- */

.footer_kozepe_3 {
  float: left;
  width: 30%;
  height: auto;
  color: white;
  background-color: rgb(80, 80, 80);
}
@media screen and (max-width: 850px) {
  .footer_kozepe_3 {
    width: 100%;
    display: block;
    padding-top: 0px;
    padding-bottom: 30px;
    border-top: solid 1px rgb(160, 160, 160);
    border-bottom: solid 1px rgb(160, 160, 160);
    height: auto;
  } 
}

.footer_menu {
  width: 100%;
  padding-top: 20px;
  text-align: center;
  width: 100%;
}
@media screen and (max-width: 850px) {
  .footer_menu {
    width: 90%;
    display: block; 
    margin:auto;     
  } 
  }

.footer_menu a {
  background-color: rgb(80, 80, 80) ;
  color: white;
  display: block;
  padding: 12px;
  text-decoration: none;
}

.footer_menu a:hover {
  background-color: #FFE6A7;
  color: black;
  border: solid 1px;
  border-radius: 20px;
}



               /*--- Legalsó szöveg rész ---*/

.also_resz {
  float: left;
  width: 100%;
  height: 50px;
  padding-top: 15px;
  background-color: rgb(80, 80, 80);
  color: white;
  text-align: center;
  border-top: solid 1px rgb(160, 160, 160);
 }
 @media screen and (max-width: 850px) {
  .also_resz {
    width: 100%;
    height: auto;
    display: block;
    padding-top: 15px;
    padding-bottom: 15px;
    border-top: solid 1px rgb(160, 160, 160);
    font-size: 12px;
  } 
}