/* === GLOBAL / BASE === */

*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: #FFFFFF;
    color: #2A2A2A;
}

/* === INTRO VIDEO === */

#introVideoContainer {
    position: fixed;
    inset: 0;
    width: 100vw;
    height: 100vh;
    background: #FFFFFF;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

#introVideo {
    width: 100%;
    height: 100%;
	max-height: 70%;
    object-fit: cover;
    object-position: center;
}

/* Intro Video asztali webes nézet */

@media (min-width: 768px) {
    #introVideo {
        object-fit: contain;   /* teljes videó látszik */
        background: #ffffff;   /* ha maradna üres sáv */
    }
}

@media (min-width: 1024px) {
    #introVideo {
        max-width: 90vw;
        max-height: 90vh;
    }
}

/* === MAIN CONTENT === */

#mainContent {
    opacity: 0;
    transition: opacity 0.8s ease;
    min-height: 100vh;
    background: #ffffff;
}

/* === SECTIONS === */

.section {
    padding: 24px 16px;
    background: #FFFFFF;
}

.section-title {
    font-size: 1.4rem;
    margin: 0 0 8px;
    font-weight: 700;
    color: #1E1E1E;
	text-align: center;
}

.section-text {
    margin: 0 0 8px;
    font-size: 0.95rem;
    color: #6A6A6A;
	text-align: center;
}

.section-text-center {
    text-align: center;
}

/* === SCROLL ANIMATIONS === */

.section-animate {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.section-visible {
    opacity: 1;
    transform: translateY(0);
}

/* === HERO === */

.hero {
    padding-top: 32px;
    padding-bottom: 32px;
    background: transparent;
    color: #fff;
}

.hero-inner {
    max-width: 480px;
    margin: 0 auto;
    text-align: center;
}

.hero-logo-circle {
    width: 100x;
    height: 150px;
    margin: 0 auto 12px;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-logo-text {
    font-family: 'Great Vibes', cursive;
    font-size: 6rem;
    font-weight: 400;
    line-height: 1;
    color: #FFFFFF;
}

}

.hero-title {
    margin: 0 0 8px;
    font-size: 1.8rem;
}

.hero-subtitle {
    margin: 0 0 16px;
    font-size: 0.95rem;
    color: #f37702;
	font-weight: bold;
}
/* === HERO ÉTTEREM KÉPES HÁTTÉR === */

/* HERO háttérkép */
.hero-bg-image {
    background-image: url('hero-bg.jpeg'); /* módosítsd, ha máshol van a kép */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: scroll; /* vagy fixed, ha parallax hatást akarsz */
    position: relative;
}

/* Hero overlay – sötétítés, ha kell */
.hero-overlay {
    background: rgba(0, 0, 0, 0.2); /* finom sötétítés, hogy a szöveg olvashatóbb legyen */
    padding: 32px 0;
    position: relative;
    z-index: 1;
}

/* Ha kell, tehetsz világosabb vagy sötétebb overlay-t is */


.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 18px;
    border-radius: 999px;
    border: none;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
}

.hero-btn {
    background: #050609;
    color: #fff;
}

/* === ABOUT === */

.about {
    background: #FFFFFF;
}

/* === MENU (ÉTLAP) === */

.menu {
    background: #FFFFFF;
}

.menu-category-title {
    margin-top: 16px;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 1.05rem;
    color: #1E1E1E;
}

