@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');
/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

html, body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    font-family: "Roboto", sans-serif;
}

body {
    /*font-family: Arial, sans-serif;*/
    overflow-x: hidden; /* Ne legyen vízszintes görgetés */
    background-color:#f8f8f8;
}

.info-block--highlight {
  background: #f0f9ff;
  border: 2px solid #0ea5e9;
  border-radius: 14px;
  padding: 18px;
  box-shadow: 0 10px 24px rgba(14, 165, 233, 0.18);
}

.info-block--highlight h4 {
  margin-top: 0;
}



form {
      max-width: 100%;
      margin: auto;
      background: white;
      padding: 2rem;
      border-radius: 10px;
      box-shadow: 0 0 10px rgba(0,0,0,0.1);
      margin-bottom: 50px;
    }

.bold{
    font-weight:700;
}

    label {
      display: block;
      margin-top: 1rem;
      font-weight: bold;
      text-align:left;
    }
    
#bookingtitle{
    color: #ddbf87;
    text-align: left;
}


 .image-container {
      display: flex;
      justify-content: space-between;
      width: 100%;
      padding: 0;
      margin: 0;
    }

    .image-container img {
      width: 100%;
      height: auto;
      object-fit: cover;
    }

    .image-wrapper {
      flex: 1;
      padding: 0; /* vagy pl. padding: 5px; ha kis hézag kell */
      margin: 0;
    }

.gallery-slider {
    position: relative;
    display: block;
    overflow: hidden;
    background: #111;
}

.gallery-track {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 7;
    min-height: 360px;
}

.gallery-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity .45s ease;
}

.gallery-slide.is-active {
    opacity: 1;
    z-index: 1;
}

.gallery-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.gallery-nav {
    position: absolute;
    top: 50%;
    z-index: 3;
    width: 48px;
    height: 48px;
    border: 0;
    border-radius: 50%;
    transform: translateY(-50%);
    background: rgba(17, 17, 17, .72);
    color: #fff;
    cursor: pointer;
    display: grid;
    place-items: center;
    font-size: 18px;
}

.gallery-nav:hover {
    background: rgba(224, 195, 137, .92);
    color: #111;
}

.gallery-nav-prev {
    left: 24px;
}

.gallery-nav-next {
    right: 24px;
}

.gallery-dots {
    position: absolute;
    left: 50%;
    bottom: 22px;
    z-index: 3;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.gallery-dot {
    width: 10px;
    height: 10px;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, .55);
    cursor: pointer;
    padding: 0;
}

.gallery-dot.is-active {
    background: #e0c389;
}

.h2_price{
    padding: 10px;
    width: 80%;
    margin-top: 50px;
    color: #222222;
    font-size: 22px;
    cursor: pointer;
    font-family: 'Roboto';
    background: rgba(255, 255, 255, 0.75);
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5.4px);
    -webkit-backdrop-filter: blur(5.4px);
    text-decoration: none;
}

.table_price{
    width: 80%;
    font-size: 17px;
    font-weight: 400;
}

#please{
    width: 85%;
    margin-top: 0;
    margin-bottom: 50px;
    font-weight: 300;

}

    input, select, textarea, .button {
      width: 100%;
      padding: 0.8rem;
      margin-top: 0.3rem;
      border: 1px solid #ccc;
      border-radius: 5px;
      box-sizing: border-box;
    }

    .button {
      margin-top: 1.5rem;
      background-color: #28a745;
      color: white;
      border: none;
      cursor: pointer;
      font-weight: 400;
    margin-top: 20px;
    color: #222222;
    font-size: 16px;
    cursor: pointer;
    font-family: 'Roboto';
    background: rgba(255, 255, 255, 0.75);
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5.4px);
    -webkit-backdrop-filter: blur(5.4px);
    text-decoration: none;
    }

    .button:hover {
          background: rgba(255, 255, 255, 0.5);
    }
    
    
.slider {
      width: 100vw;
      height: 100vh;
      position: relative;
      overflow: hidden;
    }
    
