﻿:root{
  --accent:#d1a34a;
  --accent-dark:#b7862f;
  --ink:#2b1b10;
  --muted:#6f5a43;
  --paper:#f3e2bd;
  --paper-2:#ead3a2;
  --white:#ffffff;
  --shadow:0 12px 28px rgba(0,0,0,.35);
  --radius:18px;
  --radius-lg:24px;
  --maxw:900px;
}

*{
  box-sizing:border-box;
}

html,
body{
  margin:0;
  padding:0;
  min-height:100%;
}

body{
  font-family:"Segoe UI", system-ui, -apple-system, Arial, sans-serif;
  color:var(--ink);
  background:url('../assets/bg_wood.png') center center / 900px auto repeat fixed;
  position:relative;
}

body::before{
  content:"";
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.35);
  pointer-events:none;
  z-index:-1;
}

img{
  max-width:100%;
  display:block;
}

h1,
h2,
h3,
p{
  margin:0;
}

.boldblack{
  color:#000;
  font-weight:700;
}

/* =========================
   APP WRAPPER
========================= */
.app{
  width:100%;
  max-width:var(--maxw);
  min-height:100vh;
  margin:0 auto;
  padding:0 14px 110px;
  position:relative;
  background:rgba(20,10,6,.18);
  backdrop-filter:blur(2px);
  box-shadow:
    0 20px 60px rgba(0,0,0,.30),
    inset 0 1px 0 rgba(255,255,255,.04);
}

/* =========================
   HEADER
========================= */
.topbar{
  padding:20px 10px 8px;
  display:flex;
  justify-content:center;
  align-items:center;
}

.brand{
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  text-align:center;
	text-decoration: none;
}

.brand img{
  width:auto;
  height:82px;
  filter:drop-shadow(0 6px 12px rgba(0,0,0,.5));
}

.brand-text{
  margin-top:8px;
}

.brand-name{
  color:#f6e7c2;
  font-size:1.05rem;
  font-weight:800;
  letter-spacing:.04em;
  text-shadow:0 2px 6px rgba(0,0,0,.35);
}

.brand-tagline{
  color:rgba(255,255,255,.82);
  font-size:.82rem;
  margin-top:4px;
  text-shadow:0 2px 6px rgba(0,0,0,.35);
}

/* =========================
   HERO DESC
========================= */
.hero-desc{
  margin-top:10px;
  margin-left:auto;
  margin-right:auto;
  max-width:620px;
  text-align:center;
  color:rgba(255,255,255,.88);
  line-height:1.5;
  padding:0 8px 4px;
}

.hero-desc h1{
  font-size:1.25rem;
  font-weight:800;
  line-height:1.35;
}

.hero-desc h2{
  margin-top:8px;
  font-size:.98rem;
  font-weight:500;
  color:rgba(255,255,255,.82);
  line-height:1.5;
}

/* =========================
   SECTION HEADER
========================= */
.section-bar{
  text-align:center;
  margin:14px 0 18px;
}

.section-bar strong{
  display:inline-block;
  min-width:180px;
  background:rgba(255,255,255,.14);
  color:#fff;
  border-radius:14px;
  padding:12px 18px;
  font-size:1rem;
  font-weight:800;
  box-shadow:inset 0 1px 0 rgba(255,255,255,.08);
}

.section-bar span{
  display:block;
  margin-top:8px;
  color:rgba(255,255,255,.82);
  font-size:.84rem;
}

/* =========================
   MENU LIST
========================= */
.menu-list{
  display:flex;
  flex-direction:column;
  gap:16px;
	margin: auto;
}

.menu-group-title{
  color:#fff;
  font-size:1.12rem;
  font-weight:800;
  margin:2px 4px 2px;
  text-shadow:0 2px 6px rgba(0,0,0,.35);
}

.menu-group-title.next-week{
  margin-top:18px;
}

