body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #f0f7ff 0%, #e4efff 50%, #f5f9ff 100%);
    background-attachment: fixed;
    color: #333333;
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
}

header {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(27, 172, 216, 0.15);
    width: 100%;
}

.nav-container {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 15px 30px;
    box-sizing: border-box;
}

.logo {
    font-weight: 800;
    font-size: 22px;
    color: #1bacd8;
    letter-spacing: -0.5px;
    text-decoration: none;
    justify-self: start;
}

nav {
    display: flex;
    justify-content: center;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
    margin: 0;
    padding: 0;
}

nav ul li a {
    text-decoration: none;
    color: #555;
    font-weight: 600;
    font-size: 15px;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: #1bacd8;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-self: end;
}

.nav-spacer {
    flex: 1;
}

.section {
    max-width: 850px;
    margin: 50px auto;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(5px);
    padding: 45px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(27, 172, 216, 0.08);
    border: 1px solid rgba(255, 255, 255, 1);
}

h2 {
    color: #1bacd8;
    text-align: center;
    margin-bottom: 30px;
    font-size: 28px;
    font-weight: 700;
}

.about-content {
    line-height: 1.8;
    font-size: 16px;
    color: #555;
    text-align: center;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.service-card {
    background: #ffffff;
    border: 2px solid #e4efff;
    border-radius: 16px;
    padding: 30px 20px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.02);
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(27, 172, 216, 0.15);
    border-color: #1bacd8;
}

.service-card h3 {
    color: #1bacd8;
    margin-bottom: 12px;
    font-size: 20px;
}

.service-card .price {
    font-size: 22px;
    font-weight: 700;
    color: #1bacd8;
    margin-bottom: 12px;
}

.service-card p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.gallery-item {
    height: 240px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
    position: relative;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.lightbox {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.88);
    backdrop-filter: blur(5px);
    justify-content: center;
    align-items: center;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90%;
    border-radius: 14px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.6);
    object-fit: contain;
}

.close-btn {
    position: absolute;
    top: 30px;
    right: 45px;
    color: #ffffff;
    font-size: 45px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s;
}

.close-btn:hover {
    color: #1bacd8;
}

.slider-section {
    width: 100%;
    margin: 60px 0;
    position: relative;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 380px;
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    pointer-events: none;
}

.slide.active {
    opacity: 1;
    pointer-events: auto;
}

.slide::before {
    content: '';
    position: absolute;
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100%;
    background: rgba(0, 0, 0, 0.45);
}

.slide-content {
    position: relative;
    z-index: 2;
    color: white;
    padding: 25px;
    max-width: 800px;
}

.slide-content h3 {
    font-size: 34px;
    margin-bottom: 15px;
    color: #70d6ff;
    text-shadow: 0 2px 8px rgba(0,0,0,0.7);
}

.slide-content p {
    font-size: 18px;
    line-height: 1.6;
    text-shadow: 0 1px 5px rgba(0,0,0,0.7);
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: transparent !important;       /* Nincs háttér */
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    color: rgba(255, 255, 255, 0.356);          /* Áttetsző kék nyíl (a 0.6-ot állíthatod ha sötétebb vagy világosabb kell) */
    border: none !important;
    width: auto;
    height: auto;
    border-radius: 0;
    font-size: 30px;                          /* Jól látható méret */
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: none !important;
}

.slider-btn:hover {
    background: transparent !important;
    color: rgba(27, 172, 216, 1);            /* Ha ráviszed az egeret, lesz teljesen élénk kék és picit nagyobb */
    transform: translateY(-50%) scale(1.2);
    box-shadow: none !important;
}

.prev-btn { left: 10px; }
.next-btn { right: 10px; }

#foglalas {
    background: transparent !important;
    box-shadow: none !important;
    border: none !important;
    padding: 0 !important;
    margin: 50px auto;
}