.slider_blog {
    width: 100vw;
    height: 80vh;
    position: relative;
    overflow: hidden;
    background-image: url(../img/blog.jpg);
    background-size: cover;
    background-attachment: fixed;
    background-position: top;
    }
    

    .slides {
      display: flex;
      width: 100%;
      height: 100%;
      transition: transform 0.6s ease-in-out;
    }
    .slide {
      flex: 0 0 100%;
      height: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      background-size: cover;
      background-position: center;
    }
    .slide h2 {
      font-size: 4rem;
      color: white;
      opacity: 0;
      transform: translateY(20px);
      margin-top: 40vh;
    display: block;
    width: 50%;
    margin-left: 50px;
    }
    .slide.active h2 {
      opacity: 1;
      transform: translateY(0);
    }
    
    .nav {
      position: absolute;
      top: 50%;
      left: 0;
      width: 100vw;
      display: flex;
      justify-content: space-between;
      transform: translateY(-50%);
      pointer-events: none;
      padding: 0 1rem;
    }
    .nav button {
    pointer-events: auto;
    background: rgba(0, 0, 0, 0.5);
    border: none;
    color: white;
    font-size: 1rem;
    padding: 0.5rem 0.7rem;
    cursor: pointer;
    margin-top: 100px;
    }
    .nav button:hover {
      background: rgba(0, 0, 0, 0.8);
    }

h2{
    font-size: 2.1rem;
    font-weight: 800;
    display: block;
    margin-bottom: 10px;
}

.hero {
    position: relative;
    width: 100%;
    height: 110vh;
    overflow: hidden;
    background-position: right;
}

#bgVideo {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.content {
    position: relative;
    height: 100%;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: rgba(0, 0, 0, 0.3);
    padding:50px;
}

.content h1 {
    font-size: 4rem;
    margin-bottom: 20px;
}

.hero-title-accent {
    display: block;
    color: #e0c389;
    font-weight: 800;
    margin-top: -30px;
}

.content p {
    font-size: 1rem;
    font-weight: 300;
    font-family: sans-serif;
}

#tripadvisor{
    position: absolute;
    bottom: 14vh;
    right: 50px;
    line-height: 1.3rem;
}

.btn{
    width: auto;
    padding: 15px 20px;
    border: 0;
    border-radius: 23px;
    background: #ddbf87;
    font-weight: 400;
    margin-top: 20px;
    color: #222222;
    font-size: 16px;
    cursor: pointer;
    font-family: 'Roboto';
    /* From https://css.glass */
    background: rgba(255, 255, 255, 0.75);
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5.4px);
    -webkit-backdrop-filter: blur(5.4px);
    text-decoration: none;
}

#main_logo{
    height: 120px;
    margin: auto;
    display: block;
    margin-top: 20px;
}

/* Következő szekció */
.next-section {
    width: 1200px;
    height: auto;
    color: #222;
    display: block;
    text-align: center;
    margin: auto;
}

.new-section{
    width:1200px;
    margin: auto;
    margin-top:100px;
}

.half{
    width: 50%;
    height: auto;
    float:left;
    margin-top: 50px;
    margin-bottom: 50px;
}

#buggie_img{
    width: 90%;
    margin-top: 52px;
    border-radius: 20px;
}

.quad-photo-grid {
    position: relative;
    display: grid;
    grid-template-columns: 1.18fr .58fr .58fr;
    grid-template-rows: 1fr 1fr;
    gap: 10px;
    width: 96%;
    margin: 52px 0 0 auto;
    aspect-ratio: 1.58 / 1;
}

.bike-photo-grid {
    width: 100%;
    margin: 0 0 28px;
}

.quad-photo-tile {
    margin: 0;
    overflow: hidden;
    background: #111;
}

.quad-photo-tile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .35s ease;
}

.quad-photo-tile:hover img {
    transform: scale(1.04);
}

.quad-photo-main {
    grid-row: 1 / 3;
    border-radius: 20px 0 0 20px;
}

.quad-photo-grid .quad-photo-tile:nth-of-type(2) {
    border-radius: 0;
}

.quad-photo-grid .quad-photo-tile:nth-of-type(3) {
    border-radius: 0 20px 0 0;
}

.quad-photo-grid .quad-photo-tile:nth-of-type(5) {
    border-radius: 0 0 20px 0;
}