.menu-day-block{
  display:flex;
  flex-direction:column;
  gap:10px;
}

.menu-day-heading{
  color:#fff;
  font-size:.96rem;
  font-weight:800;
  margin:0 4px;
  text-shadow:0 2px 6px rgba(0,0,0,.35);
}

.menu-day-heading span{
  display:inline-block;
  margin-left:8px;
  color:rgba(255,255,255,.75);
  font-size:.82rem;
  font-weight:600;
}

/* =========================
   MENU CARD
========================= */
.menu-card{
  background:url("../assets/card_parchment.png") center center / cover no-repeat;
  border-radius:20px;
  padding:16px;
  box-shadow:var(--shadow);
  display:flex;
  flex-direction:column;
  gap:10px;
  position:relative;
  overflow:hidden;
}

.menu-info{
  display:flex;
  flex-direction:column;
  gap:2px;
}

.menu-info h2{
  margin:2px 0 0;
  font-size:1rem;
  line-height:1.4;
  font-weight:800;
  color:var(--ink);
}

.menu-desc{
  margin-top:4px;
  color:var(--muted);
  font-size:.9rem;
  line-height:1.45;
}

.menu-bottom{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:12px;
  margin-top:4px;
}

.price{
  font-weight:800;
  font-size:1rem;
  color:var(--ink);
}

/* =========================
   QUANTITY CONTROLS
========================= */
.qty{
  display:flex;
  align-items:center;
  gap:8px;
  flex-shrink:0;
}

.qty-minus,
.qty-plus,
.qty button{
  width:32px;
  height:32px;
  border:none;
  border-radius:50%;
  background:rgba(43,27,16,.08);
  color:var(--ink);
  font-size:19px;
  font-weight:800;
  cursor:pointer;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  transition:transform .12s ease, background .12s ease, opacity .12s ease;
}

.qty-minus:hover,
.qty-plus:hover,
.qty button:hover{
  background:rgba(43,27,16,.14);
}

.qty-minus:active,
.qty-plus:active,
.qty button:active{
  transform:scale(.96);
}

.qty-value,
.qty span{
  min-width:36px;
  text-align:center;
  background:rgba(255,255,255,.68);
  border-radius:999px;
  padding:5px 10px;
  font-weight:800;
  font-size:.95rem;
  color:var(--ink);
}

/* =========================
   CART BAR
========================= */
.cart-bar{
  position:fixed;
  left:50%;
  transform:translateX(-50%);
  bottom:0;
  width:100%;
  max-width:var(--maxw);
  padding:12px 14px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:12px;
  background:rgba(28,17,10,.96);
  border-top:1px solid rgba(209,163,74,.20);
  box-shadow:0 -6px 20px rgba(0,0,0,.25);
  z-index:50;
}

.cart-info{
  display:flex;
  flex-direction:column;
  min-width:0;
}

.cart-label{
  color:#fff;
  font-weight:800;
  font-size:.98rem;
}

.cart-sum{
  color:rgba(255,255,255,.82);
  font-size:.86rem;
  line-height:1.4;
}

.cart-btn{
  background:var(--accent);
  color:var(--ink);
  border:none;
  border-radius:12px;
  padding:12px 18px;
  font-weight:800;
  font-size:.96rem;
  cursor:pointer;
  transition:filter .15s ease, transform .12s ease, opacity .15s ease;
  white-space:nowrap;
}

.cart-btn:hover:not(:disabled){
  filter:brightness(1.04);
}

.cart-btn:active:not(:disabled){
  transform:translateY(1px);
}

.cart-btn:disabled{
  background:#8f7a4d;
  color:#2b1b10;
  opacity:.55;
  cursor:not-allowed;
  box-shadow:none;
}

/* =========================
   FOOTER
========================= */
.footer-contact{
  margin-top:60px;
  padding:40px 20px;
  background:rgba(0,0,0,.35);
  backdrop-filter:blur(6px);
  border-top:1px solid rgba(255,255,255,.08);
}

