/* =======================================================
   VADÁSA STRAND - MODERNIZÁLT STÍLUSLAP (2026)
   Minden egy helyen: Kártyák, Ikonok, Nyitvatartás
   ======================================================= */

:root {
    --primary: #28c3ab;
    --primary-dark: #1eb09a;
    --dark: #222;
    --light-gray: #f9f9f9;
    --white: #ffffff;
    --shadow: 0 15px 35px rgba(0,0,0,0.1);
    --transition: all 0.3s ease;
}

/* ALAPOK */
* { 
    margin: 0; 
    padding: 0; 
    box-sizing: border-box; 
}

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: #444;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

h1, h2, h3 { 
    font-family: 'Montserrat', sans-serif; 
    text-transform: uppercase; 
    letter-spacing: 1px; 
}

.container { 
    max-width: 1200px; 
    margin: 0 auto; 
    padding: 0 20px; 
}

.section { 
    padding: 100px 0; 
}

.bg-light { 
    background-color: var(--light-gray); 
}

.text-center { 
    text-align: center; 
}

/* DÍSZÍTŐ ELEM */
.divider {
    width: 60px;
    height: 3px;
    background: var(--primary);
    margin: 20px auto 40px;
}

/* NAVIGÁCIÓ */
.navbar {
    background: var(--white);
    height: 80px;
    display: flex;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
}

.nav-container { 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    width: 100%; 
}

.logo { 
    font-size: 1.6rem; 
    font-weight: 900; 
    text-decoration: none; 
    color: var(--dark); 
}

.logo span { 
    color: var(--primary); 
}

.logo-wrapper {
    display: flex;
    align-items: center;
    text-decoration: none;
    gap: 12px; /* Távolság a kép és a szöveg között */
}

.nav-logo {
    height: 50px; /* Vagy amekkora a logód arányaiban */
    width: auto;
    transition: var(--transition);
}

.logo-text {
    font-size: 1.4rem;
    font-weight: 900;
    color: var(--dark);
    font-family: 'Montserrat', sans-serif;
}

.logo-text span {
    color: var(--primary);
}

/* Hover effekt: a logó kicsit megmozdul, ha ráviszik az egeret */
.logo-wrapper:hover .nav-logo {
    transform: scale(1.05);
}

.nav-links { 
    display: flex; 
    list-style: none; 
}

.nav-links li a {
    text-decoration: none;
    color: var(--dark);
    margin-left: 30px;
    font-weight: 700;
    font-size: 0.85rem;
    transition: var(--transition);
}

.nav-links li a:hover { 
    color: var(--primary); 
}
/* HERO SZEKCIÓ VIDEÓVAL */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden; 
    color: var(--white); /* Itt használhatod a változót is */
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: 1;
    transform: translate(-50%, -50%);
    object-fit: cover; 
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4); 
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3; 
    text-align: center;
}

/* EXTRA SOCIAL ICONS */
.hero-social {
    margin-bottom: 40px;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.hero-social a {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--white);
    font-size: 2rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-decoration: none;
}

.hero-social a.social-fb:hover {
    background: #1877F2;
    border-color: #1877F2;
    transform: translateY(-8px) rotate(5deg);
    box-shadow: 0 10px 20px rgba(24, 119, 242, 0.4);
}

.hero-social a.social-insta:hover {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
    border-color: transparent;
    transform: translateY(-8px) rotate(-5deg);
    box-shadow: 0 10px 20px rgba(214, 36, 159, 0.4);
}

/* GOMBOK */
.btn {
    display: inline-block;
    padding: 14px 35px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.btn-primary { 
    background: var(--primary); 
    color: var(--white); 
    box-shadow: 0 4px 15px rgba(40, 195, 171, 0.3); 
}

.btn-primary:hover { 
    background: var(--primary-dark); 
    transform: translateY(-3px); 
}

.btn-outline { 
    border: 2px solid var(--primary); 
    color: var(--primary); 
}

.btn-outline:hover { 
    background: var(--primary); 
    color: var(--white); 
}

/* JEGYÁR KÁRTYÁK */
.price-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); 
    gap: 30px; 
}

.price-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid var(--primary);
    transition: var(--transition);
    
    /* Ezeket add hozzá: */
    display: flex;
    flex-direction: column; /* Egymás alá rakja az elemeket */
    justify-content: flex-start; /* Felülről kezdje a rendezést */
    height: 100%; /* Hogy egyforma magasak legyenek a kártyák */
}