.quad-photo-button {
    position: absolute;
    right: 18px;
    bottom: 18px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 20px;
    border-radius: 999px;
    background: #fff;
    color: #172238;
    font-weight: 800;
    font-size: 15px;
    text-decoration: none;
    box-shadow: 0 14px 30px rgba(0, 0, 0, .18);
    z-index: 2;
}

.quad-photo-button:hover {
    background: #e0c389;
    color: #111;
}

.quad-gallery-booking {
    width: 96%;
    margin: 28px 0 50px auto;
    text-align: left;
}

.quad-price-block {
    margin-top: 34px;
}

.photo-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.photo-modal.is-open {
    display: flex;
}

.photo-modal-backdrop {
    position: absolute;
    inset: 0;
    border: 0;
    background: rgba(0, 0, 0, .78);
    cursor: pointer;
}

.photo-modal-dialog {
    position: relative;
    z-index: 1;
    width: min(1120px, 96vw);
    max-height: 92vh;
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 24px 70px rgba(0, 0, 0, .35);
}

.photo-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 22px;
}

.photo-modal-header h2 {
    margin: 0;
    font-size: 24px;
    color: #172238;
}

.photo-modal-close {
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 50%;
    background: #f0f0f0;
    color: #172238;
    cursor: pointer;
    font-size: 18px;
}

.photo-modal-stage {
    position: relative;
    background: #111;
    height: min(62vh, 640px);
}

.photo-modal-main {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.photo-modal-nav {
    position: absolute;
    top: 50%;
    width: 48px;
    height: 48px;
    border: 0;
    border-radius: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, .9);
    color: #172238;
    cursor: pointer;
    font-size: 18px;
}

.photo-modal-prev {
    left: 18px;
}

.photo-modal-next {
    right: 18px;
}

.photo-modal-thumbs {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 10px;
    padding: 14px;
    background: #f7f7f7;
}

.photo-modal-thumb {
    height: 86px;
    padding: 0;
    border: 3px solid transparent;
    border-radius: 10px;
    overflow: hidden;
    background: #ddd;
    cursor: pointer;
}

.photo-modal-thumb.is-active {
    border-color: #ddbf87;
}

.photo-modal-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.arany{
    color: #ddbf87;
}

.nyolcvan{
    margin-left: 8%;
}


.next-section p {
    font-size: 1.1rem;
    line-height: 1.4rem;
}

#main_p{
    font-size:1rem;
    font-weight:300;
    width:35%;
}

#float_section{
    width: 1200px;
    height: 150px;
    display: block;
    margin: auto;
    background: #ffffff;
    border-radius: 15px;
    margin-top: -10vh;
    z-index: 1;
    position: relative;
    box-shadow: 0 0 7px #00000040;
    padding: 20px;
    display: flex;
    gap: 20px;
    justify-content: space-between;
    flex-wrap: wrap;  /* Mobilra szétesik */
    /* From https://css.glass */
    background: rgba(255, 255, 255, 0.80);
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5.4px);
    -webkit-backdrop-filter: blur(5.4px);
}

.float_img{
    width: 50px;
    margin-right: 30px;
    display: block;
}

.box {
   /* background: #e7e7e7;*/
    flex: 1 1 30%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: #222;
}

.weather-container {
    width: auto;
    padding: 16px;
    background: rgba(255, 255, 255, 0.19);
    border-radius: 23px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(3.8px);
    -webkit-backdrop-filter: blur(3.8px);
    border: 1px solid rgba(255, 255, 255, 0.44);
    position: absolute;
    right: 10%;
    bottom: 15vh;
}

.weather-container{
    color:white;
}

.index-weather{
    bottom: 5vh;    
}

#weather_city{
    font-family: 'Roboto';
    font-weight: 600;
    font-size: 23px;
    margin-bottom: 0;
    margin-top: 0;
    margin-left: 0;
}

#weather_temperature{
    font-size: 2rem;
    display: inline-block;
    margin-top:10px;
    vertical-align: sub;
    color: white;
}

#weather_img{
    display: inline-block;
    vertical-align: middle;
    width: 60px;
    margin-left: 10px;
}

.weather_icon{
    width: 16px;
    display: inline-block;
}

