/*
  Bruno's Butcher – simple landing page
  - No external fonts, no tracking scripts, no cookies.
  - Colors are derived from the provided logo/label.
*/

:root{
  --bg: #0b0b0b;
  --surface: rgba(255,255,255,0.06);
  --surface-strong: rgba(255,255,255,0.10);
  --text: rgba(255,255,255,0.92);
  --muted: rgba(255,255,255,0.72);

  --accent: #f6b100;   /* warm yellow */
  --accent-2: #c74a11; /* burnt orange */
  --brand-red: #9b2c1f;
  --brand-brown: #5b1f12;

  --radius: 16px;
  --shadow: 0 16px 50px rgba(0,0,0,0.45);
  --max: 1100px;
}

*{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }

body{
  margin: 0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, Noto Sans, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
  color: var(--text);
  background: var(--bg);
  line-height: 1.5;
}

a{ color: inherit; text-decoration: none; }
a:hover{ text-decoration: underline; }

.container{
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

.skip{
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--accent);
  color: #000;
  padding: .75rem 1rem;
  border-radius: 999px;
  z-index: 9999;
}
.skip:focus{ left: 1rem; top: 1rem; }

/* Header */
.site-header{
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(11,11,11,0.72);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.header-inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .75rem 0;
  gap: 1rem;
}

.brand{
  display: flex;
  align-items: center;
  gap: .75rem;
  min-width: 200px;
}

.brand img{
  width: 52px;
  height: 52px;
  object-fit: contain;
}

.brand .title{
  display: flex;
  flex-direction: column;
}

.brand .title strong{
  letter-spacing: .4px;
  line-height: 1.1;
}

.brand .title span{
  color: var(--muted);
  font-size: .9rem;
}

.nav{
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.nav a{
  color: rgba(255,255,255,0.88);
  font-weight: 600;
  letter-spacing: .2px;
}

.nav a:hover{ color: #fff; }

.nav a.cta{
  background: linear-gradient(90deg, var(--accent), #ffcc33);
  color: #141414;
  padding: .45rem .8rem;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,0.35);
}

.nav a.cta:hover{
  text-decoration: none;
  filter: brightness(1.02);
}

.menu-btn{
  display: none;
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.04);
  color: #fff;
  padding: .6rem .75rem;
  border-radius: 12px;
}

/* Hero */
.hero{
  position: relative;
  min-height: 70vh;
  display: grid;
  place-items: center;
  overflow: hidden;
  /* Create a local stacking context so the background/overlay
     stay behind the clickable content. */
  isolation: isolate;
}

.hero::before{
  content: "";
  position: absolute;
  inset: 0;
  background-image: url('assets/hintergrund.png');
  background-size: cover;
  background-position: center;
  filter: saturate(1.05) contrast(1.05);
  transform: scale(1.02);
  z-index: 0;
  pointer-events: none;
}

.hero::after{
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.65), rgba(0,0,0,0.75) 40%, rgba(0,0,0,0.8));
  z-index: 1;
  pointer-events: none;
}

.hero-inner{
  position: relative;
  padding: 4rem 0 3rem;
  z-index: 2;
}

.hero-card{
  background: rgba(0,0,0,0.55);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.75rem;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 1.5rem;
  align-items: center;
}

.hero-card img{
  width: 100%;
  max-width: 380px;
  height: auto;
  object-fit: contain;
  margin-inline: auto;
  display: block;
}

.kicker{
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .35rem .6rem;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.86);
  font-weight: 700;
  font-size: .9rem;
}

.kicker .dot{
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(246,177,0,0.18);
}

h1{
  margin: .9rem 0 .7rem;
  font-size: clamp(2rem, 4vw, 3.1rem);
  line-height: 1.05;
  letter-spacing: .3px;
}

.hero p{
  margin: 0 0 1.25rem;
  color: rgba(255,255,255,0.82);
  font-size: 1.05rem;
}

.cta-row{
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
}

.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .85rem 1rem;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.06);
  color: #fff;
  font-weight: 700;
  text-decoration: none;
}

.btn:hover{ text-decoration: none; background: rgba(255,255,255,0.10); }

.btn.primary{
  background: linear-gradient(90deg, var(--accent), #ffcc33);
  border-color: rgba(0,0,0,0.35);
  color: #141414;
}

.btn.primary:hover{ filter: brightness(1.02); }

.note{
  margin-top: 1rem;
  color: rgba(255,255,255,0.68);
  font-size: .95rem;
}

/* Sections */
.section{
  padding: 3.5rem 0;
}

.section h2{
  font-size: clamp(1.6rem, 2.6vw, 2.1rem);
  margin: 0 0 1rem;
}

.section .lead{
  color: var(--muted);
  max-width: 72ch;
  margin: 0 0 2rem;
}

.grid{
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1.25rem;
}

.card{
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.12);
  background: var(--surface);
  padding: 1.25rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
}

.card strong{ color: #fff; }

.card p{ color: var(--muted); }

.badge{
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .25rem .55rem;
  border-radius: 999px;
  background: rgba(246,177,0,0.18);
  border: 1px solid rgba(246,177,0,0.45);
  color: rgba(255,255,255,0.92);
  font-weight: 700;
  font-size: .85rem;
}

/* Product */
.product{
  grid-column: span 12;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  align-items: start;
}

.product .preview{
  border-radius: 14px;
  overflow: hidden;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
}

.product .preview img{
  display: block;
  width: 100%;
  height: auto;
}

.list{
  margin: .6rem 0 0;
  padding-left: 1.2rem;
  color: var(--muted);
}

.list li{ margin: .35rem 0; }

/* Contact */
.contact{
  grid-column: span 12;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.kv{
  display: grid;
  gap: .45rem;
}

.kv span{ color: var(--muted); }

.kv a{ color: #fff; font-weight: 700; }

.social{
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
  margin-top: .75rem;
}

.pill{
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .6rem .75rem;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.06);
}

.pill:hover{ background: rgba(255,255,255,0.10); text-decoration: none; }

/* Footer */
.footer{
  border-top: 1px solid rgba(255,255,255,0.10);
  padding: 2rem 0;
  color: var(--muted);
}

.footer .row{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.footer a{ color: rgba(255,255,255,0.86); font-weight: 700; }

.small{ font-size: .92rem; }

/* Legal page */
.legal{
  padding: 2.75rem 0 3.5rem;
}

.legal h1{ font-size: clamp(1.9rem, 3vw, 2.5rem); }

.legal h2{ margin-top: 2rem; }

.legal p, .legal li{ color: var(--muted); }

.legal code{
  background: rgba(255,255,255,0.08);
  padding: .15rem .35rem;
  border-radius: 8px;
}

/* Responsive */
@media (max-width: 900px){
  .hero-card{ grid-template-columns: 1fr; text-align: center; }
  .cta-row{ justify-content: center; }
  .product{ grid-template-columns: 1fr; }
  .contact{ grid-template-columns: 1fr; }
  .brand{ min-width: unset; }
}

@media (max-width: 760px){
  .menu-btn{ display: inline-flex; }
  .nav{
    position: absolute;
    right: 1rem;
    top: 74px;
    flex-direction: column;
    align-items: stretch;
    width: min(92vw, 320px);
    padding: .75rem;
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.14);
    background: rgba(12,12,12,0.95);
    box-shadow: var(--shadow);
    display: none;
  }
  .nav.open{ display: flex; }
  .nav a{ padding: .65rem .75rem; border-radius: 12px; }
  .nav a:hover{ background: rgba(255,255,255,0.06); text-decoration: none; }
}