.footer-title{
  text-align:center;
  font-size:1.25rem;
  font-weight:700;
  color:#fff;
  margin-bottom:25px;
}

.footer-contact-wrap{
  display:flex;
  gap:30px;
  max-width:1000px;
  margin:0 auto;
  align-items:stretch;
}

.footer-map{
  flex:2;
  border-radius:16px;
  overflow:hidden;
  box-shadow:0 10px 26px rgba(0,0,0,.22);
}

.footer-map iframe{
  width:100%;
  height:260px;
  border:0;
  display:block;
}

.footer-address{
  flex:1;
  display:flex;
  flex-direction:column;
  justify-content:center;
  color:#fff;
}

.address-title{
  font-weight:700;
  margin-bottom:10px;
  font-size:1rem;
}

.address-text{
  opacity:.88;
  line-height:1.7;
  margin-bottom:20px;
}

.map-btn{
  display:inline-block;
  background:var(--accent);
  color:var(--ink);
  padding:11px 16px;
  border-radius:10px;
  font-weight:700;
  text-decoration:none;
  width:fit-content;
  transition:filter .15s ease, transform .12s ease;
}

.map-btn:hover{
  filter:brightness(1.04);
}

.map-btn:active{
  transform:translateY(1px);
}

/* =========================
   CHECKOUT RELATED
   (megtartva, ha kell a többi oldalhoz)
========================= */
.checkout-page{
  padding-bottom:24px;
	max-width:900px;
	margin:auto;
}

.checkout-top{
  display:flex;
  align-items:center;
  gap:14px;
  margin:4px 4px 18px;
}

.checkout-title{
  margin:0;
  color:#fff;
  font-size:2rem;
  font-weight:800;
}

.checkout-card{
  background:url("../assets/card_parchment.png") center/cover no-repeat;
  border-radius:24px;
  padding:22px;
  box-shadow:0 12px 28px rgba(0,0,0,.35);
}

.checkout-card h2{
  margin:0 0 18px;
  font-size:1.3rem;
  color:#2b1b10;
}

.checkout-item{
  padding:10px 0 14px;
  border-bottom:1px solid rgba(43,27,16,.12);
}

.checkout-item-main{
  display:flex;
  justify-content:space-between;
  gap:16px;
  align-items:flex-start;
}

.checkout-item-name{
  font-size:1rem;
  font-weight:700;
  line-height:1.35;
}

.checkout-item-sum{
  font-weight:800;
  white-space:nowrap;
}

.checkout-item-sub{
  margin-top:4px;
  color:#6f5a43;
}

.checkout-total-row{
  display:flex;
  justify-content:space-between;
  align-items:center;
  font-size:1.1rem;
  font-weight:800;
  padding:18px 0;
  border-bottom:1px solid rgba(43,27,16,.12);
  margin-bottom:18px;
}

.checkout-form label{
  display:block;
  margin:16px 0 8px;
  font-weight:700;
  color:#2b1b10;
}

.checkout-form input,
.checkout-form textarea{
  width:100%;
  border:none;
  border-radius:18px;
  background:rgba(255,255,255,.55);
  padding:16px 18px;
  font-size:1rem;
  color:#2b1b10;
  outline:none;
}

.checkout-form textarea{
  min-height:110px;
  resize:vertical;
}

.checkout-msg{
  margin-top:14px;
  font-weight:700;
  color:#7a1f1f;
}

.hp-wrap{
  position:absolute !important;
  left:-9999px !important;
  opacity:0 !important;
  pointer-events:none !important;
}

.back-btn,
.napiajanlat{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:120px;
  height:54px;
  padding:0 20px;
  border-radius:999px;
  text-decoration:none;
  color:#f3e8cf;
  font-weight:800;
  font-size:1.05rem;
  background:linear-gradient(180deg, rgba(80,55,20,.78), rgba(45,28,10,.88));
  border:2px solid rgba(209,163,74,.35);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.08),
    0 8px 18px rgba(0,0,0,.28);
}