#nav_ctr{
    width:100%;
    height:100px;
    position:absolute;
    top:0;
    left:0;
    /*background:#003023;*/
    z-index: 10;
}

#nav_nav{
    width: 90%;
    height:150px;
    margin:auto;
    display:block;
    border-bottom: 0.5px solid #ffffff52;
    margin-bottom: 10px;
}

#nav_menu_ctr{
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 2rem;
    position: relative;
}

#nav_menu_ctr a{
    display:inline-block;
    text-decoration:none;
    color:white;
    margin-left:40px;
    margin-right:40px;
    font-weight: 600;
    font-size: 17px;
}

#nav_menu{
    width: 100%;
    height: 37px;
    /*background: #e0c389;*/
}

#social_ctr{
    width: 30%;
    float: left;
    text-align: left;
    height: 70px;
    display: block;
    margin-top: -100px;
}


#language_ctr{
    width: 30%;
    float: right;
    text-align: right;
    height: 70px;
    display: block;
    margin-top: -80px;
}

#cart_ctr{
    width: 30%;
    float: right;
    text-align: right;
    height: 70px;
    display: block;
    margin-top: -50px;
    display: none;
}

#cart_ctr img{
    width:30px;
}

#cart{
    width: 30px;
    height: auto;
    position: relative;
    float: right;
}

#cart_number{
    position: absolute;
    background: rgba(218, 16, 22, 0.78);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid rgba(218, 16, 22, 1);
    width: 20px;
    height: 20px;
    border-radius: 100%;
    right: -8px;
    top: -5px;
    font-size: 11px;
    font-weight: 300;
}

#social_ctr a{
    text-decoration:none;
    color:white;
    font-size: 27px;
}

#social_ctr a img{
    width:35px;
}

.social{
    margin-left: 10px;
    margin-top: 10px;
    display: inline-block;
    font-size: 1rem !important;
}


.menu-bar {
      display: flex;
      justify-content: center;
      gap: 2rem;
    }

.toggle-button {
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border: 0;
    border-radius: 5px;
    background: none;
    text-decoration: none;
    color: white;
    margin-left: 40px;
    margin-right: 40px;
    font-weight: 600;
    font-size: 17px;
}

.arrow {
  transition: transform 0.2s ease;
}

.dropdown {
    position: fixed;
    top: 26vh;
    left: 50%;
    transform: translateX(-50%);
    width: 80vw;
    border: 1px solid #cccccc7d;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    padding: 1rem;
    display: none;
    border-radius: 17px;
    z-index: 10;
    /* From https://css.glass */
    background: rgba(255, 255, 255, 0.80);
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5.4px);
    -webkit-backdrop-filter: blur(5.4px);
}

    .dropdown.show {
      display: block;
    }
   
.menu_cat{
    font-weight: 600;
    font-size: 1.3rem;
    letter-spacing: 1px;
    padding: 10px;
} 

.menu_ctr{
    width: 100%;
    gap: 3rem;
    display: flex;
    justify-content: space-evenly;
    padding: 20px;
}
   
.menu_div{
    width: 100%;
    height: 200px;
    display: inline-block;
    padding-right: 20px;
    border-right: 1px solid #e9e9e9;
}

.menu_div img{
    width:50px;
    display:inline-block;
}

.menu_div h4{
    color: #194a4e;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 16px;
    display: inline-block;
}

.menu_div a{
    display: block;
    text-decoration: none;
    color: #2a2a2a;
    font-size: 14px;
    margin-top: 7px;
    margin-bottom: 7px;

}
 
.icon-row {
    display: flex;
    align-items: center;
    gap: 8px; /* térköz az elemek között */
}

.icon-row img {
    width: 24px; /* vagy ami illik */
    height: auto;
}

.icon-row .arrow {
    font-size: 18px;
    margin-left: auto; /* ha jobb szélre akarod igazítani a nyilat */
}

.arrow_ctr{
    margin-top:10px;
    margin-bottom:10px;
    display: flex; 
    justify-content: space-between; 
    align-items: center;
}

.arrow_ctr i{
    font-size: 12px;
}

