/* Google Fonts import a fájl tetejére */
/* @import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700;900&display=swap'); */
@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@400;500;600;700;900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
   font-family: "Raleway", sans-serif;
}

body {
    background-color: #263a48;
    color: white;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header {
    padding: 20px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: background 0.3s;
    color: #263a48;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Hamburger alaphelyzetben rejtve */
.hamburger {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
    margin-left: auto;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: #fff; /* Változtasd a logódhoz illő színre */
    border-radius: 3px;
    transition: 0.3s;
}

/* Mobil nézet (768px alatt) */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
        z-index: 1001;
    }

    #nav-links {
        display: none; /* Alapból rejtve mobil értéken */
        flex-direction: column;
        position: absolute;
        align-items: flex-end;
        top: 68px; /* A header magasságától függ */
        right: 0;
        background-color: #333;
        width: 100%;
        text-align: center;
        box-shadow: 0 5px 10px rgba(0,0,0,0.1);
        padding: 20px;
    }

    #nav-links li {
        margin-left: 0;
        margin: 5px 0;
    }

    #nav-links a {
        color: white!important;
        opacity: 1!important;
    }

    /* Ha aktív az osztály, mutassuk a menüt */
    #nav-links.active {
        display: flex;
    }
}

header.scrolled {
    background: #263a48!important;
    color: white;
}

header.scrolled .hamburger span {
    background-color: #fff;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    letter-spacing: 2px;
    color: white;
}

.nav-links {
    display: flex;
    list-style: none;
    align-items: center;
}

.nav-links li {
    margin-left: 30px;
}

header:not(.header-show) .nav-links a {
    opacity: 0;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-size: 12px;
    font-weight: bold;
}

header.scrolled .nav-links a {
    color: white!important;
    opacity: 1;
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(180deg, #00d2ff 0%, #00acee 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding-top: 80px;
}

.hero-content {
    max-width: 900px;
}

.award-text {
    font-size: 14px;
    letter-spacing: 3px;
    margin-bottom: 20px;
}

.hero h1 {
    font-size: 3rem;
    line-height: 1.2;
    font-weight: 800;
}

.hero h1 span {
    text-decoration: underline;
}

.lets-talk-scroll {
    margin-top: 50px;
}

.mouse-icon {
    width: 30px;
    height: 50px;
    border: 2px solid white;
    border-radius: 20px;
    margin: 10px auto;
    position: relative;
}

.mouse-icon::before {
    content: '';
    width: 6px;
    height: 6px;
    background: white;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 10px;
    border-radius: 50%;
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0% { opacity: 1; top: 10px; }
    100% { opacity: 0; top: 30px; }
}

/* Footer */
footer {
    background-color: #263a48;
    padding: 60px 0 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    align-items: start;
}

.footer-socials {
    display: flex;
    flex-wrap: wrap;
    margin-top: 10px;
}

.footer-socials li {
    margin: 0 10px;
    display: flex;
    align-items: center;
}

.footer-socials li i {
    font-size: 1.2rem;
}

.footer-socials a {
    transition: all .3s;
}

.footer-socials a:hover {
    transition: all .3s;
}

.footer-col h4 {
    margin-bottom: 20px;
    font-size: 16px;
    color: rgba(255,255,255,0.7);
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col a {
    color: white;
    text-decoration: none;
    font-size: 14px;
}

.footer-bottom {
    text-align: center;
    margin-top: 50px;
    font-size: 12px;
    opacity: 0.6;
}

/* Mobil nézet */
@media (max-width: 768px) {
    .nav-links {
        display: none; /* Burger menühöz kellene JS */
    }
    .hero h1 {
        font-size: 2rem;
    }
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.testimonials {
    position: relative; /* Hogy a hullám hozzá képest igazodjon */
    padding-top: 30px; /* Megnövelt padding, hogy a hullám ne takarja a címet */
    background-color: #00acee; /* */
    text-align: center;
    padding-bottom: 50px;
}

.ondebox {
    position: absolute;
    top: -137px;
    left: 0;
    width: 100%;
}

.ondebox--logo-slider-top {
    position: absolute;
    z-index: 99;
    top: 0;
    transform: rotate(180deg);
}

.onde {
  position:relative;
  width: 100%;
  height:15vh;
  margin-bottom:-7px; /*Fix for safari gap*/
  min-height:100px;
  max-height:150px;
}

.ondebox--logo-slider-top .onde {
    max-height: 5px;
    height: 5vh;
}

/* Animation */

.parallaxonde > use {
  animation: move-forever 25s cubic-bezier(.55,.5,.45,.5)     infinite;
}
.parallaxonde > use:nth-child(1) {
  animation-delay: -2s;
  animation-duration: 7s;
}
.parallaxonde > use:nth-child(2) {
  animation-delay: -3s;
  animation-duration: 10s;
}
.parallaxonde > use:nth-child(3) {
  animation-delay: -4s;
  animation-duration: 13s;
}
.parallaxonde > use:nth-child(4) {
  animation-delay: -5s;
  animation-duration: 20s;
}
@keyframes move-forever {
  0% {
   transform: translate3d(-90px,0,0);
  }
  100% { 
    transform: translate3d(85px,0,0);
  }
}
/*Shrinking for mobile*/
@media (max-width: 768px) {
  .onde {
    height:40px;
    min-height:40px;
  }

  .ondebox {
    top: -40px
  }
}

.testimonials .container {
    flex-direction: column;
}

.section-title {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 30px;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-align: center;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 25px;
    align-items: start;
    margin-bottom: 50px;
}

.testimonial-card {
    background: white;
    color: #333;
    padding: 30px;
    border-radius: 15px;
    text-align: left;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.testimonial-card.hidden {
    display: none;
    opacity: 0;
}

.card-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.card-header img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-right: 15px;
    object-fit: cover;
}

.user-info h4 {
    font-size: 16px;
    margin-bottom: 2px;
}

.user-info p {
    font-size: 13px;
    color: #777;
    margin-bottom: 5px;
}

.stars {
    color: #ffcc00;
    font-size: 14px;
}

.review-text {
    line-height: 1.6;
    font-size: 15px;
    color: #444;
}

/* Load More Gomb */
#load-more-wrapper {
    margin-top: 40px;
    opacity: 0; /* Alapból láthatatlan a görgetésig */
    transform: translateY(20px);
    transition: all 0.8s ease-out;
    cursor: pointer;
}

#load-more-wrapper.visible {
    opacity: 1;
    transform: translateY(0);
}

#load-more-wrapper p {
    font-weight: bold;
    font-size: 14px;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.load-more-btn {
    width: 50px; /* Kicsit nagyobbra vettem a jobb hatásért */
    height: 50px;
    background: white;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    color: #00acee;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    cursor: pointer;
    transition: transform 0.3s ease;
    
    /* Itt a lényeg: a kezdeti szabálytalan forma */
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    /* Animáció hozzáadása */
    animation: bubble-morph 4s linear infinite alternate;
}

.load-more-btn:hover {
    transform: scale(1.1);
    background-color: #f0f0f0;
}

/* A "buborék" mozgásának fázisai */
@keyframes bubble-morph {
    0% {
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    }
    50% {
        border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%;
    }
    100% {
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    }
}

/* Mobil reszponzivitás */
@media (max-width: 768px) {
    .section-title { font-size: 2rem; }
    .testimonial-grid { grid-template-columns: 1fr; }
}

.parallax-hero {
    position: relative;
    height: 100vh; /* Megnövelt magasság a görgetési élményhez */
    overflow: hidden;
    background-color: #263a48;
}

/* .parallax-hero::before {
    content: '';
    z-index: 98;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.3);
} */

.parallax-container {
    position: sticky;
    top: 0;
    height: 100vh;
    width: 100%;
    overflow: hidden;
}

.parallax-layer {
    position: absolute;
    bottom: 0; /* Alulról indítjuk a képeket */
    left: 0;
    width: 100%;
    height: 100%;
    background-position: bottom center;
    background-repeat: no-repeat;
    background-size: cover;
    will-change: transform;
}

/* Rétegek sorrendje */
.layer-bg { z-index: 1; }
.layer-hill { z-index: 2; }
.layer-water { z-index: 3; }
.layer-front { 
    z-index: 4; 
    /* Ez a réteg nem fog mozogni a JS-ben, így fix pontként szolgál */
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    text-align: center;
    width: 100%;
    pointer-events: none; /* Ne zavarja a kattintást */
    z-index: 99;
}

.hero h1 {
    font-size: 2.8rem; /* Kicsit kisebb, hogy a 3 sor kényelmesen elférjen */
    line-height: 1.3;
    font-weight: 800;
    margin: 20px 0;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.5); /* Jobb olvashatóság a világos háttér előtt */
}

