/* BUV'S Landing Page
   كل عنصر في الهيرو صورة منفصلة (PNG) مع تموضع عبر CSS
*/
:root{
  --bg: #DB1619; /* قريب من خلفية الصورة */
  --ink: #0e0f12;
  --paper: #ffffff;
  --muted: rgba(255,255,255,.84);
  --card: rgba(255,255,255,.12);
  --stroke: rgba(255,255,255,.18);
  --shadow: 0 18px 50px rgba(0,0,0,.18);
  --radius: 22px;
  --container: 1100px;
}

*{ box-sizing:border-box; }
html,body{ height:100%; }
body{
  margin:0;
  font-family: "Tajawal", system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
  background: var(--bg);
  color: #fff;
  overflow-x:hidden;
}

/* Utilities */
.container{
  width:min(var(--container), calc(100% - 40px));
  margin-inline:auto;
}

a{ color:inherit; text-decoration:none; }
a:hover{ opacity:.92; }

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 12px 18px;
  border-radius: 999px;
  background:#fff;
  color: var(--ink);
  font-weight:800;
  border: 1px solid transparent;
  box-shadow: 0 10px 30px rgba(0,0,0,.18);
  transition: transform .15s ease, box-shadow .15s ease, opacity .15s ease;
}
.btn:hover{ transform: translateY(-1px); box-shadow: 0 14px 38px rgba(0,0,0,.22); }
.btn:active{ transform: translateY(0px); box-shadow: 0 10px 30px rgba(0,0,0,.18); }

.btn--ghost{
  background: transparent;
  color:#fff;
  border-color: rgba(255,255,255,.5);
  box-shadow:none;
}
.btn--ghost:hover{ background: rgba(255,255,255,.08); }

.btn--dark{
  background: #0e0f12;
  color: #fff;
  box-shadow: 0 14px 40px rgba(0,0,0,.35);
}