.blackhover{
    width: 100%;
    height: 100vh;
    background: #000000c2;
    background: linear-gradient(0deg, rgba(42, 123, 155, 0) 0%, rgba(0, 0, 0, 0.68) 100%);
}

.blackhover_blog {
    width: 100%;
    height: 80vh;
    background: #000000c2;
    background: linear-gradient(0deg, rgba(42, 123, 155, 0) 0%, rgba(0, 0, 0, 0.68) 100%);
    vertical-align: middle;
    display: flex;
    align-items: center;
    justify-content: center;
}

.blackhover_blog h1{
    color:white;
    font-size:7rem;
    font-weight:900;
}

.blackhover p{
    color: white;
    font-weight: 500;
    width: 35%;
    margin-left: 50px;
}

.fooldal-btn{
    margin-left:50px;
    margin-top: 20px;
    display: inline-block;
}

#reviews{
    width:1200px;
    margin:auto;
    display:flex;
    gap:2rem;
    margin-top: 10vh;
    margin-bottom: 10vh;
}

.review {
    padding: 35px;
    margin-bottom: 20px;
    background: rgba(255, 255, 255, 0.19);
    border-radius: 23px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(3.8px);
    -webkit-backdrop-filter: blur(3.8px);
    border: 1px solid rgba(255, 255, 255, 0.44);
}

.review_ctr{
    height: auto;
    vertical-align: middle;
    display: flex;
}

    .stars {
      color: #ffd700;
      font-size: 1.2rem;
      margin-bottom: 10px;
    }

    .stars .fa-regular {
      color: #ccc;
    }

.review h5 {
    margin: 0 0 10px;
    color: #194a4e;
    font-weight: 500;
    font-size: 16px;
}

.review p {
    margin: 0;
    line-height: 1.3;
    font-weight: 300;
    font-size: 15px;
}

.review img{
    width: 30px;
    margin-bottom: 10px;
}

.videoslide_p{
    margin: auto;
    margin-top: 0;
    margin-bottom: 0;
}

.videoslide_btn{
    margin: auto;
    margin-bottom: 0;
    margin-top: 41px;
}

#rent_ctr{
    width:1200px;
    height: auto;
    margin:auto;
    text-align:center;
}

#adventure_ctr{
    width:1200px;
    height: auto;
    margin:auto;
    text-align:center; 
}

.rent_ctr_h1{
    font-size: 4rem;
    color: #303030;
    margin-top: 50px;
}

.rental_group_p{
    font-size: 1rem;
    font-weight: 300;
    width: 50%;
    margin: auto;
}

.rental_ctr{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top:50px;
}

.item {
    flex: 0 0 calc(30%);
    background: transparent;
    padding: 40px 0px;
    text-align: center;
    box-sizing: border-box;
    position: relative;
  }
  
.item_name{
    font-size: 2rem;
    font-weight: 600;
    color: #303030;
    margin-bottom: 15px;
}

.section_name{
    margin-top: 20px;
    font-weight: 400;
    font-size: 1.2rem;
    color: #2c2c2c;
}

.blog_name{
    height: 50px;
    margin-top: 20px;
    font-weight: 800;
    font-size: 1rem;
    color: #2c2c2c;
}

.item_btn{
    display: block;
    margin: auto;
    margin-top: 20px;
}

.item_p{
    font-weight: 300;
    font-size: 14px;
    line-height: 18px;
    padding: 10px 0px 0px 0px;
}

.slide_small{
    border-radius:23px;
    width:100%;
}

.small_slide_ctr{
    width:1200px;
    margin:auto;
    position:relative;
    margin-top:50px;
}


.smalll_side_logo{
    height: 80px;
    display: block;
    position:absolute;
    top:20px;
    left:30px;
}

.small_cap{
    position:absolute;
    bottom:50px;
    left:30px;
    color:white;
}

.small_cap h1,
.small_cap h2{
    font-size: 45px;
    color: #e0c389;
    font-weight: 700;

}

.small_p{
    font-weight: 200;
    font-size: 30px;
}

.smallslide_btn{
    position: absolute;
    bottom: 30px;
    right: 30px;
    width: auto;
}

footer{
    width:100%;
    height:40vh;
    background-image:url(../img/goat_footer_01.jpg);
    background-size:cover;
}

