@import url('https://fonts.googleapis.com/css2?family=Charm:wght@400;700&display=swap');
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}
body {
    height: 100vh;
}
/* Header, Navigation */
header {
    position: relative;
    background-color: gray;
}
.headerBoth {
    width: 100%;
    background-position: center;
    background-size: cover;
    position: relative;
}
.headerMain {
    min-height: 100vh;
    background-image: linear-gradient(rgba(4,9,30,0),rgba(4,9,30,0)),url(images/main_page_pic.jpg);
}
.headerSub1 {
    min-height: 60vh;
    background-image: linear-gradient(rgba(4,9,30,0.8),rgba(4,9,30,0.1)),url(images/main_page_pic.jpg);
}
.headerSub2 {
    min-height: 60vh;
    background-image: linear-gradient(rgba(4,9,30,0.8),rgba(4,9,30,0.1)),url(images/main_page_pic.jpg);
}
.row {
    display: block;
}
nav {
    background-color: rgba(4,9,30,0.4);
    margin: 0 auto;    
    padding: 1rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo img {
    width: 100px;
}
.nav-links {
    color: white;
}
.nav-links ul {
    display: flex;
    gap: 2rem;
}
.nav-links ul li, .dropdown_menu ul li a {
    list-style: none;
}
.nav-links ul li a, .dropdown_menu ul li a {
    text-decoration: none;
    color: white;
    text-shadow: 2px 2px 5px #141414;
}
.nav-links ul li a:hover, nav .fa:hover, .dropdown_menu ul li a:hover, footer .list ul li:hover {
    color: #5D9BB2;
    transition: 0.5s;
}
.nav-links ul li a::after, footer ul li a::after{
    content: '';
    width: 0;
    height: 2px;
    background: #5D9BB2;
    display: block;
    margin: auto;
    transition: 0.5s;
}
.nav-links ul li a:hover::after, .dropdown_menu ul li a::after, footer ul li a:hover::after {
    width: 100%;
}
.toggle_btn {
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
}
.text-box {
    background-color: rgba(0, 0, 0, 0);
    color: white;
    position: absolute;
    padding: 10px;
    top: 60%;
    left: 50%;
    transform: translate(-50%,-60%);
    text-align: center;
}
.text-box h1, h2{
    font-size: 62px;
    text-shadow: 6px 6px 6px rgb(0, 0, 0);
    font-family: "Charm";
    background-color: rgba(0, 0, 0, 0.32);
    border-radius: 10px;
    -webkit-text-stroke: 1.4px black;
}
.text-box p {
    margin-top: 1em;
    font-size: 24px;
    border-radius: 10px;
    padding: 10px;
    background-color: rgba(93, 155, 178, 0.8);
}
/* Header, Navigation Dropdown */
.dropdown_menu {
    display: none;
    position: absolute;
    z-index: 1;
    right: 2rem;
    top: 70px;
    height: 0;
    width: 300px;
    background-color: rgba(14,14,14,0.92);
    overflow: hidden;
    transition: height .2 cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.dropdown_menu.open {
    height: 240px;
}
.dropdown_menu li {
    padding: 0.7rem;
    display: flex;
    align-items: center;
    justify-content: center;
}
.toggle_btn {
    display: none;
}
/* Responsive Header, Responsive Navigation */
@media (max-width: 992px) {
    .toggle_btn {
        display: block;
    }
    .nav-links {
        display: none;
    }
    .dropdown_menu {
        display: block;
    }
    .text-box h1 {
        font-size: 44px;
        font-weight: 200;
        -webkit-text-stroke: 0px white;
    }
}

/* Main */
.wrapper {
    max-width: 70vw;
    margin: auto;
    text-align: justify;
    background-color: rgb(250, 250, 250);
}
.content {
    display: flex;
    padding: 20px 50px;
    flex-direction: column;
}
.wrapper .content figure {
    text-align: center;
}
.wrapper .content figure ul li {
    list-style-type: none;
}
figure {
    background-color: rgb(216, 216, 216);
    font-weight: bold;
}
.piros {
    color: rgba(255, 0, 0, 0.7);
    font-size: 26px;
}
.content p, h4, li {
    padding: 2px 8px;
}
.wrapper .content p, .wrapper .content h4 {
    margin: 1em 0;
}
.content-box {
    width: 100%;
}
.content-box iframe {
    width: 100%;
    margin: auto;
}

.photo_container {
    max-width: 1224px;
    width: 90% ;
    margin: auto;
    padding: 40px 0;
}

.photo-gallery {
    display: flex;
    gap: 20px;
}

.column {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.photo img {
    width: 100%;
    height: 100%;
    border-radius: 5px;
    object-fit: cover;
}

/* GALLERY */

.containerg{
    position: relative;
}

.containerg .wrapperg{
    width: 95vw;
    height: 65vh;
    /*box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.3);*/
    border-radius: 5px;
    margin: 5rem auto;
    overflow: hidden;
}

.containerg .wrapper-holderg{
    display: grid;
    grid-template-columns: repeat(7, 100%);
    height: 100%;
    width: 100%;
    animation: slider 30s ease-in-out infinite forwards;
}

/****MH26***/

.containerg #slider-img-1{
    background-image: url(images/image1.jpg);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
}

.containerg #slider-img-2{
    background-image: url(images/image2.jpg);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
}
.containerg #slider-img-3{
    background-image: url(images/image3.jpg);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
}
.containerg #slider-img-4{
    background-image: url(images/image4.jpg);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
}
.containerg #slider-img-5{
    background-image: url(images/image5.jpg);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
}
.containerg #slider-img-6{
    background-image: url(images/image6.jpg);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
}
.containerg #slider-img-7{
    background-image: url(images/image7.jpg);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
}