.back-btn:hover,
.napiajanlat:hover{
  filter:brightness(1.08);
}

.back-btn:active,
.napiajanlat:active{
  transform:translateY(1px);
}

/* =========================
   MOBILE
========================= */
@media (max-width: 768px){
  .footer-contact-wrap{
    flex-direction:column;
  }

  .footer-map iframe{
    height:200px;
  }

  .footer-address{
    align-items:center;
    text-align:center;
  }
}

/* =========================
   SMALL MOBILE
========================= */
@media (max-width: 430px){
  .app{
    padding:0 12px 104px;
  }

  .brand img{
    height:74px;
  }

  .hero-desc h1{
    font-size:1.1rem;
  }

  .hero-desc h2{
    font-size:.92rem;
  }

  .section-bar strong{
    min-width:auto;
    width:100%;
  }

  .menu-card{
    padding:15px;
  }

  .menu-bottom{
    align-items:flex-end;
  }

  .cart-btn{
    padding:12px 16px;
  }
}

/* =========================
   DESKTOP
========================= */
@media (min-width: 900px){
  .app{
    max-width:900px;
    min-height:calc(100vh - 64px);
    padding:0 24px 110px;
  }

  .topbar{
    padding:28px 10px 16px;
  }

  .brand img{
    height:96px;
  }

  .brand-name{
    font-size:1.5rem;
    letter-spacing:.05em;
  }

  .brand-tagline{
    font-size:1rem;
  }

  .hero-desc{
    max-width:760px;
    margin-top:8px;
  }

  .hero-desc h1{
    font-size:1.45rem;
  }

  .hero-desc h2{
    font-size:1.05rem;
  }

  .section-bar{
    margin:10px 0 26px;
  }

  .section-bar strong{
    min-width:220px;
    padding:14px 28px;
    font-size:1.2rem;
  }

  .section-bar span{
    font-size:.95rem;
    margin-top:10px;
  }

  .menu-group-title{
    font-size:1.6rem;
    margin:14px 4px 14px;
  }

  .menu-day-heading{
    font-size:1.2rem;
    margin:4px 4px 6px;
  }

  .menu-day-heading span{
    font-size:.95rem;
    margin-left:10px;
  }

  .menu-list{
    gap:18px;
  }

  .menu-day-block{
    gap:12px;
  }

  .menu-card{
    padding:22px 24px;
    border-radius:24px;
  }

  .menu-info h2{
    font-size:1.45rem;
    line-height:1.35;
    margin:8px 0 6px;
  }

  .menu-desc{
    font-size:1rem;
  }

  .price{
    font-size:1.35rem;
  }

  .qty{
    gap:14px;
  }

  .qty-minus,
  .qty-plus,
  .qty button{
    width:38px;
    height:38px;
    font-size:24px;
  }

  .qty-value,
  .qty span{
    min-width:42px;
    padding:6px 12px;
    font-size:1rem;
  }

  .cart-bar{
    max-width:900px;
    padding:16px 24px;
    border-radius:18px 18px 0 0;
  }

  .cart-label{
    font-size:1.15rem;
  }

  .cart-sum{
    font-size:.95rem;
  }

  .cart-btn{
    min-width:140px;
    height:52px;
    font-size:1rem;
    border-radius:14px;
  }

  .checkout-page{
    padding-bottom:32px;
  }

  .checkout-top{
    margin:10px 0 24px;
    gap:18px;
  }

  .checkout-title{
    font-size:2.4rem;
  }

  .checkout-card{
    border-radius:28px;
    padding:28px;
  }

  .checkout-card h2{
    font-size:1.6rem;
    margin-bottom:22px;
  }

  .checkout-item{
    padding:14px 0 18px;
  }

  .checkout-item-name{
    font-size:1.2rem;
  }

  .checkout-item-sum{
    font-size:1.15rem;
  }

  .checkout-item-sub{
    font-size:1rem;
  }

  .checkout-total-row{
    font-size:1.3rem;
    padding:22px 0;
    margin-bottom:24px;
  }

  .checkout-form label{
    font-size:1rem;
    margin:18px 0 10px;
  }

  .checkout-form input,
  .checkout-form textarea{
    padding:18px 20px;
    font-size:1.05rem;
    border-radius:20px;
  }

  .checkout-form textarea{
    min-height:130px;
  }

  .back-btn{
    min-width:132px;
    height:56px;
    font-size:1.05rem;
  }
}