#footer_ctr{
    width:1200px;
    margin:auto;
    height:auto;
}

#contact{
    width: 1200px;
    height: auto;
    margin: auto;
    display: flex;
    justify-content: space-between;
    padding-top: 100px;
    padding-bottom: 100px;
}

.contact_ctr{
    width: 48%;
    border: 1px solid #e0e0e0;
    border-radius: 16px;
    height: 400px;
    padding: 3%;
    color: #303030;
    height: auto;
}

.contact_ctr h2{
    font-weight: 500;
}

.contact_ctr form input, form textarea{
    width: 100%;
    padding: 16px;
    border-radius: 16px;
    border: 1px solid #d7d7d7;
    margin: 16px 0px;
}

.footer_logo{
    width: 80px;
}

.send_btn{
    margin-bottom: 20px;
    width: auto;
}

.warning{
    color: #b02525;
    font-weight: 600;
    font-size: 12px;
}

.footer_icon{
    font-size: 1.2rem;
    padding: 5px 10px 5px 0;
    color: #d7bd8791;
}

.footer_header{
    font-size: 1.3rem;
    width: 170px;
    padding-left: 10px;
    font-weight: 700;
    color: #303030;
    letter-spacing:1px;
}

.footer_data{
    font-size:1.2rem;
}

.footer_inf{
    border-collapse: separate; 
    border-spacing: 0 10px;
}

.footer_hr{
    width: 100%;
    height: 0.5px;
    border: 0;
    background: #cfcfcf;
}

.footer_p{
    line-height: 1.4rem;
    font-size: 1rem;
    color: #303030;
    font-weight: 300;
}

#whatsapp{
    width: 60px;
    height: 60px;
    background: rgba(37, 211, 102, 0.7);
    border-radius: 100%;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5.7px);
    -webkit-backdrop-filter: blur(5.7px);
    border: 1px solid rgba(37, 211, 102, 1);
    position: fixed;
    right: 11px;
    bottom: 90px;
    z-index: 100001;
    display: flex;
    justify-content: center;
    align-items: center;
}

#whatsapp i {
    font-size: 28px;
    color: white;
}

.new_badge{
    position: absolute;
    top: 35px;
    background: red;
    width: 75px;
    height: 75px;
    border-radius: 100%;
    right: -20px;
/* From https://css.glass */
background: rgba(218, 16, 22, 0.78);
box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
backdrop-filter: blur(5px);
-webkit-backdrop-filter: blur(5px);
    color:white;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid rgba(218, 16, 22, 1);
}

.new_badge p {
    margin: 0;
    font-weight: 800;
    width: 70%;
    line-height: 13px;
    font-size: 11px;
}

#mobil_nav{
    display:none;
}

#rental_ctr{
    max-width: 1200px;
    margin: auto;
    text-align: center;
}

.grecaptcha-badge{
    display:none;
}

.social_mobil img{
    width:40px;
}

#mobil_social{
    position: fixed;
    bottom: 10px;
    right: 0px;
    width: 50px;
}

.dropbtn_new {
    background-color: transparent;
    color: white;
    padding: 16px;
    font-size: 16px;
    border: none;
    text-decoration: none;
    font-weight: 700;
}

.dropdown_new {
  position: relative;
  display: inline-block;
}

.dropdown_new-content {
    position: absolute;
    min-width: 50px;
    z-index: 1;
    right: 0px;
    background: rgba(255, 255, 255, 0.75);
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5.4px);
    -webkit-backdrop-filter: blur(5.4px);
    display: none;
}

.dropdown_new-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  border-radius: 16px;
}

.dropdown_new-content a:hover {background-color: #ddd;}

.dropdown_new:hover .dropdown_new-content {display: block;}

.dropdown_new:hover .dropbtn_new {background-color: transparent;}


#language_ctr_mobil{
    display:none;
}

.bike{
    margin-top:210px;
}

.bike_img{
    padding-right:50px;
}

#nav_ctr_bike{
    width: 100%;
    height: auto;
    position: absolute;
    top: 0;
    left: 0;
    background: #003023;
    z-index: 10;

}

.product_img{
    width:100%;
    height:auto;
}


