* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #f4f7f6;
    color: #2d3748;
    overflow-x: hidden;
}

.highlight {
    color: #ff823a;
}

/* 7 KÉPES DINAMIKUS DIAVETÍTÉS */
.hero {
    position: relative;
    height: 80vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    z-index: 1;
    transform: scale(1);
    animation: imageFadeScale 28s linear infinite; 
}

.slide-1 { animation-delay: 0s; }
.slide-2 { animation-delay: 4s; }
.slide-3 { animation-delay: 8s; }
.slide-4 { animation-delay: 12s; }
.slide-5 { animation-delay: 16s; }
.slide-6 { animation-delay: 20s; }
.slide-7 { animation-delay: 24s; }

@keyframes imageFadeScale {
    0% { opacity: 0; transform: scale(1); }
    3% { opacity: 1; }
    14% { opacity: 1; }
    17% { opacity: 0; transform: scale(1.06); }
    100% { opacity: 0; }
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(135deg, rgba(30, 60, 114, 0.75) 0%, rgba(42, 82, 152, 0.75) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    padding: 0 20px;
}

.hero h1 {
    font-family: 'Comfortaa', cursive;
    font-size: 4rem;
    margin-bottom: 20px;
    text-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.hero p {
    font-size: 1.3rem;
    max-width: 650px;
    margin: 0 auto 40px;
    text-shadow: 0 2px 5px rgba(0,0,0,0.3);
}

/* MOZGÓ TICKER */
.ticker-wrap {
    width: 100%; overflow: hidden; background: #bc84ee; box-shadow: 0 4px 10px rgba(0,0,0,0.1); white-space: nowrap; padding: 15px 0;
}
.ticker {
    display: inline-block; animation: marquee 25s linear infinite;
}
.ticker-item {
    display: inline-block; padding: 0 2rem; font-size: 1.1rem; color: white; font-weight: 600;
}
.ticker-item i { color: #dcfd8b; margin-right: 5px; }
@keyframes marquee {
    0% { transform: translate3d(0, 0, 0); }
    100% { transform: translate3d(-50%, 0, 0); }
}

/* VISUAL INTRO & LEBEGŐ KÉP */
.visual-intro { max-width: 1140px; margin: 80px auto; padding: 0 20px; }
.intro-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
@media (max-width: 768px) { .intro-grid { grid-template-columns: 1fr; } }
.floating-img { width: 100%; border-radius: 24px; box-shadow: 0 20px 40px rgba(0,0,0,0.15); animation: float 6s ease-in-out infinite; }
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}
.intro-text h2 { font-family: 'Comfortaa', cursive; font-size: 2.5rem; margin-bottom: 20px; }
.intro-text p { font-size: 1.1rem; line-height: 1.7; color: #4a5568; margin-bottom: 30px; }
.stats-counter { display: flex; gap: 20px; }
.stat-box { background: white; padding: 15px 25px; border-radius: 15px; box-shadow: 0 5px 15px rgba(0,0,0,0.05); text-align: center; flex: 1; }
.stat-box strong { display: block; font-size: 1.8rem; color: #ff823a; }
.stat-box span { font-size: 0.9rem; color: #718096; }

/* PULSATING BUTTONS */
.btn-primary {
    display: inline-block; background-color: #ff823a; color: white; padding: 18px 45px; font-size: 1.2rem; font-weight: bold; text-decoration: none; border-radius: 50px; box-shadow: 0 10px 25px rgba(255, 130, 58, 0.4); transition: transform 0.2s;
}
.pulse { animation: pulse 2s infinite; }
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* INTERAKTÍV JELLEMZŐ KÁRTYÁK */
.features { display: flex; justify-content: center; gap: 30px; flex-wrap: wrap; padding: 40px 20px; background: #eef2f5; }
.card { background: white; padding: 30px; border-radius: 20px; width: 340px; text-align: center; box-shadow: 0 10px 30px rgba(0,0,0,0.03); cursor: pointer; transition: all 0.3s ease; }
.card:hover { transform: translateY(-10px); box-shadow: 0 15px 40px rgba(0,0,0,0.1); }
.card .icon { font-size: 3rem; color: #ff823a; margin-bottom: 15px; }
.click-more { font-size: 0.8rem; color: #94a3b8; display: block; margin-top: 5px; }
.extra-info { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; color: #64748b; font-style: italic; }
.card.active .extra-info { max-height: 100px; margin-top: 15px; border-top: 1px solid #f1f5f9; padding-top: 10px; }

/* FORMOK */
.booking-form { margin-top: 30px; }
.form-group { margin-bottom: 20px; }
.booking-form input { width: 100%; padding: 15px; border: 2px solid #e2e8f0; border-radius: 12px; font-size: 1rem; outline: none; transition: border-color 0.2s; }
.booking-form input:focus { border-color: #ff823a; }
.btn-submit { width: 100%; background-color: #2a5298; color: white; padding: 15px; border: none; border-radius: 12px; font-size: 1.2rem; font-weight: bold; cursor: pointer; transition: background 0.2s; }
.btn-submit:hover { background-color: #1e3c72; }