.booking-container {
    background: transparent;
    padding: 45px;
    border-radius: 20px;
    max-width: 500px;
    margin: 0 auto;
    box-shadow: 0 15px 35px rgba(27, 109, 216, 0.377);
    border: 1px solid rgba(27, 109, 216, 0.295);
}

.booking-container h2 {
    color: #1390e4;
    text-align: center;
    margin-bottom: 30px;
    font-size: 26px;
    font-weight: 700;
}

.form-group {
    margin-bottom: 22px;
}

label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #4a4a4a;
    font-size: 14px;
}

input[type="text"],
input[type="email"],
input[type="date"],
select {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #e4ecfc;
    border-radius: 12px;
    box-sizing: border-box;
    font-size: 15px;
    background-color: #fafaff;
    color: #333;
    transition: all 0.3s ease;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="date"]:focus,
select:focus {
    border-color: #1bacd8;
    background-color: #ffffff;
    outline: none;
    box-shadow: 0 0 0 4px rgba(27, 172, 216, 0.15);
}

button {
    background: linear-gradient(135deg, #1bacd8, #1bacd8);
    color: white;
    border: none;
    padding: 16px;
    width: 100%;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.3s;
    box-shadow: 0 6px 10px rgba(27, 172, 216, 0.35);
    margin-top: 10px;
}

button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(27, 172, 216, 0.45);
}

button:active {
    transform: translateY(0);
}

select option {
    padding: 10px;
}

select option:disabled {
    color: #b0b0b0 !important;
    background-color: #f1f3f5;
}

footer {
    text-align: center;
    padding: 40px 20px;
    background-color: #1a1a1a;
    color: white;
    margin-top: 80px;
}

footer h3 {
    color: #70d6ff;
    margin-bottom: 12px;
    font-size: 20px;
}

footer p {
    color: #ccc;
    line-height: 1.6;
}

/* Felugró ablak háttér */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    padding: 20px;
    box-sizing: border-box;
}

/* Modál kártya */
.modal-box {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    padding: 35px;
    border-radius: 20px;
    max-width: 450px;
    width: 100%;
    box-shadow: 0 20px 40px rgba(27, 172, 216, 0.2);
    border: 1px solid rgba(27, 172, 216, 0.3);
}

.modal-box h3 {
    color: #1bacd8;
    margin-top: 0;
    font-size: 24px;
    text-align: center;
    margin-bottom: 20px;
}

.modal-details {
    background: #f0f7ff;
    padding: 15px 20px;
    border-radius: 12px;
    margin-bottom: 20px;
    font-size: 15px;
    color: #444;
    line-height: 1.6;
}

.modal-details p {
    margin: 6px 0;
}

.modal-info-box {
    background: rgba(27, 172, 216, 0.08);
    border-left: 4px solid #1bacd8;
    padding: 12px 15px;
    border-radius: 8px;
    font-size: 13px;
    color: #555;
    margin-bottom: 25px;
    line-height: 1.5;
}

.modal-buttons {
    display: flex;
    gap: 12px;
}

.btn-bezár {
    background: #1bacd8;
    color: white;
    border: none;
    padding: 12px;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    flex: 1;
    text-align: center;
    text-decoration: none;
    font-size: 15px;
}

.btn-lemondás {
    background: rgba(255, 77, 77, 0.15);
    color: #ff4d4d;
    border: 1px solid rgba(255, 77, 77, 0.3);
    padding: 12px;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    flex: 1;
    transition: all 0.2s;
    font-size: 15px;
    width: 100%;
}

.btn-lemondás:hover {
    background: #ff4d4d;
    color: white;
}

html, body {
    max-width: 100%;
    overflow-x: hidden;
}

/* 2. Reszponzív táblázatok kezelése (pl. admin felület) */
.table-responsive {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin-top: 20px;
    border-radius: 14px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    background: white;
}

