:root{
  --bg-color:#fef9e6;
  --bg-alt:#a80b36;
  --bg-alt-dark:#7e0827;
  --text:#141414;
  --text-alt:#face7d;
  --gold:#face7d;
  --gold-2:#facc7c;
  --container:1340px;
  --radius:0;
  --font-body:"Montserrat",system-ui,-apple-system,Segoe UI,Roboto,sans-serif;
  --font-display:"Roboto Slab",Georgia,serif;
}

*,*::before,*::after{box-sizing:border-box}
html{scroll-behavior:smooth;scroll-padding-top:120px;overflow-x:hidden}
body{
  margin:0;
  font-family:var(--font-body);
  font-size:16px;
  line-height:25px;
  color:var(--text);
  background:var(--bg-color);
  font-weight:400;
  overflow-x:hidden;
  -webkit-font-smoothing:antialiased;
}
img{max-width:100%;height:auto;display:block}
a{color:var(--bg-alt);text-decoration:none;transition:color .2s ease}
a:hover{color:var(--bg-alt-dark)}

p{margin:0 0 1em}

.container{
  width:100%;
  max-width:var(--container);
  margin:0 auto;
  padding:0 30px;
}
.text-center{text-align:center}

.skip-link{
  position:absolute;left:-9999px;top:0;z-index:100;
  background:var(--bg-alt);color:#fff;padding:12px 18px;font-weight:600;border-radius:0 0 8px 0;
}
.skip-link:focus{left:0}

/* ========== HEADER ========== */
.site-header{
  position:fixed;inset:0 0 auto 0;z-index:50;
  background:var(--bg-alt);
  padding:15px 0;
  transition:box-shadow .3s ease;
}
.site-header.is-scrolled{
  box-shadow:0 4px 16px rgba(0,0,0,.18);
}
.header-inner{display:flex;align-items:center;justify-content:space-between;gap:24px}
.logo img{height:60px;width:auto;transition:height .3s ease}
.site-header.is-scrolled .logo img{height:45px}

.primary-nav > ul{
  display:flex;align-items:center;gap:30px;
  list-style:none;margin:0;padding:0;
  font-family:var(--font-display);
}
.primary-nav a{
  color:#fff;font-size:18px;font-weight:500;
  letter-spacing:.3px;padding:6px 0;
}
.primary-nav a:hover,
.primary-nav a:focus-visible{color:var(--gold-2)}