/* Header */
.header{
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(10px);
  background: linear-gradient(to bottom, rgba(219,22,25,.85), rgba(219,22,25,.55));
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.header__inner{
  height: 74px;
  display:flex;
  align-items:center;
  gap: 14px;
}
.brand{ display:flex; align-items:center; }
.brand__logo{ height: 30px; width:auto; filter: drop-shadow(0 8px 18px rgba(0,0,0,.18)); }

.nav{
  margin-inline-start:auto;
  display:flex;
  gap: 14px;
  align-items:center;
  padding-inline: 12px;
}
.nav a{
  opacity:.95;
  font-weight:700;
  padding: 10px 10px;
  border-radius: 999px;
}
.nav a:hover{ background: rgba(255,255,255,.08); }

@media (max-width: 860px){
  .nav{ display:none; }
}

/* Hero */
.hero{
  padding: 44px 0 28px;
}
.hero__grid{
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  align-items:center;
  gap: 28px;
}
.hero__copy h1{
  margin:0 0 12px;
  font-size: clamp(34px, 3.2vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.01em;
}
.hero__copy p{
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
  max-width: 52ch;
}
.hero__actions{
  display:flex;
  gap: 12px;
  flex-wrap:wrap;
  margin-bottom: 18px;
}
.hero__stats{
  display:flex;
  gap: 12px;
  flex-wrap:wrap;
}
.stat{
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.09);
  border: 1px solid rgba(255,255,255,.16);
}
.stat__num{
  font-weight:900;
  font-size: 16px;
}
.stat__label{
  opacity:.88;
  font-weight:700;
  font-size: 12px;
}

.hero__visual{
  display:flex;
  justify-content:center;
}

/* Stage where each element is its own image */
.stage{
  position:relative;
  width: min(520px, 100%);
  aspect-ratio: 1 / 1;
  border-radius: var(--radius);
  /* subtle "fabric" feel without using background image */
  background:
    radial-gradient(1200px 600px at 50% 10%, rgba(255,255,255,.10), transparent 55%),
    radial-gradient(900px 500px at 50% 75%, rgba(0,0,0,.18), transparent 55%),
    rgba(255,255,255,.02);
  border: 1px solid rgba(255,255,255,.14);
  overflow: visible;
}

.item{
  position:absolute;
  width: auto;
  height: auto;
  max-width: none;
  user-select:none;
  pointer-events:none;
  filter: drop-shadow(0 20px 28px rgba(0,0,0,.22));
}

/* Donuts (top) */
.donut--left{
  width: clamp(120px, 22vw, 165px);
  left: 4%;
  top: 6%;
  transform: rotate(-6deg);
}
.donut--mid{
  width: clamp(150px, 25vw, 190px);
  left: 44%;
  top: 10%;
  transform: translateX(-50%) rotate(2deg);
}
.donut--right{
  width: clamp(135px, 23vw, 175px);
  right: 2%;
  top: 5%;
  transform: rotate(7deg);
}

/* Cups (bottom) */
.cup--left{
  width: clamp(210px, 32vw, 285px);
  left: 10%;
  bottom: -2%;
  transform: rotate(-9deg);
  z-index: 2;
}
.cup--right{
  width: clamp(220px, 34vw, 305px);
  right: 2%;
  bottom: -6%;
  transform: rotate(6deg);
  z-index: 3;
}

@media (max-width: 980px){
  .hero__grid{
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .hero__visual{ order: -1; }
  .stage{ width: min(560px, 100%); }
}

/* Sections */
.section{
  padding: 44px 0;
}
.section--muted{
  background: rgba(0,0,0,.10);
  border-top: 1px solid rgba(255,255,255,.12);
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.section__head{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap: 18px;
  margin-bottom: 18px;
}
.section__head h2{
  margin:0;
  font-size: clamp(22px, 2.2vw, 34px);
}
.section__head p{
  margin:0;
  opacity:.9;
}

.cards{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.card{
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--radius);
  padding: 18px 18px 16px;
  box-shadow: var(--shadow);
}
.card h3{ margin:0 0 8px; font-size: 20px; }
.card p{ margin:0 0 12px; opacity:.9; line-height:1.7; }
.card__meta{ font-weight:700; opacity:.9; font-size: 13px; }

.features{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.feature{
  padding: 18px;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.08);
}
.feature h3{ margin:0 0 6px; }
.feature p{ margin:0; opacity:.9; line-height:1.7; }

.locations{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.location{
  padding: 16px 18px;
  border-radius: var(--radius);
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.14);
}
.location__name{ font-weight:900; font-size: 18px; }
.location__meta{ opacity:.9; margin-top: 6px; }

@media (max-width: 860px){
  .cards, .features, .locations{ grid-template-columns: 1fr; }
  .section__head{ flex-direction: column; align-items:flex-start; }
}

/* CTA */
.section--cta{
  padding: 54px 0 62px;
}
.cta{
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: calc(var(--radius) + 6px);
  padding: 26px;
  box-shadow: var(--shadow);
}
.cta h2{ margin:0 0 8px; }
.cta p{ margin:0 0 16px; opacity:.9; line-height:1.8; }
.cta__note{ margin-top: 12px; opacity:.9; font-weight:700; }

/* Footer */
.footer{
  border-top: 1px solid rgba(255,255,255,.12);
  padding: 22px 0 26px;
  background: rgba(0,0,0,.08);
}
.footer__inner{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap: 14px;
}
.footer__logo{ height: 26px; width:auto; opacity:.95; }
.footer__copy{ opacity:.9; font-weight:700; margin-top: 6px; }
.footer__links{
  display:flex;
  gap: 12px;
}
.footer__links a{
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.06);
}
.footer__links a:hover{ background: rgba(255,255,255,.10); }

@media (max-width: 700px){
  .footer__inner{ flex-direction: column; align-items:flex-start; }
}


/* Menu */
.menuCards{ align-items: start; }
.menuCard h3{
  display:flex;
  justify-content:space-between;
  gap:10px;
  margin-bottom: 12px;
}
.menuList{
  list-style:none;
  padding:0;
  margin:0;
  display:flex;
  flex-direction:column;
  gap: 10px;
}
.menuList li{
  display:flex;
  align-items: baseline;
  gap: 10px;
  line-height: 1.35;
}
.menuItem{
  font-weight:700;
}
.menuItem small{
  display:block;
  font-weight:500;
  opacity:.85;
  margin-top: 2px;
  font-size: 12px;
}
.leader{
  flex: 1;
  border-bottom: 2px dotted rgba(255,255,255,.38);
  transform: translateY(-2px);
}
.menuPrice{
  font-weight:800;
  white-space:nowrap;
}
.menuDivider{
  height:1px;
  background: rgba(255,255,255,.22);
  margin: 14px 0;
}
.menuNote{
  margin-top: 12px;
  font-weight:700;
  opacity:.92;
  font-size: 13px;
}
.menuHint{
  margin-top: 14px;
  padding: 12px 12px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.08);
  font-weight:600;
  line-height:1.6;
  opacity:.95;
}

/* Responsive tweaks for long menu lines */
@media (max-width: 860px){
  .menuItem{ font-weight:800; }
  .leader{ border-bottom-width: 1px; }
}


/* Bilingual menu rows */
.menuRow{
  display:flex;
  gap:14px;
  align-items:flex-start;
  padding:10px 0;
}
.menuRow + .menuRow{ border-top: 1px dashed rgba(255,255,255,.18); }

.menuName{ flex:1; min-width:0; }
.menuName .en{
  direction:ltr;
  text-align:left;
  font-weight:900;
  letter-spacing:.2px;
}
.menuName .ar{
  text-align:right;
  font-weight:900;
}
.menuName small{
  display:block;
  font-size:12px;
  font-weight:700;
  opacity:.85;
  margin-top:2px;
}

.menuCard h3 span:first-child{ direction:ltr; text-align:left; }
.menuCard h3 span:last-child{ text-align:right; }

.menuPrice{
  direction:ltr;
  text-align:left;
  white-space:nowrap;
  font-weight:950;
  opacity:.98;
  padding-top:2px;
}

@media (max-width: 720px){
  .menuRow{
    flex-direction:column;
    gap:8px;
  }
  .menuPrice{
    align-self:flex-start;
  }
}