/* =========================
   ACCESSIBILITY
========================= */
.skip-link{
  position:absolute;
  left:-9999px;
  top:auto;
  width:1px;
  height:1px;
  overflow:hidden;
}

.skip-link:focus{
  position:fixed;
  left:16px;
  top:16px;
  width:auto;
  height:auto;
  padding:10px 14px;
  background:#fff;
  color:#2b1b10;
  border-radius:10px;
  z-index:9999;
  font-weight:700;
  box-shadow:0 8px 24px rgba(0,0,0,.25);
}

/* =========================
   GLOBAL PAGE STRUCTURE
========================= */
.site-shell{
  width:100%;
}

.page-main{
  max-width:100%;
}

.menu-section{
  margin-top:8px;
}

/* =========================
   TOPBAR INNER + QUICK NAV
========================= */
.topbar-inner{
  width:100%;
  max-width:900px;
  margin:0 auto;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
}

.quick-nav{
  display:flex;
  align-items:center;
  gap:10px;
  flex-wrap:wrap;
}

.quick-nav a{
  color:rgba(255,255,255,.9);
  text-decoration:none;
  font-weight:700;
  font-size:.92rem;
  padding:10px 14px;
  border-radius:999px;
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.08);
  transition:background .15s ease, transform .12s ease, color .15s ease;
}

.quick-nav a:hover{
  background:rgba(255,255,255,.14);
  color:#fff;
}

.quick-nav a:active{
  transform:translateY(1px);
}

/* =========================
   HERO
========================= */
.hero-card{
  margin:10px 0 18px;

  overflow:hidden;
  background:
    linear-gradient(135deg, rgba(43,27,16,.82), rgba(95,63,28,.68));
  box-shadow:0 16px 36px rgba(0,0,0,.32);
	width:100%;
}

.hero-card__content{
  padding:24px 20px;
  text-align:center;
}

.eyebrow{
  display:inline-block;
  color:#f0d7a1;
  font-size:.8rem;
  font-weight:800;
  letter-spacing:.08em;
  text-transform:uppercase;
  margin-bottom:10px;
}

.hero-lead{
  color:rgba(255,255,255,.88);
  font-size:.98rem;
  line-height:1.65;
  max-width:680px;
  margin:12px auto 0;
}

.hero-badges{
  margin-top:16px;
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:10px;
}

.hero-badges span{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:10px 14px;
  border-radius:999px;
  background:rgba(255,255,255,.1);
  color:#fff;
  font-size:.88rem;
  font-weight:700;
  border:1px solid rgba(255,255,255,.08);
}
#heroTitle{
	color:aliceblue;
}
.alert{
	font-weight: bold;
	color:red;
	padding-top:20px;
}
/* =========================
   SECTION HEADER EXTRA
========================= */
.section-subtitle{
  display:block;
  margin-top:6px;
  color:rgba(255,255,255,.82);
  font-size:.82rem;
}

.mini-link{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  text-decoration:none;
  white-space:nowrap;
  padding:10px 14px;
  border-radius:999px;
  background:rgba(255,255,255,.1);
  color:#fff;
  font-size:.88rem;
  font-weight:700;
  transition:background .15s ease, transform .12s ease;
}