.primary-nav .nav-order{color:var(--gold-2)}
.primary-nav .nav-order:hover{color:#fff}

/* ===== Language picker ===== */
.nav-lang{position:relative}
.lang-trigger{
  display:inline-flex;align-items:center;gap:8px;
  background:rgba(255,255,255,.08);
  border:1px solid rgba(250,206,125,.35);
  color:#fff;
  font-family:var(--font-body);
  font-size:14px;font-weight:500;
  padding:5px 14px 5px 6px;border-radius:999px;cursor:pointer;
  transition:background .2s ease, border-color .2s ease;
}
.lang-trigger:hover,.lang-trigger:focus-visible{background:rgba(255,255,255,.16);border-color:var(--gold-2)}
.lang-trigger .lang-flag{display:block;width:24px;height:24px;border-radius:50%;flex:0 0 auto}
.lang-trigger .lang-arrow{font-size:11px;opacity:.8;margin-left:2px}

.lang-menu[hidden]{display:none!important}
.lang-menu{
  display:block;
  position:absolute;top:calc(100% + 10px);right:0;
  background:#fff;color:var(--text);
  border:1px solid rgba(0,0,0,.08);border-radius:10px;
  box-shadow:0 14px 36px rgba(0,0,0,.18);
  padding:6px;margin:0;list-style:none;
  min-width:210px;width:auto;
  z-index:60;
}
.lang-menu li{display:block;width:100%;text-align:left;margin:0}
.lang-menu button{
  display:flex;align-items:center;gap:12px;
  width:100%;background:transparent;border:0;cursor:pointer;
  padding:9px 12px;
  font-family:var(--font-body);font-size:15px;color:var(--text);
  border-radius:6px;text-align:left;
  transition:background .15s ease,color .15s ease;
}
.lang-menu button:hover,.lang-menu button:focus-visible{background:var(--bg-color);color:var(--bg-alt)}
.lang-menu button img{display:block;width:24px;height:24px;border-radius:50%;flex:0 0 auto}
.lang-menu button span{flex:1;min-width:0}

/* RTL adjustments (arabski) */
[dir="rtl"] .lang-menu{right:auto;left:0}
[dir="rtl"] .hero-content,
[dir="rtl"] .about-text,
[dir="rtl"] .about-text h2,
[dir="rtl"] .lunch-text{text-align:right}

.primary-nav .nav-social{display:flex;gap:14px;margin-left:14px}
.primary-nav .nav-social a{
  display:inline-flex;align-items:center;justify-content:center;
  width:30px;height:30px;
  background:var(--gold-2);
  color:var(--bg-alt);
  border-radius:999px;
  font-size:14px;
  padding:0;
}
.primary-nav .nav-social a:hover{background:#fff;color:var(--bg-alt)}

.menu-toggle{
  display:none;width:46px;height:46px;border:0;background:transparent;cursor:pointer;
  flex-direction:column;justify-content:center;align-items:center;gap:5px;
}
.menu-toggle span{display:block;width:26px;height:3px;background:var(--gold-2);border-radius:2px;transition:transform .25s ease, opacity .2s ease}
.menu-toggle.is-active span:nth-child(1){transform:translateY(8px) rotate(45deg)}
.menu-toggle.is-active span:nth-child(2){opacity:0}
.menu-toggle.is-active span:nth-child(3){transform:translateY(-8px) rotate(-45deg)}

/* ========== HERO ========== */
.hero{
  position:relative;
  min-height:650px;
  display:flex;align-items:center;
  overflow:hidden;color:#fff;
}
.hero-bg{
  position:absolute;inset:0;
  background-image:url('../img/hero.webp');
  background-image:image-set(
    url('../img/hero-800.webp') 1x,
    url('../img/hero-1280.webp') 1.6x,
    url('../img/hero.webp') 2.4x);
  background-size:cover;background-position:center;
}
.hero-overlay{
  position:absolute;inset:0;
  background:linear-gradient(180deg,rgba(0,0,0,.75) 0%,rgba(0,0,0,.85) 100%);
}
.hero-plate{
  position:absolute;
  right:4%;
  top:56%;
  transform:translateY(-50%);
  width:34vw;
  max-width:480px;
  z-index:1;
  pointer-events:none;
  filter:drop-shadow(0 30px 60px rgba(0,0,0,.45));
}
.hero-plate img{
  width:100%;height:auto;display:block;
  animation:spinPlate 140s linear infinite;
  transform-origin:center center;
}
@keyframes spinPlate{
  from{transform:rotate(0deg)}
  to{transform:rotate(360deg)}
}
@media (prefers-reduced-motion:reduce){
  .hero-plate img{animation:none}
}
@media (max-width:1023px){
  .hero-plate{display:none}
}
.hero-content{
  position:relative;z-index:2;
  width:100%;
  max-width:var(--container);
  margin:0 auto;
  padding:170px 30px 80px;
  text-align:left;
}
.hero-content > *{max-width:640px}
.hero h1{
  font-family:var(--font-display);
  color:var(--gold);
  font-weight:700;
  font-size:clamp(42px,6.2vw,76px);
  line-height:1.05;
  letter-spacing:.5px;
  margin:0 0 22px;
  text-shadow:0 4px 30px rgba(0,0,0,.45);
}
.hero-sub{
  font-size:clamp(18px,1.6vw,22px);
  color:#fff;
  margin:0 0 36px;
  max-width:520px;
  line-height:1.5;
  text-align:left;
  text-shadow:0 2px 14px rgba(0,0,0,.5);
}

/* ========== BUTTONS ========== */
.btn{
  display:inline-block;
  font-family:var(--font-display);
  font-weight:500;font-size:15px;
  padding:15px 50px;
  border-radius:0;
  border:0;
  cursor:pointer;
  transition:transform .2s ease, background .2s ease, color .2s ease;
  text-decoration:none;
  line-height:1.4;
}
.btn-primary{background:var(--gold);color:var(--bg-alt)}
.btn-primary:hover{background:#fff;color:var(--bg-alt);transform:translateY(-2px)}
.btn-danger{background:var(--bg-alt);color:#fff}
.btn-danger:hover{background:var(--bg-alt-dark);color:#fff;transform:translateY(-2px)}

/* ========== SEKCJE: TLA Z MANDALĄ ========== */
.section-cream,
.section-red{
  position:relative;
  padding:120px 0 60px;
}
.section-cream{background-color:#fef9e6 !important}
.section-red{background-color:#a80b36 !important;color:#fff}
.section-red p{color:#fff}

.section-cream::before,
.section-red::before{
  content:"";
  position:absolute;
  inset:0;
  background:url('../img/mandala.webp') center center / 850px no-repeat;
  opacity:.45;
  pointer-events:none;
  z-index:0;
}
.section-cream > .container,
.section-red > .container{position:relative;z-index:1}

@media (max-width:820px){
  .section-cream,.section-red{padding-top:60px;padding-bottom:50px}
  .section-cream::before,.section-red::before{background-size:500px}
}

h2,h3{
  font-family:var(--font-display);
  font-weight:700;
  color:var(--bg-alt);
  font-size:42px;
  line-height:42px;
  padding-bottom:30px;
  margin:0;
}
h2{max-width:360px}
h3{max-width:100%;text-align:center}

/* ========== ABOUT (2x text+image naprzemiennie) ========== */
.about-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:60px;
  align-items:center;
}
.about-grid--reverse{padding-top:90px}
.about-grid--reverse .about-image{order:2}
.about-image{text-align:center}
.about-image img{display:inline-block;max-width:100%;height:auto}
.about-text h2{text-align:left}
.about-text p{color:var(--text);font-size:16px;line-height:1.75;margin-bottom:1em}
.about-text .btn{margin-top:14px}

/* ========== PARALLAX PHOTO ========== */
.parallax{height:600px;position:relative;overflow:hidden}
.parallax-bg{
  position:absolute;inset:-10% 0;
  background-image:url('../img/food-india.webp');
  background-size:cover;background-position:center;
  background-attachment:fixed;
}
@media (max-width:820px){
  .parallax-bg{background-attachment:scroll}
  .parallax{height:300px}
}

/* ========== MENU (PDF) ========== */
.menu-info{max-width:400px;margin:0 auto;text-align:center}
.menu-card{
  display:inline-block;margin:32px 0 24px;padding:0;
  max-width:470px;
}
.menu-card img{max-width:470px;width:100%;height:auto;transition:transform .3s ease}
.menu-card:hover img{transform:scale(1.05)}

/* ========== LUNCH (CZERWONE TŁO) ========== */
.section-red h3{color:var(--gold)}
.section-red .menu-info{color:#fff}

.lunch-grid{
  display:grid;grid-template-columns:1fr 1fr;
  gap:40px;align-items:center;
}
.lunch-text{text-align:center}
.lunch-text h3{color:var(--gold);text-align:center;max-width:100%}
.lunch-text p{color:#fff;font-size:16px;line-height:1.7;max-width:400px;margin:0 auto 1em}
.lunch-hours{
  font-family:var(--font-display);
  font-size:27px!important;
  line-height:28px!important;
  max-width:400px!important;
  margin:1em auto!important;
  color:#fff;
}
.lunch-small{font-size:12px;line-height:13px;max-width:400px;margin:0 auto 1em;color:#fff}
.lunch-image{text-align:center}
.lunch-image img{max-width:670px;width:100%;margin-top:40px}

.lunch-week{
  list-style:none;
  padding:0;
  margin:60px 0 0;
  display:grid;grid-template-columns:repeat(5,1fr);
  gap:20px;
}
.lunch-week li{
  text-align:center;
  color:#fff;
  position:relative;
  padding-bottom:30px;
}
.lunch-week li p{margin:0 0 .6em;color:#fff;font-size:15px;line-height:1.5}
.lunch-week li > p:first-child strong{
  color:var(--gold);
  font-size:21px;
  font-family:var(--font-display);
  display:block;
  margin-bottom:14px;
}
.lunch-week em{
  opacity:.6;
  font-size:12px;
  font-style:normal;
  display:block;
  line-height:1;
  margin:6px 0;
}
.lunch-week .fa-leaf{
  background:#5c8c46;
  color:#fff;
  width:20px;height:20px;
  border-radius:999px;
  font-size:12px;
  line-height:19px;
  display:inline-block;
  margin-left:6px;
  vertical-align:middle;
}
.lunch-week .naan{
  background:var(--gold);
  color:var(--bg-alt);
  text-align:center;
  font-size:12px;
  width:fit-content;
  margin:0 auto;
  padding:4px 15px;
  margin-top:8px;
  font-weight:600;
}

/* ========== KONTAKT ========== */
.section-contact{padding:120px 0 60px}
.section-contact .lead{
  max-width:780px;margin:0 auto 30px;font-size:16px;
}
.contact-hours{
  font-family:var(--font-display);
  font-size:20px;line-height:1.7;margin:30px 0 24px;
  color:var(--text);
}
.contact-phones{
  font-family:var(--font-display);
  font-size:27px;line-height:28px;
  margin:24px auto;
  max-width:400px;
  color:var(--bg-alt);
}
.contact-phones a{color:var(--bg-alt);display:block}
.contact-phones a:hover{color:var(--bg-alt-dark)}
.contact-address{
  font-style:normal;
  font-size:18px;
  max-width:400px;
  margin:14px auto 24px;
  color:var(--text);
}
.kontakt-img{margin:48px auto 0;text-align:center}
.kontakt-img img{max-width:470px;width:100%;height:auto;display:inline-block}

/* ========== FOOTER ========== */
.site-footer{
  background:var(--bg-alt);
  color:#fff;
  padding:30px 0;
  font-size:15px;
}
.footer-inner{
  display:flex;
  flex-wrap:wrap;
  align-items:center;
}
.footer-logo-wrap{width:10%}
.footer-logo-wrap img{max-height:46px;height:auto;width:auto}
.footer-copyright{
  width:90%;
  text-align:right;
  font-size:13px;
  color:var(--bg-color);
  padding-top:10px;
  box-sizing:border-box;
}

/* ========== RESPONSIVE ========== */
@media (max-width:1023px){
  .menu-toggle{display:flex;position:relative;z-index:60}
  .logo{position:relative;z-index:60}

  .primary-nav{
    position:fixed;inset:0;
    background:linear-gradient(160deg,var(--bg-alt) 0%,var(--bg-alt-dark) 100%);
    display:flex;align-items:center;justify-content:center;
    opacity:0;visibility:hidden;transform:translateY(-12px);
    transition:opacity .3s ease,transform .35s ease,visibility 0s linear .3s;
    z-index:55;
  }
  .primary-nav.is-open{
    opacity:1;visibility:visible;transform:translateY(0);
    transition:opacity .3s ease,transform .35s ease,visibility 0s linear 0s;
  }
  .primary-nav > ul{flex-direction:column;gap:14px;padding:0;width:100%}
  .primary-nav li{
    width:100%;text-align:center;opacity:0;transform:translateY(14px);
    transition:opacity .35s ease,transform .35s ease;
  }
  .primary-nav.is-open li{opacity:1;transform:translateY(0)}
  .primary-nav.is-open li:nth-child(1){transition-delay:.08s}
  .primary-nav.is-open li:nth-child(2){transition-delay:.14s}
  .primary-nav.is-open li:nth-child(3){transition-delay:.20s}
  .primary-nav.is-open li:nth-child(4){transition-delay:.26s}
  .primary-nav.is-open li:nth-child(5){transition-delay:.32s}
  .primary-nav a{font-size:26px;padding:10px}
  .primary-nav .nav-social{justify-content:center;margin:14px 0 0}
  .primary-nav .nav-social a{width:40px;height:40px;font-size:18px}

  .lang-trigger{font-size:16px;padding:10px 18px}
  .lang-menu{
    position:fixed;left:50%;top:50%;right:auto;
    transform:translate(-50%,-50%);
    min-width:240px;max-height:70vh;overflow-y:auto;
  }

  body.nav-open{overflow:hidden}

  .about-grid,.lunch-grid{grid-template-columns:1fr;gap:30px}
  .about-grid--reverse .about-image{order:0}
  .about-grid--reverse{padding-top:60px}
  .about-text h2,.lunch-text h3{text-align:center}
  .about-text{text-align:center}
  .about-text h2{max-width:100%;margin-left:auto;margin-right:auto}

  .lunch-week{grid-template-columns:repeat(2,1fr);gap:30px}

  .lunch-image img{margin-top:0;max-width:100%}

  .footer-inner{justify-content:center}
  .footer-logo-wrap,.footer-copyright{width:100%;text-align:center;display:flex;justify-content:center}
  .footer-logo-wrap img{margin:0 auto;display:block}
  .footer-copyright{display:block;padding-top:16px}

  h2,h3{font-size:32px;line-height:32px;padding-bottom:20px;text-align:center;max-width:100%}
}

@media (max-width:600px){
  .site-header{padding:14px 0}
  .logo img{height:46px}
  .hero{min-height:600px}
  .lunch-week{grid-template-columns:1fr}
  .kontakt-img img{max-width:100%}
}