.hero-subtitle {
    font-size: 1.2rem;
    font-weight: 400;
    letter-spacing: 1px;
    opacity: 0.9;
    text-transform: uppercase;
}

/* Mobilra optimalizált betűméret */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 1.6rem;
    }
    .hero-subtitle {
        font-size: 0.9rem;
    }
}

/* Az új szekció stílusa */
.hero-text-section {
    background-color: #263a48; /* Ugyanaz a sötétkék, mint a testimonials */
    padding: 100px 0;
    text-align: center;
    color: white;
}

.hero-text-section .container {
    flex-direction: column; /* Egymás alá kerüljenek a szövegek */
}

.small-title {
    font-size: 14px;
    letter-spacing: 2px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #00acee; /* Kiemelő kék szín */
}

.main-headline {
    font-size: 1.9rem;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 40px;
    text-transform: lowercase; /* A karakteresebb megjelenésért */
}

.main-headline .highlight {
    color: #00acee;
}

.main-subline {
    padding: 20px 30px;
    border-radius: 50px;
    background-color: #00d2ff;
    color: white;
    font-weight: 600;
    font-size: 1.2rem;
}

.main-btn {
    margin-top: 50px;
    margin-bottom: 50px;
    display: flex;
    justify-content: center;
    width: 100%;
}

.main-btn button {
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    margin-top: 15px;
    color: white;
    font-weight: 800;
    text-decoration: none;
    transition: all .3s;
    border: 1px solid #fcb94a;
    background-color: #fcb94a;
    border-radius: 50px;
    padding: 15px 20px;
    margin-top: auto;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    font-size: 1.2rem;
    cursor: pointer;
}

.js-call-form {
    cursor: pointer;
}

.main-btn a:hover {
    transition: all .3s;
    background-color: #00acee;
    border-color: #00acee;
}

.hero-text-section-balaton {
    max-width: 768px;
    width: 100%;
    margin-top: 30px;
}