/**** MH27 ***/

.containerg #slider-img-8{
    background-image: url(images/mh27/img1.jpeg);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
}

.containerg #slider-img-9{
    background-image: url(images/mh27/img2.jpeg);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
}
.containerg #slider-img-10{
    background-image: url(images/mh27/img3.jpeg);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
}
.containerg #slider-img-11{
    background-image: url(images/mh27/img4.jpeg);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
}
.containerg #slider-img-12{
    background-image: url(images/mh27/img5.jpeg);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
}
.containerg #slider-img-13{
    background-image: url(images/mh27/img6.jpeg);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
}
.containerg #slider-img-14{
    background-image: url(images/mh27/img7.jpeg);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
}

/******CAMPING***/

.containerg #slider-img-15{
    background-image: url(images/kemping1.jpg);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
}

.containerg #slider-img-16{
    background-image: url(images/kemping2.jpg);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
}
.containerg #slider-img-17{
    background-image: url(images/kemping3.jpg);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
}
.containerg #slider-img-18{
    background-image: url(images/kemping4.jpg);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
}
.containerg #slider-img-19{
    background-image: url(images/kemping5.jpg);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
}
.containerg #slider-img-20{
    background-image: url(images/kemping6.jpg);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
}
.containerg #slider-img-21{
    background-image: url(images/kemping7.jpg);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
}
.containerg .button-holder .button{
    background-color: white;
    width: 15px;
    height: 15px;
    border-radius: 15px;
    display: inline-block;
    margin: .3rem;
}
.containerg .button-holder{
    position: absolute;
    bottom: 0;
    left: 45%;

}

@media screen and (max-width:600px){
    .containerg .button-holder{
        display: none;
    }
}

@keyframes slider{
    0%{transform: translateX(0%);}
    10%{transform: translateX(-100%);}
    20%{transform: translateX(-100%);}
    30%{transform: translateX(-200%);}
    40%{transform: translateX(-200%);}
    50%{transform: translateX(-200%);}
    60%{transform: translateX(-300%);}
    70%{transform: translateX(-300%);}
    80%{transform: translateX(-300%);}
    90%{transform: translateX(0%);}
    100%{transform: translateX(0%);}
}
.wrapperg h3 {
text-align: center;
margin-top: 20px;
margin-bottom: 0;
font-size: 30px;
}


.wrapper .content-center h3 {
    text-align: center;
}
.detailsimg {
    margin: auto;
    width: 70%;
    display: block;
    border-radius: 5px;
}