#burger_ctr{
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1001;
    width: 100%;
    height: 100vh;
    font-family: 'Roboto';
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(5.4px);
    -webkit-backdrop-filter: blur(5.4px);
    text-decoration: none;
}

#phoneclose{
    position:absolute;
    top:20px;
    right:20px;
    font-size:30px;
}

#phonemenuctr{
    width:90%;
    margin:auto;
    margin-top:80px;
    text-align: center;
}

#phonemenuctr a{
    text-decoration:none;
    color:black;
    line-height: 27px;
    display: block;
}

#phonemenuctr a:hover{
    text-decoration:underline;
}

.phonemenulist{
 }

.fomenu_mobil{
    color: #194a4e;
    font-weight: 800;
    text-transform: uppercase;
    display: block;
    font-size: 29px;
    margin-top: 15px;
}

.phone_logomenu{
    margin: auto;
    margin-bottom: 50px;
    width: 30%;
    display: block;
}

.emoji {
  font-family:
    "Apple Color Emoji",
    "Segoe UI Emoji",
    "Segoe UI Symbol",
    sans-serif !important;
}

/* Mobile */
@media (max-width: 768px) {



.bike_img{
    padding-right:0;
}


#nav_ctr_bike {
    display: none;
}

.bike{
    margin-top:100px;
}
 
#language_ctr_mobil{
        display: block;
        position: fixed;
        bottom: 0;
        z-index: 100;
        cursor: pointer;
        font-family: 'Roboto';
        background: rgba(255, 255, 255, 0.75);
        border-radius: 0 16px 0 0;
        box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
        backdrop-filter: blur(5.4px);
        -webkit-backdrop-filter: blur(5.4px);
} 

.dropdown_new_mobil{
    position: relative;
    display: inline-block;
}

.dropbtn_new_mobil {
        background-color: transparent;
        color: #111111;
        padding: 16px;
        font-size: 16px;
        border: none;
        text-decoration: none;
        font-weight: 700;
}

.dropdown_new-content_mobil {
        position: absolute;
        min-width: 75px;
        z-index: 1;
        bottom: 50px;
        background: rgba(255, 255, 255, 0.75);
        border-radius: 16px 16px 16px 0;
        box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
        backdrop-filter: blur(5.4px);
        -webkit-backdrop-filter: blur(5.4px);
        display: none;
}

.dropdown_new-content_mobil a {
        color: black;
        padding: 12px 16px;
        text-decoration: none;
        display: block;
        text-align: center;
        font-weight: 800;

}

.dropdown_new-content_mobil a:hover {background-color: #ddd;}

.dropdown_new_mobil:hover .dropdown_new-content_mobil {display: block;}

.dropdown_new_mobil:hover .dropbtn_new_mobil {background-color: transparent;}

    
.slide3{
    background-image:url(../img/jetski_phone1.jpg) !important;
}    

  .content h1 {
    font-size: 2.5rem;  /* Kisebb szöveg mobilon */
  }

.content p {
    font-size: 1.2rem;  /* Kisebb szöveg mobilon */
}

.next-section h1,
.next-section h2 {
    font-size: 2rem;
}

.next-section p {
    font-size: 1rem;
}

  /* A videó és a szöveg nem torzul, de kisebb képernyőkön is jól néz ki */
#bgVideo {
    object-position: center center;
}
  
#main_p {
    width: 100%;
}  
  
.slide h2 {
    font-size: 2rem;
    width: 80%;
    margin-left: 10%;
    margin-top: 20vh;
} 

#nav_ctr {
    display: none;
}

.nav {
    padding: 0 0rem;
}

#weather_city {
    font-size: 17px;
}

#weather_temperature {
    font-size: 1.4rem;
}

.weather-container {
    left: 10%;
    right: auto;
    bottom: 13vh;
}

.btn {
        width: 250px;
        font-size: 16px;
        margin-left: auto;
}

#mobil_nav{
        z-index: 10001;
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        background-image: url(../img/buggie_slide_new.jpg);
        background-size: cover;
        background: #11170d;
}

#main_logo_mobil{
        width: 40px;
        height: 40px;
        margin: 10px 10px 5px 20px;
}