.hero-image-container {
    position: relative;
    display: inline-block; /* Hogy a konténer csak akkora legyen, mint a kép */
}

.pulsing-dot {
    position: absolute;
    /* Állítsd be, hol legyen a pont (példa: kép közepe táján) */
    bottom: 38px;
    right: 196px;
    
    width: 15px;
    height: 15px;
    background-color: #ffffff; /* Fehér pont, de lehet a világoskéked is (#00acee) */
    border-radius: 50%;
    z-index: 10;
}

/* A villogó (lüktető) effekt */
.pulsing-dot::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background-color: inherit;
    border-radius: 50%;
    z-index: -1;
    animation: pulse 2s ease-out infinite;
}

@keyframes pulse {
    0% {
        width: 15px;
        height: 15px;
        opacity: 0.7;
    }
    100% {
        width: 45px;
        height: 45px;
        opacity: 0;
    }
}

.main-subline span {
    font-size: 1.8rem;
    font-weight: 800;
    margin-right: 7px;
}

.sub-headline {
    font-size: 1.4rem;
    font-weight: 400;
    letter-spacing: 1px;
    opacity: 0.8;
}

/* Mobil optimalizálás */
@media (max-width: 768px) {
    .main-headline {
        font-size: 2rem;
    }
    .hero-text-section {
        padding: 80px 20px;
    }
}

@media (max-width: 560px) {
    .main-headline {
        font-size: 1.6rem;
    }
}

/* Scroll Indicator Stílus */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 100;
    text-align: center;
    color: white;
    pointer-events: none; /* Ne akadályozza a görgetést */
}

.scroll-indicator p {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 10px;
    text-shadow: 0 2px 5px rgba(0,0,0,0.5);
}