/* Kártyák: világos krém háttér */
.menu-card {
    background: #FFF6E9;
    border: 1px solid #E8DCC7;
    border-radius: 12px;
    padding: 10px 12px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.menu-card-text {
    max-width: 70%;
}

.menu-item-name {
    margin: 0 0 4px;
    font-size: 0.98rem;
    color: #2A2A2A;
    font-weight: 600;
}

.menu-item-desc {
    margin: 0;
    font-size: 0.85rem;
    color: #6A6A6A;
}

.menu-item-price {
    font-weight: 700;
    font-size: 0.95rem;
    color: #2A2A2A;
}

.menu-grid {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

/* === TIMELINE (HÍREK) === */

.timeline {
    background: #FFFFFF;
}

.timeline-list {
    margin-top: 12px;
    border-left: 2px solid #E8DCC7;
    padding-left: 10px;
}

.timeline-item {
    position: relative;
    padding-left: 6px;
    margin-bottom: 14px;
}

.timeline-dot {
    position: absolute;
    width: 11px;
    height: 11px;
    border-radius: 999px;
    background: #ff7a3d;
    left: -17px;
    top: 4px;
}

.timeline-date {
    font-size: 0.75rem;
    color: #8C8C8C;
    text-transform: uppercase;
}

.timeline-title {
    margin: 2px 0 4px;
    font-size: 0.95rem;
    color: #2A2A2A;
    font-weight: 600;
}

.timeline-text {
    margin: 0;
    font-size: 0.9rem;
    color: #6A6A6A;
}

/* === DELIVERY (KISZÁLLÍTÁS) === */

.delivery {
    background: #FFFFFF;
}

.info-cards {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 12px;
}

.info-card {
    background: #FFF6E9;
    border: 1px solid #E8DCC7;
    border-radius: 12px;
    padding: 10px 12px;
}

.info-card-title {
    margin: 0 0 4px;
    font-size: 0.98rem;
    color: #2A2A2A;
    font-weight: 600;
}

.info-card-text {
    margin: 0;
    font-size: 0.9rem;
    color: #6A6A6A;
}

.phone-link {
    color: #E05E2C;
    text-decoration: none;
    font-weight: 600;
}

/* === HOURS (NYITVATARTÁS) === */

.hours {
    background: #FFFFFF;
}

.hours-list {
    list-style: none;
    padding: 0;
    margin: 8px 0 0;
}

.hours-list li {
    display: flex;
    justify-content: space-between;
    font-size: 0.95rem;
    padding: 6px 0;
    border-bottom: 1px solid #E8DCC7;
}

/* === CONTACT FORM === */

.contact-form-section {
    background: #FFFFFF;
}

.contact-form {
    margin-top: 8px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-label {
    font-size: 0.9rem;
    color: #2A2A2A;
}

.form-input {
    border-radius: 8px;
    border: 1px solid #E8DCC7;
    background: #FFF6E9;
    color: #2A2A2A;
    font-size: 0.9rem;
    padding: 8px 10px;
    font-family: inherit;
}

.form-input:focus {
    outline: none;
    border-color: #ff7a3d;
}

textarea.form-input {
    resize: vertical;
}

.honeypot {
    display: none;
}

.submit-btn {
    background: #ff7a3d;
    color: #ffffff;
    margin-top: 4px;
}

/* === CONTACT + MAP === */

.contact {
    background: #FFFFFF;
}

.map-placeholder {
    margin-top: 10px;
    border-radius: 10px;
    border: 1px dashed #E8DCC7;
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #AAAAAA;
    font-size: 0.9rem;
}

/* === FOOTER === */

.footer {
    background: #FFFFFF;
    padding: 16px;
    text-align: center;
    font-size: 0.8rem;
    color: #6A6A6A;
    border-top: 1px solid #E8DCC7;
}

.footer-dev {
    margin: 4px 0 0;
    color: #999999;
}

/* === RESPONSIVE === */

/* === SOCIAL ICONS (Footer) === */
/* Global social container (centers icons wherever placed) */
.social {
    width: 100%;
    margin-top: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}
.social img {
    width: 28px;
    height: 28px;
    display: inline-block;
    transition: transform 0.15s ease, opacity 0.15s ease;
}
.social a:hover img {
    transform: scale(1.08);
    opacity: 0.95;
}
@media (min-width: 600px) {
    .hero-inner {
        max-width: 520px;
    }

    .section {
        padding: 32px 24px;
    }

    .section-title {
        font-size: 1.6rem;
    }
}

.hero-logo {
  width: 600px;
  max-width: 100%;
  margin-bottom: -120px;
  animation: fadeInUp 1s ease;
  filter: drop-shadow(0 0 3px #00cfff);
  margin-top: -200px;
  animation: slideFromTop 2s ease-out;
  opacity: 1;
}

.hero-logo-box {
    width: 90%;
    max-width: 320px;
    padding: 20px;
    margin: 0 auto 16px;
    background: rgba(255, 255, 255, 0.35);
    border-radius: 24px; /* <-- EZ A LEKEREKÍTÉS */
    backdrop-filter: blur(4px);
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-logo-img {
    width: 100%;
    height: auto;
    border-radius: 18px; /* <-- A LOGÓ SAJÁT SARKAI IS LEKEREKÍTVE */
    display: block;
}

/* Nyitvatartás kártya */
.hours {
    background: #FFF6E9;
    padding: 20px;
    border-radius: 15px;
    margin: 20px auto;
    max-width: 450px;
    box-shadow: 0 4px 14px rgba(0,0,0,0.08);
}

/* Cím ikon + szöveg */
.hours .section-title {
    text-align: center;
    font-size: 1.6rem;
    margin-bottom: 15px;
    font-weight: 700;
    color: #333;
}

.hours .section-title i {
    color: #ff7a3d; /* narancs ikon */
    margin-right: 8px;
}

/* Lista alap */
.hours-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* Egy sor */
.hours-list li {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    font-size: 1.1rem;
    font-weight: 500;
    border-bottom: 1px solid #e6e6e6;
    color: #444;
}

/* Utolsó sor alján ne legyen vonal */
.hours-list li:last-child {
    border-bottom: none;
}

.powered-by {
  margin-top: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.powered-by img {
  max-width: 90px;
  height: auto;
  opacity: 0.9;
  transition: opacity 0.3s ease;
  background: transparent;
}

.powered-by img:hover {
  opacity: 1;
}

@media (max-width: 768px) {
  .powered-by img {
    max-width: 70px;
  }
}

/* HEADER alap */
.mobile-header {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 60px;
    background: transparent;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 0 15px;
    z-index: 99999;
}

/* Kis átmenetes logo, opcionális */
.logo-small {
    position: absolute;
    left: 15px;
    font-size: 1.3rem;
    font-weight: 700;
    color: #333;
}

/* Hamburger ikon */
.hamburger {
    width: 28px;
    height: 22px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
}

.hamburger span {
    width: 100%;
    height: 3px;
    background: #333;
    border-radius: 3px;
    transition: 0.3s;
}

/* MENU PANEL */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 75%;
    height: 100vh;
    background: #ffffff;
    box-shadow: -4px 0 20px rgba(0,0,0,0.15);
    padding: 80px 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    transition: 0.35s ease;
    z-index: 99998;
}

.mobile-menu.open {
    right: 0;
}

/* Menülista linkek */
.mobile-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-menu li {
    margin-bottom: 15px;
}

.mobile-menu a {
    font-size: 1.3rem;
    font-weight: 600;
    color: #333;
    text-decoration: none;
}

/* Bejelentkezés gomb */
.login-btn {
    margin-top: 30px;
    padding: 12px 20px;
    text-align: center;
    border-radius: 50px;
    background: #050609;
    color: #fff;
    font-weight: 700;
    text-decoration: none;
    font-size: 1.2rem;
}
.allmenu {
	margin-top: 30px;
	text-align: center;
}

/* Térkép */
.map-container {
    width: 100%;
    height: 300px;
    border-radius: 12px;
    overflow: hidden;
    margin-top: 30px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}
/* Kaja képek */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.85);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 999999;
}

.lightbox img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 12px;
    box-shadow: 0 0 25px rgba(0,0,0,0.4);
}

.food-img-btn {
    margin-top: 6px;
    padding: 6px 10px;
    font-size: 0.8rem;
    border-radius: 8px;
    background: #ff7a3d;
    color: #fff;
    border: none;
    cursor: pointer;
    font-weight: 600;
    transition: 0.2s;
}

.food-img-btn:hover {
    background: #ff5c1a;
}

/* ============================= */
/* ÉTLAP – MENU PAGE STYLES */
/* ============================= */

.menu-page {
    max-width: 1100px;
    margin: 0 auto;
    padding: 40px 20px 80px;
}

/* ===== FEJLÉC ===== */
.menu-header {
    text-align: center;
    margin-bottom: 50px;
}

.menu-header h1 {
    font-size: 2.6rem;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.menu-note {
    font-size: 0.95rem;
    opacity: 0.85;
    margin: 8px 0;
    line-height: 1.5;
}

/* ===== KATEGÓRIÁK ===== */
.menu-category {
    margin-top: 70px;
}

.menu-category h2 {
    font-size: 2rem;
    margin-bottom: 30px;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(139, 30, 30, 0.7);
    letter-spacing: 0.5px;
}

/* ===== ÉTEL SOR ===== */
.menu-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
    padding: 10px 0;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.08);
}

.menu-item:last-child {
    border-bottom: none;
}

.menu-item h3 {
    font-size: 1.05rem;
    font-weight: 500;
    line-height: 1.4;
    margin: 0;
}

/* ===== ÁR ===== */
.price {
    white-space: nowrap;
    font-weight: 600;
    color: #c9a24d;
    font-size: 1.05rem;
}

/* ===== KATEGÓRIÁN BELÜLI MEGJEGYZÉS ===== */
.menu-category .menu-note {
    margin-top: 15px;
    font-size: 0.9rem;
    opacity: 0.75;
    text-align: left;
}

/* ============================= */
/* MOBIL NÉZET */
/* ============================= */
@media (max-width: 768px) {

    .menu-page {
        padding: 30px 15px 60px;
    }

    .menu-header h1 {
        font-size: 2.1rem;
    }

    .menu-category {
        margin-top: 55px;
    }

    .menu-category h2 {
        font-size: 1.7rem;
    }

    .menu-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
    }

    .price {
        font-size: 1rem;
    }
}

/* ============================= */
/* EXTRA KIS KIJELZŐ */
/* ============================= */
@media (max-width: 420px) {

    .menu-header h1 {
        font-size: 1.9rem;
    }

    .menu-item h3 {
        font-size: 1rem;
    }

    .price {
        font-size: 0.95rem;
    }
}

/* Desktop optimalizálás */
@media (min-width: 1024px) {

  .page-wrapper {
    background: #ffffff;
    border-radius: 18px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    padding: 60px 40px;
    margin: 40px auto;
    max-width: 1200px;
  }
}

@media (min-width: 1024px) {
  body {
    background: #f3f3f3; /* vagy #f6f6f6 */
  }
}

@media (min-width: 1024px) {

  .hero {
    border-radius: 20px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    margin-bottom: 60px;
  }

}



