*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --black: #0a0a0a;
  --white: #ffffff;
  --off-white: #ffffff;
  --red: #e63323;
  --dark: #111111;
  --gray: #888;
  --text: #2a2a2a;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Poppins', sans-serif;
  font-weight: 300;
  color: var(--text);
  line-height: 1.8;
  font-size: 16px;
  background: var(--off-white);
  overflow-x: hidden;
}

a { color: inherit; transition: color 0.3s; }
a:hover { color: var(--red); }

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

/* Utility */
.container { max-width: 1300px; margin: 0 auto; padding: 0 60px; }
.accent { color: var(--red); }

/* Fade-in animation */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── HEADER ─── */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 24px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.4s, padding 0.4s, box-shadow 0.4s;
}

header.scrolled {
  background: var(--off-white);
  backdrop-filter: blur(12px);
  padding: 16px 60px;
  box-shadow: 0 1px 0 rgba(0,0,0,0.06);
}

.logo img { height: 56px; transition: height 0.4s; }
header.scrolled .logo img { height: 44px; }

nav { display: flex; gap: 32px; align-items: center; }

nav a {
  text-decoration: none;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--black);
  position: relative;
}

nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--red);
  transition: width 0.3s;
}

nav a:hover::after { width: 100%; }
nav a:hover { color: var(--black); }

nav .ig-link { display: flex; align-items: center; }
nav .ig-link svg { width: 18px; height: 18px; transition: transform 0.3s; }
nav .ig-link:hover svg { transform: scale(1.15); }
nav .ig-link::after { display: none; }

.hamburger {
  display: none;
  background: none;
  border: none;
  font-size: 28px;
  cursor: pointer;
  color: var(--black);
}

/* ─── HERO (index) ─── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 100px;
}

.hero-tagline {
  text-align: center;
  padding: 0 0 50px;
  font-family: 'Permanent Marker', cursive;
  font-size: 48px;
  color: var(--black);
  letter-spacing: 2px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: center;
}

.hero-image {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.hero-image:hover img { transform: scale(1.03); }

.hero-text p {
  font-size: 16px;
  margin-bottom: 24px;
  font-weight: 300;
}

.hero-text p:first-child { font-size: 18px; font-weight: 400; }

/* ─── PAGE HEADER ─── */
.page-header {
  padding: 160px 0 60px;
}

.page-header h1 {
  font-family: 'Permanent Marker', cursive;
  font-size: 56px;
  font-weight: 400;
  text-transform: uppercase;
  line-height: 1.1;
}

/* ─── VALUES ─── */
.values-section { padding: 0 0 120px; }

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
}

.value-card {
  padding: 40px 0;
  border-top: 2px solid var(--red);
}

.value-card h3 {
  font-family: 'Permanent Marker', cursive;
  font-size: 28px;
  font-weight: 400;
  color: var(--red);
  margin-bottom: 20px;
  text-transform: uppercase;
}

.value-card p {
  font-size: 15px;
  font-weight: 300;
}

.value-card p em { font-style: italic; }

/* ─── LOCATIONS ─── */
.location-section { padding: 0 0 120px; }

.location-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}

.location-info { padding-top: 20px; }

.location-block { margin-bottom: 36px; }

.location-block h3 {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 12px;
}

.location-block p {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.8;
}

.location-image {
  border-radius: 8px;
  overflow: hidden;
}

.location-image img {
  width: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.location-image:hover img { transform: scale(1.03); }

/* ─── POP-UP ─── */
.popup-section {
  padding: 60px 0 120px;
}

.popup-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: center;
}

.popup-image {
  border-radius: 8px;
  overflow: hidden;
}

.popup-image img {
  width: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.popup-image:hover img { transform: scale(1.03); }

.popup-text h1 {
  font-family: 'Permanent Marker', cursive;
  font-size: 36px;
  font-weight: 400;
  text-transform: uppercase;
  margin-bottom: 30px;
  line-height: 1.2;
}

.popup-text p {
  font-size: 15px;
  font-weight: 300;
  margin-bottom: 18px;
}

/* ─── IMPRESSUM (two-column) ─── */
.impressum-layout {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  align-items: start;
  padding: 0 0 120px;
}

.impressum-layout h1 {
  font-family: 'Permanent Marker', cursive;
  font-size: 40px;
  font-weight: 400;
  text-transform: uppercase;


}

.impressum-content h2 {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-top: 40px;
  margin-bottom: 12px;
  color: var(--red);
}

.impressum-content h2:first-child { margin-top: 0; }

.impressum-content p {
  font-size: 15px;
  font-weight: 300;
  margin-bottom: 14px;
}

/* ─── LEGAL PAGES (AGB, Datenschutz) ─── */
.legal-content {
  max-width: 780px;
  margin: 0 auto;
  padding: 0 0 120px;
}

.legal-content h1 {
  font-family: 'Permanent Marker', cursive;
  font-size: 40px;
  font-weight: 400;
  text-transform: uppercase;
  margin-bottom: 50px;
}

.legal-content h2 {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-top: 40px;
  margin-bottom: 12px;
  color: var(--red);
}

.legal-content p {
  font-size: 15px;
  font-weight: 300;
  margin-bottom: 14px;
}

.legal-content ul {
  margin-left: 20px;
  margin-bottom: 14px;
}

.legal-content li {
  font-size: 15px;
  font-weight: 300;
  margin-bottom: 4px;
}

/* ─── CART ─── */
.cart-empty {
  text-align: center;
  padding: 80px 0 120px;
}

.cart-empty h1 {
  font-size: 28px;
  font-weight: 400;
  margin-bottom: 16px;
}

.cart-empty a {
  display: inline-block;
  margin-top: 20px;
  padding: 14px 40px;
  background: var(--black);
  color: var(--white);
  text-decoration: none;
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  font-weight: 400;
  border-radius: 4px;
  transition: background 0.3s;
}

.cart-empty a:hover { background: var(--red); color: var(--white); }

/* ─── FOOTER ─── */
footer {
  background: var(--black);
  color: var(--white);
  padding: 80px 60px 60px;
}

.footer-inner {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 60px;
}

.footer-cta p {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(255,255,255,0.7);
}

.footer-cta a {
  color: var(--white);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer-cta a:hover { color: var(--red); }

.footer-links h4 {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 20px;
}

.footer-links a {
  display: block;
  text-decoration: none;
  font-size: 14px;
  font-weight: 300;
  margin-bottom: 10px;
  color: rgba(255,255,255,0.7);
}

.footer-links a:hover { color: var(--white); }

.footer-bottom {
  max-width: 1300px;
  margin: 60px auto 0;
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 12px;
  color: rgba(255,255,255,0.3);
  font-weight: 300;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  header { padding: 16px 24px; }
  header.scrolled { padding: 12px 24px; }
  .container { padding: 0 24px; }
  footer { padding: 60px 24px 40px; }

  .hamburger { display: block; }

  nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(248, 247, 244, 0.98);
    backdrop-filter: blur(12px);
    flex-direction: column;
    padding: 30px;
    gap: 20px;
  }

  nav.open { display: flex; }

  .hero { min-height: auto; padding-top: 120px; padding-bottom: 60px; }
  .hero-tagline { font-size: 32px; }
  .hero-grid,
  .location-grid,
  .popup-grid,
  .impressum-layout { grid-template-columns: 1fr; gap: 40px; }
  .values-grid { grid-template-columns: 1fr; gap: 0; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .page-header { padding: 120px 0 40px; }
  .page-header h1 { font-size: 36px; }
}