.mouse {
    width: 26px;
    height: 42px;
    border: 2px solid white;
    border-radius: 15px;
    margin: 0 auto;
    position: relative;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.wheel {
    width: 4px;
    height: 8px;
    background-color: white;
    border-radius: 2px;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll-wheel 2s infinite ease-in-out;
}

@keyframes scroll-wheel {
    0% {
        top: 6px;
        opacity: 0;
    }
    30% {
        opacity: 1;
    }
    100% {
        top: 25px;
        opacity: 0;
    }
}

/* A teljes indikátor lebegő animációja */
@keyframes floating-mouse {
    0% { transform: translate(-50%, 0); }
    50% { transform: translate(-50%, 15px); } /* 15 pixelt mozog lefelé */
    100% { transform: translate(-50%, 0); }
}

.scroll-indicator {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 100;
    text-align: center;
    color: white;
    pointer-events: none;
    /* Alkalmazzuk a lebegő animációt */
    animation: floating-mouse 2s infinite ease-in-out;
    transition: opacity 0.3s ease-out; /* Simább eltűnéshez */
}

.stats-section {
    background-color: #263a48; /* Ez a bázis kék színed */
    padding: 0px 0 0 0;
    text-align: center;
    color: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    align-items: flex-start;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Az ikon gradiens beállítása */
.stat-icon i {
    font-size: 5rem;
    
    /* Gradiens létrehozása: fehérről a háttér kékjére */
    background: linear-gradient(to bottom, 
        rgba(255, 255, 255, 1) 0%, 
        rgba(255, 255, 255, 0.8) 30%, 
        rgba(0, 172, 238, 0.5) 100%);
    
    /* Ez vágja rá a gradienst magára az ikon formájára */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    
    /* Opcionális: egy pici lágyság az aljára */
    display: inline-block;
}

.stat-icon img {
    width: 70px;

}

.stat-title {
    font-size: 0.9rem;
    font-weight: 800;
    margin: 10px 0 10px 0;
    text-transform: uppercase;
    color: #00acee;
    letter-spacing: 2px;
}

.stat-desc {
    font-size: 0.9rem;
    opacity: 0.9;
    max-width: 200px;
    line-height: 1.4;
    color: white;
}

.stat-item ul {
    display: flex;
    align-items: center;
    flex-direction: column;
    list-style: none;
}

.stat-item ul li {
    /* A kért betűtípus beállítás */
    color: white;
    position: relative;
    padding-left: 25px; /* Hely kihagyása a pipának */
    margin-bottom: 8px;
    display: flex;
    align-items: center;
}

/* A kék pipa (Font Awesome ikon használatával) */
.stat-item ul li::before {
    content: "\f00c"; /* Font Awesome 'check' ikon kódja */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0; 
    top: 50%;
    transform: translateY(-50%);
    color: #00acee; /* A te kék színed */
    font-size: 0.9em;
}

/* Mobil nézet */
@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
}

.feature-slider {
    background-color: #263a48; /* Világosabb kék háttér a kontraszthoz */
    padding: 0 0 100px 0;
}

@media (max-width: 768px) {
    .feature-slider {padding: 0 0 50px 0;}
}


.featureSwiper {
    padding: 50px 20px !important;
    padding-top: 0!important;
}

.card-item {
    height: auto;
}

.card-content {
    background-color: #00acee; /* Sötétkék kártya háttér, mint a képen */
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: row;
    min-height: 350px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
    color: white;
}

.card-image {
    width: 45%;
    background-size: cover;
    background-position: center;
    position: relative;
}

.card-text {
    width: 55%;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
    align-items: flex-start;
}

.card-author {
    font-weight: 600;
    display: flex;
    align-items: center;
    margin-top: 15px;
    color: white;
    text-decoration: none;
    transition: all .3s;
    border: 1px solid #fcb94a;
    background-color: #fcb94a;
    border-radius: 50px;
    padding: 15px 20px;
    margin-top: auto;
}

.card-author:hover {
    color: white;
    transition: all .3s;
    border-color: #263a48;
    background-color: #263a48;
}

.card-author i {
    margin-left: 10px;
}

.card-text h4 {
    font-size: 1.8rem;
    font-weight: 900;
    margin-bottom: 15px;
    margin-top: 15px;
}

.card-subtitle {
    font-size: 1.1rem;
    color: #00acee; /* Kiemelő kék */
    font-weight: 700;
    margin-bottom: 15px;
}

.card-desc {
    font: 500 1rem/1.667em 'Raleway', sans-serif; /* A korábban kért tipográfia */
    opacity: 0.9;
    margin-bottom: 25px;
    position: relative;
    padding-left: 40px;
    text-align: justify;
    margin-top: 15px;
}

.card-desc::before {
    font-size: 2rem;
    position: absolute;
    top: 0px;
    left: -0;
    width: 30px;
    height: 24px;
    background: url(./img/icon-quotes-2.svg) no-repeat left top / contain;
    content: '';
}

.card-link {
    color: white;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: 0.3s;
}

.card-link:hover {
    color: #00acee;
}

/* Swiper navigáció testreszabása */
.featureSwiper .swiper-button-next, .featureSwiper .swiper-button-prev {
    color: black!important;
    background: white!important;
    width: 50px!important;
    height: 50px!important;
    border-radius: 50%!important;
    display: flex!important;
    align-items: center!important;
    justify-content: center!important;
    top: 40%!important;
    transform: translateY(-40%)!important;
    left: auto!important;
    right: -25px!important;
}

.featureSwiper .swiper-button-prev {
    top: 40%!important;
    transform: translateY(-40%)!important;
    right: auto!important;
    left: -25px!important;
}

.featureSwiper .swiper-button-next::after, .featureSwiper .swiper-button-prev::after {
    display: none;
}

.featureSwiper .swiper-button-disabled {
    display: none!important;
}

.featureSwiper .swiper-slide:not(.swiper-slide-active) .swiper-button-next,
.featureSwiper .swiper-slide:not(.swiper-slide-active) .swiper-button-prev {
    display: none!important;
}

.swiper-pagination-bullet-active {
    background: white;
}

/* Mobil reszponzivitás */
@media (max-width: 992px) {
    .card-content { flex-direction: column; }
    .card-image { width: 100%; height: 200px; }
    .card-text { width: 100%; padding: 30px; }
}

.faq-section {
    background-color: #263a48; /* Sötétkék háttér */
    padding: 100px 0;
    color: white;
}

.faq-container {
    flex-direction: column;
    max-width: 900px !important;
}

/* Új cím stílusa */
.faq-header-text {
    text-align: center;
    margin-bottom: 60px;
    max-width: 700px;
}

.faq-header-text h2 {
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 1.4;
}

.faq-accordion {
    width: 100%;
}

.faq-item {
    width: 100%;
    border: 1.5px solid white;
    border-radius: 50px; /* Erősen kerekített sarkok a kép alapján */
    margin-bottom: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-header {
    padding: 30px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-header h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0;
}

.faq-icon {
    font-size: 1.4rem;
    transform: rotate(45deg); /* Átlós nyíl alaphelyzetben */
    transition: transform 0.4s ease;
}

/* Nyitott állapot: világoskék háttér */
.faq-item.active {
    background-color: #00acee; 
    border-color: #00acee;
}

.faq-item.active .faq-icon {
    transform: rotate(225deg); /* Fordított nyíl nyitott állapotban */
}

.faq-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
}

.faq-content {
    padding: 0 50px 40px 50px;
}

.faq-content p {
    line-height: 1.6;
    margin-bottom: 15px;
    font-size: 0.95rem;
    opacity: 0.9;
}

@media (max-width: 560px) {
    .faq-header {
        padding: 20px 40px;
    }
}

.logo-slider {
    width: 100%;
    height: 160px;
    background: #263a48; /* Vagy fehér, ha ki akarod emelni */
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
}

.slider-track {
    display: flex;
    width: calc(250px * 12); /* Kép szélessége * képek száma (eredeti + másolt) */
    animation: scroll-logos 30s linear infinite;
    height: 100%;
}

.slide {
    width: 250px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide img {
    max-width: 100%;
    transition: 0.3s;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@keyframes scroll-logos {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-250px * 6)); } /* Csak az eredeti képek számával toljuk el */
}

/* Mobil optimalizálás */
@media (max-width: 768px) {
    .logo-slider { height: 120px; }
    .slide { width: 180px; }
    .slider-track { width: calc(180px * 12); }
    @keyframes scroll-logos {
        100% { transform: translateX(calc(-180px * 6)); }
    }
}

/* --- Galéria Aloldal Stílusok --- */

.gallery-page .section-title {
    margin-bottom: 20px;
}

.gallery-hero {
    padding: 150px 0 60px;
    text-align: center;
    background: linear-gradient(180deg, #263a48 0%, #00acee 100%);
}

.gallery-hero .container {
    align-items: flex-start;
}

.gallery-subtitle {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 40px;
    letter-spacing: 1px;
}

.gallery-grid-section {
    padding: 50px 0;
}

/* Masonry Elrendezés */
.masonry-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    grid-auto-rows: 240px;
    grid-gap: 15px;
    grid-auto-flow: dense;
}

.gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease, filter 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
    filter: brightness(1.1);
}

.gallery-item.tall { grid-row: span 2; }
.gallery-item.wide { grid-column: span 2; }

/* Modal (Képnagyító) Stílusa */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.9);
    backdrop-filter: blur(5px);
}

.modal-content {
    margin: auto;
    display: block;
    max-width: 85%;
    max-height: 80vh;
    position: relative;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 8px;
    box-shadow: 0 0 30px rgba(0,0,0,0.5);
}

.close-modal {
    position: absolute;
    top: 30px;
    right: 40px;
    color: white;
    font-size: 50px;
    font-weight: bold;
    cursor: pointer;
    z-index: 2100;
}

#caption {
    text-align: center;
    color: white;
    padding: 20px;
    position: absolute;
    bottom: 5%;
    width: 100%;
    font-size: 1.2rem;
    font-weight: 500;
}

.cta-section {
    padding: 100px 0;
    text-align: center;
    background-color: #00acee;
}

.cta-section .container {
    flex-direction: row;
}

.cta-section .cta-section-text {
    align-items: flex-start;
    text-align: left;
}

.cta-section h2 {
    font-size: 2.2rem;
    font-weight: 900;
    margin-bottom: 15px;
}

/* Mobil reszponzivitás */
@media (max-width: 768px) {
    .masonry-gallery {
        grid-template-columns: 1fr;
        grid-auto-rows: 250px;
    }
    .gallery-item.wide { grid-column: span 1; }
    .modal-content { max-width: 95%; }

    .cta-section .container {
        flex-direction: column;
    }

    .cta-section-text {
        margin-bottom: 30px;
        text-align: center!important;
    }
}

/* SweetAlert2 Custom Styling - Javított Teljes Szélesség */
.hethland-popup {
    border-radius: 20px !important;
    padding: 2rem !important;
    font-family: 'Montserrat', sans-serif !important;
    width: 500px !important; /* Kicsit szélesebb ablak az űrlapnak */
}

.hethland-title {
    color: #263a48 !important;
    font-weight: 800 !important;
    text-transform: uppercase;
    margin-bottom: 20px !important;
}

/* Az űrlap konténer és az inputok teljes szélessége */
.swal2-custom-form {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.swal2-input, .swal2-textarea {
    width: 100% !important; /* Teljes szélesség */
    box-sizing: border-box !important; /* Hogy a padding ne nyomja ki */
    margin: 10px 0 !important; /* Csak függőleges margó */
    border: 2px solid #f0f0f0 !important;
    border-radius: 10px !important;
    box-shadow: none !important;
    font-family: inherit;
    font-size: 1rem !important;
}

.swal2-input:focus, .swal2-textarea:focus {
    border-color: #00acee !important;
    outline: none !important;
}

.swal2-textarea {
    height: 120px !important;
    resize: none;
    padding: 15px !important;
}

.swal2-actions {
    width: 100% !important;
    justify-content: space-around !important;
    margin-top: 20px !important;
}

.swal2-styled.swal2-confirm {
    min-width: 150px;
    font-weight: 700 !important;
    padding: 12px 30px !important;
    border-radius: 50px !important;
    text-transform: uppercase;
    background-color: #00acee !important;
}

.swal2-styled.swal2-cancel {
    min-width: 150px;
    border-radius: 50px !important;
    background-color: #263a48 !important;
}

/* Mobil nézetben ne legyen túl széles */
@media (max-width: 480px) {
    .hethland-popup {
        width: 90% !important;
        padding: 1rem !important;
    }
}

/* --- Amenities Section Styles --- */
#amenities {
    padding: 0 0 50px 0;
    background-color: #263a48; /* Halvány szürke háttér, hogy elváljon a GYIK-tól */
    text-align: center;
}

#amenities .container {
    flex-direction: column;
}

#amenities .section-title {
    margin-bottom: 50px;
    color: #fff;
}

.amenities-grid {
    /* display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 30px;
    justify-content: center; */
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
}

.amenity-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    padding: 20px;
    transition: transform 0.3s ease;
}

.amenity-item i {
    font-size: 2.5rem;
    color: #00acee; /* A Swall-nál is használt világoskék */
    transition: color 0.3s ease;
}

.amenity-item span {
    font-weight: 600;
    color: #fff;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.amenity-item:hover {
    transform: translateY(-10px);
}

.amenity-item:hover i {
    color: #ffffff; /* Hover esetén sötétkékre vált */
}

/* Mobil nézet finomítása */
@media (max-width: 768px) {
    .amenities-grid {
        grid-template-columns: repeat(2, 1fr); /* Mobilon két oszlop */
    }
}

/* Gallery Styles */
.gallery-section {
    padding: 80px 0 50px 0;
    background-color: #263a48;
    text-align: center;
}

.gallery-flex {
    flex-direction: column;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 15px;
    width: 100%;
    margin-top: 0px;
}