.price-card p {
    margin-bottom: 20px;
    flex-grow: 1; /* Ez a kulcs! Kitölti az üres helyet a szöveg és a gomb között */
    display: flex;
    align-items: center; /* Függőlegesen középre rakja a szöveget az üres helyen */
    justify-content: center;
}

.price-card:hover {
    transform: translateY(-5px);
    /* Hoverre kicsit vastagabb és hangsúlyosabb lesz a keret */
    border: 2px solid var(--primary-dark);
    box-shadow: none; /* Árnyék teljesen kikapcsolva */
}

.price-card.featured { 
    transform: scale(1.05); 
    border: 2px solid var(--primary); 
}

.card-icon { 
    font-size: 2.5rem; 
    color: var(--primary); 
    margin-bottom: 20px; 
}

.card-icon i { margin: 0 5px; }

.price { 
    font-size: 2.8rem; 
    font-weight: 900; 
    color: var(--dark); 
    margin: 15px 0; 
}

.price-discount {
    background: #e9f8f6;
    color: var(--primary);
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
    margin-top: auto; /* Ez tolja le a kártya legaljára, bármi történjék */
    display: inline-block;
    width: fit-content;
    align-self: center; /* Középre igazítja a buborékot */
}

/* NYITVATARTÁS SZEKCIÓ */
.opening-details {
    max-width: 850px;
    margin: 0 auto;
}

/* Új, kifinomultabb nyitvatartás box */
/* NYITVATARTÁS - Fixen a vastag kerettel, mint a jegyár hover állapota */
.opening-highlight {
    max-width: 320px; /* Kicsit keskenyebb a kompaktság jegyében */
    margin: 20px auto; /* Kisebb külső margó */
    background: var(--white);
    padding: 15px 25px; /* Jelentősen csökkentett felső/alsó (15px) és oldalsó (25px) térköz */
    border-radius: 20px;
    border: 3px solid var(--primary);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.opening-icon-top {
    font-size: 1.5rem; /* Kicsit kisebb ikon, hogy kevesebb helyet foglaljon */
    color: var(--primary);
    margin-bottom: 5px; /* Minimális hely az ikon és az idő között */
    line-height: 1; /* Megszünteti az ikon körüli extra sortávolságot */
}

.opening-time {
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--dark);
    line-height: 1.1; /* Szorosabb sortávolság a szövegnél */
}

/* Mobilra még kisebb térközök */
@media (max-width: 480px) {
    .opening-highlight {
        padding: 10px 20px;
    }
    .opening-time {
        font-size: 1.8rem;
    }
}




/* RÓLUNK KÖZÉPRE IGAZÍTVA */
.about-centered {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 800px; /* Szűkebb tartalom a jobb olvashatóságért */
    margin: 0 auto;
    text-align: center;
}

.about-content h3 {
    margin-bottom: 20px;
    font-size: 1.8rem;
    color: var(--dark);
}

.about-content p {
    margin-bottom: 20px;
    line-height: 1.8;
    color: #555;
}

/* Pipás rész középre */
.about-features-center {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin: 30px 0;
}

.about-features-center span {
    background: #f0fdfa;
    color: var(--primary-dark);
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    border: 1px solid #e2f5f2;
}

/* Statisztika keretek egymás mellett, de középen */
.about-stats-row {
    display: flex;
    justify-content: center;
    gap: 20px;
    width: 100%;
    margin-bottom: 40px;
}

.stat-card-mini {
    background: var(--white);
    padding: 20px 40px;
    border-radius: 15px;
    border: 2px solid var(--primary); /* A kért zöld keret itt is visszaköszön */
    min-width: 150px;
}

.stat-num {
    display: block;
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--dark);
}

.stat-label {
    font-size: 0.8rem;
    color: #888;
    text-transform: uppercase;
    font-weight: 700;
}

/* Gomb szekció */
.about-action {
    margin-top: 10px;
}

