/* =========================================================
   STEAK HOUSE ARIZONA – Argentine/Western Theme
   ========================================================= */

/* ----- Design Tokens ----- */
:root {
  --bg:          #1c0f07;
  --surface:     #2d1a0e;
  --surface2:    #3a220f;
  --accent:      #c17f24;
  --accent-dark: #8b5a12;
  --red:         #8b3a0f;
  --text:        #f5e6d0;
  --text-muted:  #a08060;
  --border:      rgba(193,127,36,.25);

  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body:    'Open Sans', Arial, sans-serif;

  --radius:   6px;
  --shadow:   0 4px 24px rgba(0,0,0,.45);
  --transition: .25s ease;
}

/* ----- Reset & Base ----- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a  { color: var(--accent); text-decoration: none; }
a:hover { color: var(--text); }
address { font-style: normal; }

/* ----- Scrollbar ----- */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--surface); }
::-webkit-scrollbar-thumb { background: var(--accent-dark); border-radius: 4px; }

/* =========================================================
   TYPOGRAPHY
   ========================================================= */
h1, h2, h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
}
h1 { font-size: clamp(2.6rem, 6vw, 5rem); }
h2 { font-size: clamp(1.8rem, 4vw, 3rem); }
h3 { font-size: 1.25rem; font-weight: 600; }

/* =========================================================
   LAYOUT HELPERS
   ========================================================= */
.container {
  width: min(1140px, 92vw);
  margin-inline: auto;
}

.section {
  padding-block: 96px 80px;
}

.dark-section {
  background: var(--surface);
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-eyebrow {
  font-family: var(--font-body);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

.section-title {
  margin-bottom: 20px;
  color: var(--text);
}

.section-intro {
  max-width: 680px;
  margin-inline: auto;
  color: var(--text-muted);
  font-size: 1.05rem;
}

/* =========================================================
   BUTTONS
   ========================================================= */
.btn {
  display: inline-block;
  padding: .75em 2em;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: .9rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all var(--transition);
  border: 2px solid transparent;
}

.btn-primary {
  background: var(--accent);
  color: var(--bg);
  border-color: var(--accent);
}
.btn-primary:hover {
  background: #d99030;
  border-color: #d99030;
  color: var(--bg);
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border-color: var(--text);
}
.btn-outline:hover {
  background: var(--text);
  color: var(--bg);
}

/* =========================================================
   NAVBAR
   ========================================================= */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: transparent;
  transition: background var(--transition), box-shadow var(--transition);
}

.navbar.scrolled {
  background: rgba(28,15,7,.97);
  box-shadow: 0 2px 20px rgba(0,0,0,.5);
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 5vw;
  max-width: 1200px;
  margin-inline: auto;
}

.navbar-logo {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  color: var(--text);
}
.navbar-logo:hover { color: var(--accent); }

.logo-main {
  font-family: var(--font-body);
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.logo-sub {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: .04em;
  color: var(--accent);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-links a {
  color: var(--text);
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--accent); }

.nav-cta {
  border: 1px solid var(--accent) !important;
  padding: .4em .9em;
  border-radius: var(--radius);
  color: var(--accent) !important;
}
.nav-cta:hover {
  background: var(--accent);
  color: var(--bg) !important;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all var(--transition);
}

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(28,15,7,.85) 0%,
    rgba(28,15,7,.55) 60%,
    rgba(28,15,7,.75) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 120px 5vw 80px;
  max-width: 780px;
  margin-inline: auto;
  text-align: center;
}

.hero-eyebrow {
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}

.hero-title {
  color: var(--text);
  margin-bottom: 24px;
}
.hero-title em {
  font-style: italic;
  color: var(--accent);
}

.hero-tagline {
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  color: var(--text-muted);
  margin-bottom: 32px;
  line-height: 1.6;
}

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

.badge {
  padding: .35em 1em;
  border: 1px solid var(--border);
  border-radius: 2em;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(193,127,36,.08);
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: var(--text-muted);
  animation: bounce 2s infinite;
}
.hero-scroll svg { width: 32px; height: 32px; }

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}

/* =========================================================
   ÜBER UNS
   ========================================================= */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 28px;
  margin-bottom: 60px;
}

.feature-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 28px;
  transition: transform var(--transition), border-color var(--transition);
}
.feature-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
}

.feature-icon {
  font-size: 2.4rem;
  margin-bottom: 16px;
}

.feature-card h3 {
  color: var(--accent);
  margin-bottom: 12px;
  font-size: 1.15rem;
}

.feature-card p {
  color: var(--text-muted);
  font-size: .95rem;
  line-height: 1.65;
}
.feature-card p strong { color: var(--text); }

.about-image-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.about-img-wrap {
  overflow: hidden;
  border-radius: var(--radius);
  aspect-ratio: 4/3;
}
.about-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.about-img-wrap:hover img { transform: scale(1.05); }

/* =========================================================
   SPEISEKARTE
   ========================================================= */
.menu-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-bottom: 32px;
}

.menu-card {
  position: relative;
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}
.menu-card:hover {
  transform: translateY(-6px);
  border-color: var(--accent);
  box-shadow: var(--shadow);
}

.menu-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: transform .4s ease;
}
.menu-card:hover img { transform: scale(1.03); }

.menu-card-label {
  padding: 16px 18px;
}

.menu-card-title {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  color: var(--accent);
  margin-bottom: 4px;
}