.gallery-item {
    height: 220px;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item.hidden {
    display: none;
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    justify-content: center;
    align-items: center;
    cursor: zoom-out;
}

.lightbox-content {
    max-width: 90%;
    max-height: 85%;
    border-radius: 4px;
    animation: zoomIn 0.3s ease;
}

@keyframes zoomIn {
    from { transform: scale(0.8); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.close-lightbox {
    position: absolute;
    top: 20px;
    right: 30px;
    color: white;
    font-size: 40px;
    cursor: pointer;
}

.clickable-img {
    cursor: zoom-in;
}

/* =========================================================
   HETHLAND – SZÁLLÁS ALOLDAL (append a style.css végére)
   ========================================================= */

.subpage-lodging{
  background-color: #263a48;
}

.lodging-hero{
  padding: 140px 0 40px;
  background: radial-gradient(1000px 420px at 20% 10%, rgba(0,210,255,.35), transparent 60%),
              linear-gradient(180deg, #263a48 0%, #00acee 100%);
  position: relative;
  overflow: hidden;
}

.lodging-hero__wrap{
  align-items: stretch;
}

.lodging-hero__text{
  width: 56%;
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  gap: 14px;
  padding-right: 20px;
}

.lodging-hero__title{
  font-size: 2.4rem;
  font-weight: 900;
  line-height: 1.15;
  margin-top: 6px;
  text-shadow: 2px 2px 12px rgba(0,0,0,.35);
}

.lodging-hero__lead{
  font-size: 1.05rem;
  opacity: .95;
  line-height: 1.6;
  max-width: 680px;
}

.lodging-hero__cta{
  display:flex;
  gap: 14px;
  margin-top: 10px;
  flex-wrap: wrap;
}

.lodging-btn-primary{
  border-color:#fcb94a !important;
  background:#fcb94a !important;
  color:#fff !important;
}

.lodging-btn-ghost{
  display:flex;
  align-items:center;
  gap:10px;
  padding: 14px 18px;
  border-radius: 50px;
  border: 2px solid rgba(255,255,255,.75);
  color: #fff;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 12px;
  text-decoration:none;
  transition: all .25s;
  background: rgba(255,255,255,.08);
}

.lodging-btn-ghost:hover{
  background: rgba(38,58,72,.65);
  border-color: rgba(38,58,72,.4);
}

.lodging-badges{
  margin-top: 6px;
  display:flex;
  flex-wrap: wrap;
  gap:10px;
}

.lodging-badge{
  display:flex;
  align-items:center;
  gap:8px;
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(38,58,72,.35);
  border: 1px solid rgba(255,255,255,.18);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: .6px;
  text-transform: uppercase;
}

.lodging-badge i{ color:#fff; opacity:.95; }

.lodging-hero__media{
  width: 44%;
  position: relative;
  display:flex;
  justify-content:flex-end;
}

.lodging-hero__card{
  width: 100%;
  max-width: 520px;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0,0,0,.28);
  background: rgba(255,255,255,.96);
  color: #263a48;
}

.lodging-hero__img{
  height: 260px;
  background-size: cover;
  background-position: center;
}

.lodging-hero__cardText{
  padding: 18px 20px 20px;
}

.lodging-hero__cardTitle{
  font-weight: 900;
  font-size: 16px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #00acee;
}

.lodging-hero__cardDesc{
  margin-top: 8px;
  font-weight: 600;
  opacity: .9;
}

.lodging-hero__cardRow{
  margin-top: 12px;
  display:flex;
  gap:14px;
  flex-wrap: wrap;
  font-weight: 700;
  font-size: 12px;
  opacity: .9;
}

.ondebox--lodging-hero{
  position:absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  width: 100%;
}

.lodging-info{
  padding: 35px 0 10px;
  background:#263a48;
}

.lodging-info__grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  align-items: stretch;
}

.lodging-info__item{
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  border-radius: 18px;
  padding: 18px;
  display:flex;
  gap: 14px;
  align-items: center;
  box-shadow: 0 18px 35px rgba(0,0,0,.14);
}

.lodging-info__item .stat-icon img{
  width: 58px;
  height: auto;
  opacity: .95;
}

.lodging-info__title{
  font-weight: 900;
  letter-spacing: .7px;
  text-transform: uppercase;
  font-size: 13px;
}

.lodging-info__desc{
  opacity: .9;
  margin-top: 6px;
  line-height: 1.5;
  font-weight: 600;
  font-size: 14px;
}

.lodging-section-lead{
  max-width: 820px;
  margin: 0 auto 22px;
  text-align:center;
  opacity:.92;
  line-height: 1.65;
  font-weight: 600;
}

.lodging-roomFilters{
  display:flex;
  justify-content:center;
  gap: 10px;
  flex-wrap: wrap;
  margin: 18px 0 30px;
}

.lodging-pill{
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.24);
  background: rgba(255,255,255,.08);
  color:#fff;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 11px;
  cursor:pointer;
  transition: all .25s;
}

.lodging-pill:hover{
  background: rgba(0,172,238,.25);
  border-color: rgba(0,172,238,.6);
}

.lodging-pill.is-active{
  background: #00acee;
  border-color: #00acee;
}

.lodging-roomActions{
  margin-top: 18px;
}

.lodging-miniBtn{
  width: 100%;
  justify-content: center;
  gap: 10px;
}

.lodging-rooms__cta{
  margin-top: 34px;
  display:flex;
  justify-content:center;
}

.lodging-services{
  padding-top: 30px;
}

/* Mobil */
@media (max-width: 992px){
  .lodging-hero__wrap{ flex-direction: column; }
  .lodging-hero__text, .lodging-hero__media{ width:100%; }
  .lodging-hero__text{ padding-right:0; }
  .lodging-hero__title{ font-size: 2rem; }
  .lodging-hero__media{ margin-top: 20px; justify-content: center; }
  .lodging-info__grid{ grid-template-columns: 1fr; }
}

@media (max-width: 560px){
  .lodging-hero{ padding-top: 120px; }
  .lodging-hero__title{ font-size: 1.55rem; }
  .lodging-hero__lead{ font-size: .98rem; }
}

/* =========================================================
   SZOBÁINK – FIX LAYOUT (subpage)
   ========================================================= */
.rooms-section {
    padding: 50px 0;
}
/* A szobák szekcióban minden legyen egy oszlopban, középre rendezve */
.subpage-lodging .lodging-rooms__wrap{
  display:flex;
  flex-direction:column;
  align-items:center;
  width:100%;
}

/* Cím + leírás + filter középen, normális szélességgel */
.subpage-lodging .lodging-rooms__wrap .section-title{
  width:100%;
  text-align:center;
  margin-bottom: 14px;
}

.subpage-lodging .lodging-section-lead{
  width:100%;
  max-width: 860px;
  text-align:center;
  margin: 0 auto 18px;
}

/* Filter gombok */
.subpage-lodging .lodging-roomFilters{
  width:100%;
  display:flex;
  justify-content:center;
  gap:10px;
  flex-wrap:wrap;
  margin: 14px 0 26px;
}

/* A GRID kapja meg a teljes szélességet (ne szűküljön be) */
.subpage-lodging .room-grid{
  width:100%;
  max-width: 1200px;
  margin: 0 auto;
  display:grid;
  gap: 26px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

/* Kártya belső elrendezés + egységes magasság */
.subpage-lodging .room-card{
  height:100%;
  display:flex;
  flex-direction:column;
  border-radius: 22px;
  overflow:hidden;
  background: #00acee;
  box-shadow: 0 22px 50px rgba(0,0,0,.18);
}

.subpage-lodging .room-image{
  height: 220px;
    background-size: 100%;
}

.subpage-lodging .room-info{
  padding: 22px;
  display:flex;
  flex-direction:column;
  gap: 10px;
  flex: 1;
}

.subpage-lodging .room-info h3{
  margin: 0;
}

/* A feature lista NE oldalra legyen flexelve (ettől csúszik szét) */
.subpage-lodging .room-features{
  display:flex;
  flex-direction:column;
  gap: 8px;
  margin-top: 6px;
  color: #ffff;
  font-weight: 700;
}

.subpage-lodging .room-features li{
  display:flex;
  align-items:center;
  gap: 10px;
}

.subpage-lodging .room-features i{
  width: 18px;
  text-align:center;
}

/* Gomb mindig alul maradjon a kártyán */
.subpage-lodging .lodging-roomActions{
  margin-top:auto;
  padding-top: 10px;
}

.subpage-lodging .lodging-miniBtn{
  width:100%;
  justify-content:center;
}

/* Jobb oldali külön CTA (AJÁNLATOT KÉREK) ne lógjon be */
.subpage-lodging .lodging-rooms__cta{
  width:100%;
  display:flex;
  justify-content:center;
  margin-top: 28px;
}

/* Reszponzív: 3->2->1 oszlop */
@media (max-width: 1100px){
  .subpage-lodging .room-grid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 680px){
  .subpage-lodging .room-grid{
    grid-template-columns: 1fr;
  }
  .subpage-lodging .room-image{
    height: 200px;
  }
}

/* Modal slider (szoba részletek) */
.room-modal{
  text-align:left;
}

.room-modal-slider{
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 14px;
  box-shadow: 0 12px 25px rgba(0,0,0,.12);
}

.room-modal-img{
  width:100%;
  height: 320px;
  object-fit: cover;
  display:block;
}

.room-modal-desc{
  color:#263a48;
  font-weight:700;
  margin: 10px 0 12px;
  line-height:1.55;
}

.room-modal-list{
  list-style:none;
  padding:0;
  margin:0;
}

.room-modal-cta{
  margin-top:16px;
}

/* Swiper nyilak a SweetAlertben is szépen látszódjanak */
.roomModalPrev, .roomModalNext{
  color: #ffffff;
  text-shadow: 0 2px 12px rgba(0,0,0,.55);
}

.roomModalPrev:after, .roomModalNext:after{
  font-size: 18px;
  font-weight: 900;
}

.room-modal .swiper-pagination-bullet{
  opacity: .65;
}

.room-modal .swiper-pagination-bullet-active{
  opacity: 1;
}

@media (max-width: 520px){
  .room-modal-img{ height: 220px; }
}

/* =========================================================
   SZÓRAKOZÁSI LEHETŐSÉGEK – KÉPES KÁRTYÁK
   ========================================================= */

.lodging-activities{
  padding: 60px 0 20px;
  background: #263a48;
}

.lodging-activities .container {
    flex-direction: column;
}

.activities-grid--images{
  width:100%;
  max-width: 1200px;
  margin: 26px auto 0;
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

/* KÉPES KÁRTYA */
.activity-card-img{
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  min-height: 220px;
  background-size: cover;
  background-position: center;
  box-shadow: 0 22px 50px rgba(0,0,0,.22);
  border: 1px solid rgba(255,255,255,.14);
  transform: translateZ(0);
  transition: transform .22s ease, border-color .22s ease;
}

.activity-card-img:hover{
  transform: translateY(-4px);
  border-color: rgba(0,172,238,.6);
}

/* Sötét overlay a szöveg olvashatóságához */
.activity-overlay{
  position:absolute;
  inset:0;
  background:
    linear-gradient(180deg, rgba(0,0,0,.05) 0%, rgba(0,0,0,.55) 70%, rgba(0,0,0,.72) 100%);
}

/* Tartalom alul */
.activity-content{
  position:absolute;
  left: 16px;
  right: 16px;
  bottom: 14px;
  z-index: 2;
}

.activity-content .activity-title{
  color:#fff;
  font-weight: 900;
  letter-spacing: .8px;
  text-transform: uppercase;
  font-size: 13px;
  margin-bottom: 7px;
  text-shadow: 0 10px 25px rgba(0,0,0,.55);
}

.activity-content .activity-desc{
  color: rgba(255,255,255,.92);
  line-height: 1.55;
  font-weight: 600;
  font-size: 14px;
  text-shadow: 0 10px 25px rgba(0,0,0,.55);
}

/* Reszponzív */
@media (max-width: 1100px){
  .activities-grid--images{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 680px){
  .activities-grid--images{
    grid-template-columns: 1fr;
  }
  .activity-card-img{
    min-height: 210px;
  }
}

/* =========================================================
   HELYBEN ÉTKEZÉS – KÉPES GASZTRO SZEKCIÓ
   ========================================================= */

.lodging-dining{
  padding: 70px 0 30px;
  background: linear-gradient(180deg, #263a48 0%, #1f2f3a 100%);
}

.lodging-dining .container {
    flex-direction: column;
}

.dining-grid{
  max-width: 1200px;
  margin: 30px auto 0;
  display:grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 26px;
}

.dining-block{
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 20px;
  padding: 20px;
  box-shadow: 0 22px 45px rgba(0,0,0,.18);
}

.dining-block--highlight{
  background: rgba(0,172,238,.08);
  border-color: rgba(0,172,238,.35);
}

.dining-subtitle{
  font-weight: 900;
  letter-spacing: .8px;
  text-transform: uppercase;
  font-size: 14px;
  margin-bottom: 14px;
}

/* NAPI MENÜ GALÉRIA */
.dining-gallery{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 14px;
}

.dining-img{
  border-radius: 14px;
  background-size: cover;
  background-position: center;
  height: 140px;
  box-shadow: 0 16px 30px rgba(0,0,0,.25);
  transition: transform .2s ease;
}

.dining-img:hover{
  transform: scale(1.03);
}

/* A LA CARTE KÉP */
.dining-img--large{
  height: 260px;
  margin-bottom: 14px;
}

.dining-desc{
  font-weight: 600;
  line-height: 1.6;
  opacity: .92;
}

/* CTA */
.dining-cta{
  margin-top: 30px;
  display:flex;
  justify-content:center;
}

/* Reszponzív */
@media (max-width: 1000px){
  .dining-grid{
    grid-template-columns: 1fr;
  }

  .dining-img--large{
    height: 220px;
  }
}

@media (max-width: 600px){
  .dining-gallery{
    grid-template-columns: 1fr 1fr;
  }
}

/* =========================================================
   KÉPEK AZ ÜDÜLŐRŐL – KÉPES GRID SECTION
   ========================================================= */

.lodging-resort-gallery{
  padding: 60px 0 20px;
  background: #263a48;
}

.lodging-resort-gallery .container{
  flex-direction: column;
}

.resort-gallery-grid{
  width:100%;
  max-width: 1200px;
  margin: 26px auto 0;
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 18px;
}

.resort-gallery-card{
  position: relative;
  min-height: 240px;
  border-radius: 18px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  box-shadow: 0 22px 50px rgba(0,0,0,.22);
  border: 1px solid rgba(255,255,255,.5);
  transition: transform .25s ease, border-color .25s ease;
}

.resort-gallery-card:hover{
  transform: translateY(-4px);
  border-color: rgba(0,172,238,.6);
}

.resort-gallery-overlay{
  position:absolute;
  inset:0;
  background: linear-gradient(
    180deg,
    rgba(0,0,0,.05) 0%,
    rgba(0,0,0,.55) 70%,
    rgba(0,0,0,.75) 100%
  );
}

.resort-gallery-caption{
  position:absolute;
  left:16px;
  right:16px;
  bottom:14px;
  z-index:2;
  font-weight: 900;
  font-size: 13px;
  letter-spacing: .8px;
  text-transform: uppercase;
  color:#fff;
  text-shadow: 0 10px 25px rgba(0,0,0,.55);
}

/* Reszponzív */
@media (max-width: 1100px){
  .resort-gallery-grid{
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 680px){
  .resort-gallery-grid{
    grid-template-columns: 1fr;
  }
  .resort-gallery-card{
    min-height: 210px;
  }
}

/* Resort gallery – lightbox */
.resort-lightbox{
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.88);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.resort-lightbox img{
  max-width: 92vw;
  max-height: 88vh;
  border-radius: 14px;
  box-shadow: 0 30px 80px rgba(0,0,0,.55);
  margin: auto;
}

.resort-lightbox-close{
  position: absolute;
  top: 22px;
  right: 28px;
  font-size: 42px;
  color: #fff;
  cursor: pointer;
  opacity: .9;
}

.resort-gallery-card{
  cursor: zoom-in;
}