#burger_menu{
        float: right;
        margin: 15px 20px 0px 0px;
        font-size: 1.5rem;
        color: white;
        cursor: pointer;
}

.next-section {
    width: 100%;
    height: auto;
}

#reviews {
    width: 100%;
    display:block;
}

.review{
    width: 90%;
    margin: auto;
    margin-bottom: 50px;
}


#rent_ctr {
    width: 100%;
}

.rental_group_p {
    width: 90%;
}

.rental_ctr {
    display: block;
    width: 90%;
    margin: auto;
}

.image-container {
    display: none;
}

.image-container.gallery-slider {
    display: block;
}

.gallery-track {
    aspect-ratio: 4 / 5;
    min-height: 420px;
}

.gallery-nav {
    width: 42px;
    height: 42px;
}

.gallery-nav-prev {
    left: 14px;
}

.gallery-nav-next {
    right: 14px;
}

.new_badge {
    top: 65px;
    right: -10px;
}

.small_slide_ctr {
    display: none;
}

#adventure_ctr {
    width: 100%;
}

#contact {
    width: 100%;
    display: block;
}

.contact_ctr {
    width: 90%;
    margin: auto;
    margin-bottom: 50px;
    padding: 0;
    border: 0;
}

.footer_data {
    font-size: 14px;
}

.footer_header {
    font-size: 17px;
    width: 110px;
}


.blackhover p {
    width: 80%;
    margin-left: 10%;
}

.fooldal-btn{
    margin-left:10%;
}

#float_section {
    width: 100%;
    height: auto;
    display: block;
}

.box {
    justify-content: left;
    margin-top: 20px;
}

.half {
    width: 90%;
    float: none;
    margin: auto;
    margin-top: 50px;
}

#buggie_img {
        width: 100%;
        margin-top: 0;
        margin-bottom: 20px;
        display: block;
}

.quad-photo-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1.35fr 1fr 1fr;
    width: 100%;
    margin-top: 0;
    margin-bottom: 30px;
    aspect-ratio: auto;
}

.quad-photo-main {
    grid-column: 1 / 3;
    grid-row: auto;
    min-height: 260px;
    border-radius: 18px 18px 0 0;
}

.quad-photo-tile {
    min-height: 140px;
}

.quad-photo-grid .quad-photo-tile:nth-of-type(2),
.quad-photo-grid .quad-photo-tile:nth-of-type(3),
.quad-photo-grid .quad-photo-tile:nth-of-type(5) {
    border-radius: 0;
}

.quad-photo-grid .quad-photo-tile:nth-of-type(4) {
    border-radius: 0 0 0 18px;
}

.quad-photo-grid .quad-photo-tile:nth-of-type(5) {
    border-radius: 0 0 18px 0;
}

.quad-photo-button {
    right: 12px;
    bottom: 12px;
    padding: 12px 16px;
    font-size: 14px;
}

.photo-modal {
    padding: 12px;
}

.photo-modal-dialog {
    width: 100%;
    max-height: 94vh;
    border-radius: 14px;
}

.photo-modal-header {
    padding: 14px 16px;
}

.photo-modal-header h2 {
    font-size: 20px;
}

.photo-modal-stage {
    height: 56vh;
}

.photo-modal-nav {
    width: 40px;
    height: 40px;
}

.photo-modal-thumbs {
    grid-template-columns: repeat(3, 1fr);
}

.photo-modal-thumb {
    height: 72px;
}

.quad-gallery-booking {
    width: 100%;
    margin-top: 24px;
}

.new-section {
    width: 100%;
}

#please {
    width: 100%;
    font-size: 18px;
}

.h2_price {
    width: 100%;
    font-size: 18px;
}

.table_price {
    width: 100%;
    font-size: 15px;
}


.content {
    padding: 10%;
}

.telobtn{
    margin-left: 0;
}

#booking_form{
    background: transparent;
    padding: 0;
    box-shadow: none;
}

#contactForm{
    padding: 0;
    background: transparent;
    box-shadow: none;
}

input, select, textarea {
    font-size: 16px;
  }
  
  .slider_blog {
    background-size: cover;
    background-attachment: scroll;
    background-position: center;
}
  
}