/* Piros gomb finomítása */
.btn-danger {
    background: #d9534f;
    color: white;
    padding: 15px 40px;
    font-size: 1rem;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(217, 83, 79, 0.2);
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-danger:hover {
    background: #c9302c;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(217, 83, 79, 0.3);
}

/* Mobilra egymás alá rakja a statisztikát */
@media (max-width: 500px) {
    .about-stats-row {
        flex-direction: column;
        align-items: center;
    }
    .stat-card-mini {
        width: 80%;
    }
}

/* STATISZTIKA KÁRTYÁK */
.about-stats {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.stat-card {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid #eee;
    text-align: center;
    transition: var(--transition);
}

.stat-card:hover {
    border-color: var(--primary);
    transform: scale(1.03);
}

.stat-num {
    display: block;
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary);
}

.stat-label {
    color: #777;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 0.8rem;
}

/* A KÉRT PIROS GOMB (Nem durva, matt árnyalat) */
.btn-danger {
    background: #d9534f; /* Elegáns, visszafogottabb piros */
    color: white;
    box-shadow: 0 4px 12px rgba(217, 83, 79, 0.2);
}

.btn-danger:hover {
    background: #c9302c; /* Egy árnyalattal sötétebb hoverre */
    transform: translateY(-2px);
    color: white;
}






.map-container {
    width: 100%;
    border-radius: 20px; /* Pontosan akkora kerekítés, mint a képeidnél */
    overflow: hidden; /* Ez vágja le a térkép sarkait */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1); /* Egy kis mélység */
    border: 3px solid var(--primary); /* Opcionális: kaphat egy vékony zöld keretet is */
    margin-top: 20px;
}

.map-container iframe {
    display: block; /* Megszünteti az alsó felesleges hézagot */
    filter: grayscale(0.2) contrast(1.1); /* Opcionális: kicsit elegánsabb, tompább színek */
}

/* Mobilnézethez kicsit alacsonyabb térkép */
@media (max-width: 768px) {
    .map-container iframe {
        height: 300px;
    }
}




.map-address {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 30px;
}

.map-address i {
    color: var(--primary); /* A kis ikon zöld lesz */
    margin-right: 10px;
}

.map-container {
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    border: 3px solid var(--primary);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}













/* MOBIL ELRENDEZÉS */
@media (max-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr;
    }
    .about-stats {
        grid-template-columns: 1fr 1fr;
    }
}






/* Mobil optimalizálás az új boxhoz */
@media (max-width: 480px) {
    .opening-time {
        font-size: 1.6rem;
    }
}

.opening-text {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
}

/* MODERN KÁRTYÁK (BÜFÉ & SZÁLLÁS) */
.modern-card { 
    background: var(--white); 
    border-radius: 30px; 
    overflow: hidden; 
    box-shadow: var(--shadow); 
}

.card-flex { 
    display: flex; 
    flex-wrap: wrap; 
}

.card-img { 
    flex: 1; 
    min-width: 400px; 
    height: 450px; 
}

.card-img img { 
    width: 100%; 
    height: 100%; 
    object-fit: cover; 
    transition: 0.6s; 
}

.modern-card:hover .card-img img { 
    transform: scale(1.05); 
}

.card-info { 
    flex: 1; 
    padding: 60px; 
    min-width: 400px; 
    display: flex; 
    flex-direction: column; 
    justify-content: center; 
    align-items: flex-start; 
}

.modern-card.reverse .card-flex { 
    flex-direction: row-reverse; 
}

.tag { 
    background: var(--primary); 
    color: var(--white); 
    padding: 6px 18px; 
    border-radius: 50px; 
    font-size: 0.75rem; 
    font-weight: 700; 
    margin-bottom: 20px; 
}

.card-info h3 { 
    font-size: 2.2rem; 
    margin-bottom: 20px; 
}

.card-info p { 
    font-size: 1.05rem; 
    margin-bottom: 30px; 
    color: #666; 
}

/* FOOTER */
.footer { 
    background: var(--dark); 
    color: #888; 
    padding: 50px 0; 
    text-align: center; 
}

/* MOBILBARÁT BEÁLLÍTÁSOK */
@media (max-width: 992px) {
    .card-img, .card-info { min-width: 100%; height: auto; }
    .card-img { height: 300px; }
    .hero h1 { font-size: 3rem; }
    .time-main { font-size: 2.5rem; }
}

@media (max-width: 768px) {
    .nav-links { display: none; }
    .section { padding: 60px 0; }
    .price-card.featured { transform: scale(1); }
    .hero-social a { width: 60px; height: 60px; font-size: 1.6rem; }
}


.hero h1 {
    font-size: 4.5rem; /* Kicsit növeltünk a főcímen is */
    font-weight: 900;
    margin-bottom: 5px;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.3);
}

.hero-subtitle {
    font-size: 2.2rem; /* Ez volt eredetileg 1.6rem, most jóval nagyobb */
    font-weight: 400;
    margin-bottom: 40px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;
    opacity: 0.95; /* Selymesebb hatás */
}

/* Mobil optimalizálás, hogy ne lógjon ki a szöveg */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 3rem;
    }
    .hero-subtitle {
        font-size: 1.5rem;
    }
}