.menu-card-sub {
  display: block;
  font-size: .82rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.menu-card-zoom {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(28,15,7,.75);
  border: 1px solid var(--border);
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  opacity: 0;
  transition: opacity var(--transition);
}
.menu-card:hover .menu-card-zoom { opacity: 1; }

.menu-note {
  text-align: center;
  color: var(--text-muted);
  font-size: .9rem;
  padding: 20px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(193,127,36,.05);
}
.menu-note strong { color: var(--text); }

/* =========================================================
   GALERIE
   ========================================================= */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 10px;
}

.gallery-item {
  overflow: hidden;
  border-radius: var(--radius);
  aspect-ratio: 4/3;
  cursor: pointer;
  border: 1px solid transparent;
  transition: border-color var(--transition);
}
.gallery-item:hover { border-color: var(--accent); }

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
}
.gallery-item:hover img { transform: scale(1.08); }

/* =========================================================
   BEWERTUNGEN
   ========================================================= */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}

.review-card {
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px 32px 32px;
  position: relative;
  transition: border-color var(--transition);
}
.review-card:hover { border-color: var(--accent); }

.review-quote {
  font-family: var(--font-heading);
  font-size: 4rem;
  color: var(--accent);
  line-height: 1;
  position: absolute;
  top: 14px;
  left: 28px;
  opacity: .5;
}

.review-text {
  font-size: .95rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 24px;
}
.review-text strong { color: var(--text); }

.review-source {
  display: flex;
  align-items: center;
  gap: 10px;
  border-top: 1px solid var(--border);
  padding-top: 16px;
}

.review-logo {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: .05em;
}

.review-badge {
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--bg);
  background: var(--accent);
  padding: .2em .6em;
  border-radius: 2px;
}

/* =========================================================
   KONTAKT
   ========================================================= */
.kontakt-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}

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

.kontakt-block h3 {
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

.kontakt-block address {
  color: var(--text-muted);
  line-height: 1.9;
}
.kontakt-block address strong { color: var(--text); }

.kontakt-phone {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text);
  transition: color var(--transition);
}
.kontakt-phone:hover { color: var(--accent); }

.hours-table {
  border-collapse: collapse;
  width: 100%;
  max-width: 320px;
}
.hours-table td {
  padding: 6px 0;
  color: var(--text-muted);
  font-size: .95rem;
}
.hours-table td:last-child {
  text-align: right;
  color: var(--text);
}
.hours-note {
  font-size: .8rem !important;
  color: var(--accent) !important;
  text-align: left !important;
  font-style: italic;
}

.transit-list {
  list-style: none;
  color: var(--text-muted);
  margin-bottom: 20px;
}
.transit-list li {
  padding: 5px 0;
  font-size: .9rem;
}

.map-btn { margin-top: 4px; font-size: .8rem; }

.kontakt-map {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.kontakt-map iframe { display: block; }

/* =========================================================
   FOOTER
   ========================================================= */
.footer {
  background: #110800;
  padding-block: 40px;
  border-top: 1px solid var(--border);
}

.footer-inner {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.footer-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1.1;
  margin-bottom: 4px;
}

.footer-tagline {
  font-size: .82rem;
  color: var(--text-muted);
  letter-spacing: .05em;
}

.footer-copy {
  font-size: .78rem;
  color: #6a5040;
}
.footer-copy a { color: #6a5040; }
.footer-copy a:hover { color: var(--accent); }

/* =========================================================
   LIGHTBOX
   ========================================================= */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(12,5,2,.95);
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.lightbox.open { display: flex; }

.lightbox-content {
  max-width: min(90vw, 1100px);
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

#lightboxImg {
  max-width: 100%;
  max-height: 80vh;
  border-radius: var(--radius);
  box-shadow: 0 8px 48px rgba(0,0,0,.8);
  object-fit: contain;
}

.lightbox-caption {
  color: var(--text-muted);
  font-size: .85rem;
  text-align: center;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: fixed;
  background: rgba(193,127,36,.15);
  border: 1px solid var(--border);
  color: var(--text);
  cursor: pointer;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  transition: background var(--transition);
  line-height: 1;
}
.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover { background: var(--accent); color: var(--bg); }

.lightbox-close { top: 16px; right: 16px; font-size: 1.8rem; }
.lightbox-prev  { left: 16px; top: 50%; transform: translateY(-50%); }
.lightbox-next  { right: 16px; top: 50%; transform: translateY(-50%); }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 900px) {
  .kontakt-grid { grid-template-columns: 1fr; gap: 32px; }
  .about-image-row { grid-template-columns: 1fr 1fr; }
  .about-img-wrap:last-child { display: none; }
}

@media (max-width: 700px) {
  .nav-links {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0;
    background: var(--surface);
    flex-direction: column;
    padding: 80px 32px 40px;
    gap: 24px;
    border-bottom: 1px solid var(--border);
    z-index: 99;
  }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: 1rem; }
  .nav-toggle { display: flex; z-index: 100; }
  .nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
  .nav-toggle.open span:nth-child(2) { opacity: 0; }
  .nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

  .section { padding-block: 64px 56px; }
  .hero-content { padding-top: 100px; }
  .about-image-row { grid-template-columns: 1fr; }
  .about-img-wrap:not(:first-child) { display: none; }
  .gallery-grid { grid-template-columns: repeat(auto-fill, minmax(120px, 1fr)); gap: 6px; }
  .lightbox-prev, .lightbox-next { display: none; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; align-items: center; }
  .menu-cards { grid-template-columns: 1fr; }
}