/*** PRICING TABLE ****/

.pricing-table {
    width: 80%;
    margin: 20px auto;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    text-align: center;
  }
  
  .pricing-table h1 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #2c3e50;
  }
  
  table {
    width: 100%;
    border-collapse: collapse;
  }
  
  th, td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #ddd;
  }
  
  th {
    background-color: #34495e;
    color: #fff;
  }
  
  tr:nth-child(even) {
    background-color: #f9f9f9;
  }
  
  tr:hover {
    background-color: #ecf0f1;
  }


  /***AKCIÓ**/

  .action {
    background-color: #f2f2f2;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    margin: 20px 0;
    font-family: 'Arial', sans-serif;
  }
  
  .action__content {
    text-align: center;
  }
  
  .action__title {
    font-size: 1.8rem;
    color: red;
    margin-bottom: 10px;
  }
  
  .action__description {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 15px;
  }
  
  .action__list {
    list-style-type: none;
    padding: 0;
    margin-bottom: 15px;
  }
  
  .action__list li {
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 5px;
  }
  
  .action__validity {
    font-size: 1rem;
    color: #666;
    font-style: italic;
  }
  

@media screen and (max-width: 800px) {
    .column {
      flex: 100%;
      max-width: 100%;
    }
    .wrapper {
        max-width: 95vw;
    }
    .map-content {
        width: 100% !important; 
        margin: auto;
    }
    .content-box iframe {
        height: 400px;
    }
    .text-box p {
        font-size: 20px;
    }
    .photo-gallery{
        flex-direction: column-reverse;
    }
    .detailsimg {
        margin: auto;
        width: 100%;
        display: block;
    }
  }


   @media screen and (max-width: 600px) {
    main {
        font-size: 12px;
    }
    .column {
      flex: 100%;
      max-width: 100%;
    }
    .wrapper {
        max-width: 95vw;
    }
    .content {
        padding: 2px 8px;
    }
    .content-box iframe {
        height: 400px;
    }
    .text-box p {
        font-size: 16px;
    }
    
  }
.button-page{
    display: inline-block;
    border: 1px solid #141414;
    margin: 1em auto;
    padding: 0.25em 0.75em;
    border-radius: 5px;
}
.button-page a {
    text-decoration: none;
    color: #141414;
    font-size: 20px;
}
.button-page:hover{
    background: #5D9BB2;
    transition: 0.5s;
}
.map-content {
    width: 75%;
    margin: auto;
}
.google-maps {
    position: relative;
    width: 50%;
    padding-bottom: 75%;
    overflow: hidden;
}
.google-maps iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
}
details {
	font-size: 1rem;
	margin: 1em auto;
	box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1),
		0 10px 10px -5px rgba(0, 0, 0, 0.04);
	width: 100%;
	background: #ffffff;
	border-radius: 8px;
	position: relative;
    padding: 5px;
}
details  {
    border-top: 1px solid #464646;
    border-bottom: 1px solid #464646;
    cursor: default;
    padding: details-padding;
    font-weight: 300;
    line-height: 1.5;
}
details summary {
    cursor: pointer;
}
.center {
    text-align: center;
}
/* Footer */
footer {
    padding: 40px 0;
    color: #ffffff;
    background-color: black;
}
footer .social {
    text-align: center;
    padding-bottom: 25px;
}
footer .social a {
    font-size: 20px;
    color: inherit;
    border: 1px solid #ccc;
    width: 40px;
    height: 40px;
    line-height: 38px;
    display: inline-block;
    text-align: center;
    border-radius: 50%;
    margin: 0 8px;
    opacity: 0.75;
}
footer .social a:hover {
    opacity: 0.9;
    color: #5D9BB2;
    border: 1px solid #5D9BB2;
    transition: 0.5s;
}
footer ul {
    margin-top: 0;
    padding: 0;
    list-style: none;
    text-align: center;
}
footer ul a {
    color: inherit;
    text-decoration: none;
    opacity: 0.8;
}
footer ul li {
    display: inline-block;
    padding: 0 0.7em;
    font-size: 14px;
}
footer .list p {
    margin: 1em 0 0 0;
}

