:root {
    --bg-color: #05070a;
    --card-bg: rgba(20, 20, 25, 0.7);
    --aqua-neon: #00e0ff;
    --text-main: #ffffff;
    --text-dim: #a0a0a0;
    --glass-border: rgba(255, 255, 255, 0.08);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body { 
    font-family: 'Inter', sans-serif; 
    background-color: var(--bg-color);
    background-image: radial-gradient(circle at 50% -20%, #102a33 0%, var(--bg-color) 80%);
    color: var(--text-main);
    line-height: 1.5;
    overflow-x: hidden;
}

/* HEADER */
.header { 
    background: rgba(5, 7, 10, 0.8); backdrop-filter: blur(15px); 
    display: flex; justify-content: space-between; align-items: center; 
    height: 85px; 
    padding: 0 10%; position: fixed; 
    top: 0; width: 100%; z-index: 1000; border-bottom: 1px solid var(--glass-border);
}
.logo-container img { 
    height: 75px; 
    filter: drop-shadow(0 0 5px var(--aqua-neon)); 
}
.menu { display: flex; list-style: none; gap: 30px; }
.menu a { text-decoration: none; color: var(--text-dim); font-size: 0.9rem; transition: 0.3s; }
.menu a:hover, .menu a.active { color: var(--aqua-neon); }

/* REVEAL ANIMÁCIÓ */
.reveal { 
    opacity: 0; 
    transform: translateY(50px) scale(0.98); 
    transition: opacity 0.8s ease-out, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    visibility: hidden;
}
.reveal.active { 
    opacity: 1; 
    transform: translateY(0) scale(1); 
    visibility: visible;
}

section { padding: 100px 10%; }

.section-title { 
    text-align: center; 
    width: 100%; 
    font-size: clamp(2.2rem, 5vw, 3rem); 
    font-weight: 700; 
    margin-bottom: 25px; 
    display: block; 
    color: var(--aqua-neon); 
}
.section-title span { color: #ffffff; }

/* HERO */
.hero { text-align: center; padding-top: 180px !important; display: flex; flex-direction: column; align-items: center; }
.sub-highlight { color: var(--text-dim); font-size: 1.1rem; margin-bottom: 60px; max-width: 700px; }

/* USP KÁRTYÁK */
.usp-container { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 20px; width: 100%; max-width: 1200px; }
.usp-item { 
    background: rgba(255, 255, 255, 0.02); border: 1px solid var(--glass-border);
    padding: 25px; border-radius: 20px; display: flex; align-items: flex-start; gap: 15px; transition: 0.4s ease;
}
.usp-item:hover { background: rgba(0, 224, 255, 0.05); border-color: rgba(0, 224, 255, 0.3); transform: translateY(-5px); }
.usp-icon { font-size: 1.8rem; background: rgba(0, 224, 255, 0.1); width: 55px; height: 55px; display: flex; align-items: center; justify-content: center; border-radius: 12px; flex-shrink: 0; }
.usp-text h3 { font-size: 1rem; color: var(--aqua-neon); margin-bottom: 5px; font-weight: 600; }
.usp-text p { font-size: 0.85rem; color: var(--text-dim); line-height: 1.4; }

/* CSOMAGOK */
.category-title { color: var(--aqua-neon); margin: 60px 0 30px; font-size: 1.1rem; text-transform: uppercase; letter-spacing: 2px; text-align: center; }
.cards-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(310px, 1fr)); gap: 25px; max-width: 1200px; margin: 0 auto; }
.card { 
    background: var(--card-bg); border: 1px solid var(--glass-border); border-radius: 16px; padding: 30px; transition: 0.4s;
    backdrop-filter: blur(10px); display: flex; flex-direction: column; height: 100%;
}
.card:hover { border-color: var(--aqua-neon); transform: translateY(-5px); box-shadow: 0 10px 30px rgba(0, 224, 255, 0.1); }
.popular-card { border: 1px solid rgba(0, 224, 255, 0.4); background: rgba(0, 224, 255, 0.05); }

.description-list { list-style: none; margin-bottom: 25px; flex-grow: 1; text-align: left; }
.description-list li { font-size: 0.88rem; color: var(--text-dim); margin-bottom: 6px; padding-left: 18px; position: relative; line-height: 1.4; }
.description-list li::before { content: "•"; position: absolute; left: 0; color: var(--aqua-neon); font-weight: bold; }
.description-list .list-title { color: #fff; font-weight: 600; margin-top: 12px; padding-left: 0; margin-bottom: 8px; font-size: 0.95rem; }
.description-list .list-title::before { content: none; }
.description-list .sima-szoveg { padding-left: 0; color: #ccc; margin-bottom: 10px; }
.description-list .sima-szoveg::before { content: none; }

.meret-sor { display: flex; align-items: center; justify-content: space-between; padding: 12px 0; border-top: 1px solid var(--glass-border); }
.meret-sor span:nth-child(2) { color: var(--aqua-neon); font-weight: 600; margin-left: auto; margin-right: 15px; font-size: 1.05rem; }

button { background: var(--aqua-neon); border: none; color: #000; padding: 10px 18px; border-radius: 8px; font-weight: 600; cursor: pointer; transition: 0.3s; font-size: 0.9rem; }
button:hover { filter: brightness(1.1); transform: scale(1.05); }

/* GALÉRIA */
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 20px; max-width: 1200px; margin: 0 auto; }
.gallery-item { border-radius: 12px; overflow: hidden; height: 240px; border: 1px solid var(--glass-border); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: 0.5s; display: block; }
.gallery-item:hover img { transform: scale(1.1); }

/* KAPCSOLAT */
.contact-wrapper { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 30px; max-width: 1200px; margin: 40px auto 0; }
.contact-card { background: rgba(255, 255, 255, 0.02); border: 1px solid var(--glass-border); border-radius: 20px; padding: 30px; display: flex; flex-direction: column; text-align: left; transition: 0.4s ease; position: relative; overflow: hidden; }
.contact-card:hover { background: rgba(0, 224, 255, 0.05); border-color: rgba(0, 224, 255, 0.3); transform: translateY(-5px); }
.map-box { padding: 0; min-height: 400px; }
.map-box iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: none; display: block; }

.contact-details { font-size: 1rem; color: #ffffff; }
.contact-details h3 { font-size: 1rem; color: var(--aqua-neon); margin-bottom: 20px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; }
.contact-info { display: flex; flex-direction: column; gap: 12px; margin-bottom: 20px; }
.info-row { display: flex; align-items: center; gap: 10px; }
.info-row .emoji { font-size: 1.2rem; }
.info-row .info-text { font-size: 1rem; color: #ffffff; }
.info-row .info-text a { color: #ffffff; text-decoration: none; transition: 0.3s; }
.info-row .info-text a:hover { color: var(--aqua-neon); }

.opening-hours { margin: 15px 0; background: rgba(255,255,255,0.03); padding: 20px; border-radius: 12px; border: 1px solid var(--glass-border); }
.opening-hours h4 { font-size: 1rem; text-transform: uppercase; color: var(--aqua-neon); margin-bottom: 12px; letter-spacing: 1px; font-weight: 700; }
.status-row { display: flex; justify-content: space-between; font-size: 1rem; margin-bottom: 8px; }
.closed { color: #ff4b4b; font-weight: 600; }

.legal-buttons { margin-top: auto; font-size: 1rem; color: #a0a0a0; padding-top: 20px; }
.legal-buttons span { cursor: pointer; margin-right: 15px; text-decoration: underline; transition: 0.3s; }
.legal-buttons span:hover { color: var(--aqua-neon); }

/* MODAL MODELLING */
.modal { display: none; position: fixed; inset: 0; background: rgba(0, 0, 0, 0.9); z-index: 9999; align-items: center; justify-content: center; backdrop-filter: blur(8px); padding: 20px; }
.modal-content { width: 100%; max-width: 1000px; height: 90vh; background: #fff; border-radius: 16px; position: relative; overflow: hidden; display: flex; flex-direction: column; }
.iframe-container { width: 100%; flex-grow: 1; height: 100%; }
#booking-iframe { width: 100%; height: 100%; border: none; display: block; }
.close-btn { position: absolute; right: 20px; top: 15px; font-size: 36px; color: #333; cursor: pointer; z-index: 10001; font-weight: bold; }

/* SZÖVEGES MODÁL STÍLUSA (GDPR & ÁSZF) */
.text-modal-content {
    background: #0d1117 !important;
    color: #ffffff !important;
    border: 1px solid var(--aqua-neon);
    max-width: 750px !important;
    height: auto !important;
    max-height: 85vh;
    padding: 35px;
    overflow-y: auto;
}
.text-modal-content .close-btn { color: var(--aqua-neon) !important; }
.legal-content h2 { color: var(--aqua-neon); margin-bottom: 20px; border-bottom: 1px solid var(--glass-border); padding-bottom: 10px; }
.legal-content h3 { color: var(--aqua-neon); margin-top: 25px; margin-bottom: 10px; font-size: 1.1rem; }
.legal-content p { margin-bottom: 15px; font-size: 0.95rem; line-height: 1.6; }
.legal-content table { width: 100%; border-collapse: collapse; margin: 15px 0; background: rgba(255,255,255,0.03); }
.legal-content th, .legal-content td { border: 1px solid var(--glass-border); padding: 10px; text-align: left; font-size: 0.9rem; }
.legal-content th { background: rgba(0, 224, 255, 0.1); color: var(--aqua-neon); }
.legal-content ul { margin-left: 20px; margin-bottom: 15px; }
.legal-content li { margin-bottom: 8px; font-size: 0.95rem; }

.footer { text-align: center; padding: 50px; color: #444; font-size: 0.85rem; border-top: 1px solid var(--glass-border); }

@media (max-width: 850px) {
    .contact-wrapper { grid-template-columns: 1fr; }
    .map-box { min-height: 350px; }
    section { padding: 60px 5%; }
}