/* 3. Mobil és kisebb tablet nézet (900px alatt) */
@media (max-width: 900px) {
    /* Navigáció átalakítása mobilon */
    .nav-container {
        grid-template-columns: 1fr auto;
        padding: 12px 20px;
    }

    nav ul {
        gap: 15px;
    }

    nav ul li a {
        font-size: 14px;
    }

    /* Fő szekciók belső margójának csökkentése mobilon */
    .section {
        padding: 25px 20px;
        margin: 30px 15px;
    }

    /* Slider gombok beljebb húzása, hogy ne lógjanak le */
    .prev-btn { left: 15px; }
    .next-btn { right: 15px; }

    .slide-content h3 {
        font-size: 24px;
    }

    .slide-content p {
        font-size: 15px;
    }
}

/* 4. Extra kis telefonok (600px alatt) */
@media (max-width: 600px) {
    /* Fejléc és menü egymás alá rendezése vagy tömörítése */
    .nav-container {
        display: flex;
        flex-direction: column;
        gap: 12px;
        padding: 12px 15px;
        text-align: center;
    }

    nav ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 12px;
    }

    .logo {
        justify-self: center;
    }

    /* Foglalási doboz és modálok teljes szélességűvé tétele margóval */
    .booking-container {
        padding: 20px 15px;
        margin: 0 10px;
        box-shadow: none;
        border: none;
    }

    .modal-box {
        padding: 20px 15px;
        margin: 10px;
    }

    /* Gombok átalakítása teljes szélességűre mobilon a könnyebb kattintásért */
    .modal-buttons {
        flex-direction: column;
        gap: 10px;
    }

    .btn-bezár, .btn-lemondás {
        width: 100%;
    }

    /* Admin header gombok egymás alá rendezése */
}

/* Erősen homályosító (blur) háttér */
.cookie-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(15, 23, 42, 0.6); /* Sötétített, elegáns háttér */
    backdrop-filter: blur(16px); /* Ez adja a durva, modern blur hatást a mögötte lévő oldalnak */
    -webkit-backdrop-filter: blur(16px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 999999;
    padding: 20px;
    box-sizing: border-box;
}

/* Kiemelt Süti Doboz középen */
.cookie-modal-box {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 24px;
    max-width: 480px;
    width: 100%;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(27, 172, 216, 0.2);
    text-align: center;
    animation: modalPopUp 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes modalPopUp {
    0% {
        transform: scale(0.85);
        opacity: 0;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.cookie-icon-big {
    font-size: 48px;
    margin-bottom: 15px;
}

.cookie-modal-box h3 {
    color: #1bacd8;
    margin-top: 0;
    font-size: 24px;
    margin-bottom: 15px;
    font-weight: 700;
}

.cookie-modal-text {
    font-size: 15px;
    color: #4b5563;
    line-height: 1.6;
    margin-bottom: 30px;
    text-align: center;
}

.cookie-modal-text p {
    margin: 10px 0;
}

.btn-cookie-accept {
    background: #1bacd8;
    color: white;
    border: none;
    padding: 14px 28px;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(27, 172, 216, 0.4);
}

.btn-cookie-accept:hover {
    background: #1390e4;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(27, 172, 216, 0.6);
}

/* FAQ RÉÉÉSZ */
/* FAQ Szekció stílusa */
.faq-container {
    max-width: 600px;
    margin: 20px auto 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-card {
    background: #ffffff;
    border: 2px solid #e4ecfc;
    /* Ez adja a bal oldali vastag, kiemelt kék sávot (pont mint a képen) */
    border-left: 6px solid #1bacd8 !important; 
    padding: 18px 25px;
    border-radius: 14px;
    text-decoration: none;
    color: #333;
    font-size: 16px;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(27, 172, 216, 0.04);
    position: relative;
    overflow: hidden; /* Biztosítja, hogy a keret szépen illeszkedjen a lekerekítéshez */
}

.faq-card:hover {
    border-color: #baeefd;
    background: #fafaff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(27, 172, 216, 0.1);
    color: #baeefd;
}

.faq-arrow {
    font-size: 18px;
    color: #1bacd8;
    transition: transform 0.3s ease;
}

.faq-card:hover .faq-arrow {
    transform: translateX(4px);
}