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

:root {
  --bg:          #121212;
  --bg-card:     #1e1e1e;
  --accent:      #e8a020;
  --accent-dark: #c4851a;
  --text:        #f0f0f0;
  --text-muted:  #aaaaaa;
  --radius:      12px;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg);
  color: var(--text);
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  line-height: 1.5;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* ── Header / Logo ── */
.site-header {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2.5rem 1.5rem 2rem;
}

.logo-wrap {
  max-width: 260px;
  width: 100%;
}

.logo {
  width: 100%;
  height: auto;
  display: block;
}

@media (min-width: 768px) {
  .site-header {
    padding: 2rem 1.5rem 0.75rem;
  }

  .logo-wrap {
    max-width: 420px;
  }
}

/* ── Menu section ── */
.menu-section {
  width: 100%;
}

/* Mobile: full bleed, no padding */
.menu-wrap {
  width: 100%;
}

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

/* Desktop: constrain width & center */
@media (min-width: 768px) {
  .menu-wrap {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 0.25rem;
  }

  .menu-img {
    border-radius: var(--radius);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.55);
  }
}

/* ── CTA Section ── */
.cta-section {
  flex: 1;
  padding: 2.5rem 1rem 2rem;
}

.container {
  max-width: 640px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  text-decoration: none;
  font-weight: 600;
  border-radius: var(--radius);
  transition: background-color 0.2s ease, transform 0.1s ease;
  cursor: pointer;
  width: 100%;
  text-align: center;
}

.btn:active {
  transform: scale(0.97);
}

/* Primary – phone CTA */
.btn-primary {
  background-color: #830900;
  color: #ffffff;
  font-size: clamp(1rem, 4vw, 1.2rem);
  padding: 1.1rem 1.5rem;
  box-shadow: 0 4px 20px rgba(131, 9, 0, 0.4);
}

.btn-primary:hover {
  background-color: #6a0700;
}

/* Secondary – services */
.btn-secondary {
  background-color: var(--bg-card);
  color: var(--text);
  font-size: 1rem;
  padding: 0.9rem 1.2rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  flex-direction: row;
}

.btn-secondary:hover {
  background-color: #2a2a2a;
  border-color: rgba(255, 255, 255, 0.18);
}

.btn-icon {
  font-size: 1.3em;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  line-height: 0;
}

/* Links grid – 2 cols on wider screens */
.links-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.85rem;
  width: 100%;
}

@media (min-width: 480px) {
  .links-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* ── Delivery Block ── */
.delivery-block {
  width: 100%;
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--radius);
  padding: 1.2rem 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.delivery-header {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: #f5c518;
}

.delivery-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
}

.delivery-areas {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 0.6rem;
}

.delivery-areas li {
  font-size: 0.88rem;
  color: var(--text-muted);
  background: rgba(255, 255, 255, 0.05);
  border-radius: 6px;
  padding: 0.25rem 0.6rem;
}

.delivery-note {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-style: italic;
}

/* ── Address Block ── */
.address-block {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: stretch;
  gap: 0.75rem;
  width: 100%;
  padding-top: 0.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.address-card {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--radius);
  padding: 0.9rem 1.2rem;
  width: 100%;
}

.address-card-icon {
  color: #22c55e;
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.address-card-text {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.address-label {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
}

.address-sub {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.btn-map {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: auto;
  white-space: nowrap;
  padding: 0.75rem 1.1rem;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius);
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.btn-map:hover {
  background: var(--bg-card);
  border-color: rgba(255, 255, 255, 0.28);
  color: var(--text);
}

/* ── Footer ── */
.site-footer {
  text-align: center;
  padding: 1.2rem 1rem;
  font-size: 0.78rem;
  color: var(--text-muted);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