.mini-link:hover{
  background:rgba(255,255,255,.16);
}

.mini-link:active{
  transform:translateY(1px);
}

/* =========================
   MENU DAY / GRID
========================= */
.menu-day-heading{
  display:flex;
  align-items:center;
  gap:10px;
  flex-wrap:wrap;
}

.menu-day-heading__date{
  font-weight:800;
}

.menu-day-heading__day{
  display:inline-block;
}

.menu-grid{
  display:grid;
  grid-template-columns:1fr;
  gap:12px;
}

.menu-pill{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  align-self:flex-start;
  padding:7px 12px;
  border-radius:999px;
  background:rgba(43,27,10,.08);
  color:#4c3119;
  font-size:.78rem;
  font-weight:800;
  letter-spacing:.02em;
}

.menu-desc--muted{
  color:var(--muted);
  opacity:.9;
}

/* =========================
   FOOTER EXTRA
========================= */
.footer-header{
  max-width:760px;
  margin:0 auto 24px;
  text-align:center;
}

.footer-lead{
  color:rgba(255,255,255,.84);
  line-height:1.65;
  max-width:700px;
  margin:10px auto 0;
}

.info-card{
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.08);
  border-radius:18px;
  padding:18px;
}

.footer-address{
  gap:16px;
}

.feature-list{
  margin:0;
  padding-left:18px;
  color:rgba(255,255,255,.88);
  line-height:1.8;
}

.feature-list li{
  margin:0;
}

.footer-bottom{
  margin-top:28px;
  text-align:center;
  color:rgba(255,255,255,.68);
  font-size:.9rem;
  padding-top:18px;
  border-top:1px solid rgba(255,255,255,.08);
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 768px){
  .topbar-inner{
    flex-direction:column;
    justify-content:center;
  }

  .quick-nav{
    justify-content:center;
  }

  .section-bar{
    display:flex;
    flex-direction:column;
    gap:12px;
    align-items:center;
  }

  .hero-card__content{
    padding:22px 16px;
  }
}

@media (min-width: 900px){
  .hero-card{
    margin:14px 0 24px;
  }

  .hero-card__content{
    padding:34px 32px;
  }

  .hero-lead{
    font-size:1.05rem;
  }

  .menu-grid{
    grid-template-columns:repeat(2, minmax(0, 1fr));
  }
}

.app{
  width:100%;
  max-width:900px;
  min-height:100vh;
  margin:0 auto;
  padding:0 14px 110px;
  position:relative;
  background:rgba(20,10,6,.18);
  backdrop-filter:blur(2px);
  box-shadow:
    0 20px 60px rgba(0,0,0,.30),
    inset 0 1px 0 rgba(255,255,255,.04);
}

/* fő tartalom középre */
.page-main{
  width:100%;
  display:flex;
  flex-direction:column;
  align-items:center;
}

/* menü szekció középre */
.menu-section{
  width:100%;
  max-width:820px;
  margin:8px auto 0;
}

/* lista középre */
.menu-list{
  width:100%;
  display:flex;
  flex-direction:column;
  gap:16px;
  align-items:center;
}

/* nap blokk középre */
.menu-day-block{
  width:100%;
  max-width:820px;
  display:flex;
  flex-direction:column;
  gap:10px;
  margin:0 auto;
}

/* dátum sor */
.menu-day-heading{
  width:100%;
}

/* kártyarács középre */
.menu-grid{
  width:100%;
  display:grid;
  grid-template-columns:1fr;
  gap:12px;
  justify-content:center;
}

/* maga a kártya */
.menu-card{
  width:100%;
  max-width:820px;
  margin:0 auto;
}

@media (min-width: 900px){
  .menu-section{
    max-width:860px;
  }

  .menu-day-block{
    max-width:860px;
  }

  .menu-card{
    max-width:860px;
  }
}