/* ============================================
   VIENNA HOT DOGS & SNACKS — STYLE GUIDE
   Palette: Deep Navy (#0F172A) + Warm Gold (#C9A84C)
   Fonts: Lora (serif headings) + Montserrat (sans body)
============================================ */

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

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

body {
  font-family: 'Montserrat', system-ui, sans-serif;
  color: #1a1a2e;
  background: #FFFDF7;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

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

ul {
  list-style: none;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  background: #C9A84C;
  color: #0F172A;
  padding: 8px 16px;
  border-radius: 4px;
  font-weight: 600;
  z-index: 200;
}

.skip-link:focus {
  top: 12px;
}

/* ---------- TYPOGRAPHY ---------- */
h1, h2, h3, h4 {
  font-family: 'Lora', Georgia, serif;
  font-weight: 600;
  line-height: 1.25;
  color: #0F172A;
}

.section-eyebrow {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #C9A84C;
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  margin-bottom: 20px;
}

.section-subtitle {
  font-size: 1.05rem;
  color: #4a4a6a;
  max-width: 560px;
  margin: 0 auto;
}

.text-center { text-align: center; }

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  border: 2px solid transparent;
  border-radius: 6px;
  padding: 14px 28px;
  cursor: pointer;
  transition: background 0.3s, color 0.3s, border-color 0.3s, transform 0.2s;
  text-decoration: none;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn--gold {
  background: #C9A84C;
  color: #0F172A;
  border-color: #C9A84C;
}

.btn--gold:hover {
  background: #b8943f;
  border-color: #b8943f;
}

.btn--outline-light {
  background: transparent;
  color: #FFFDF7;
  border-color: rgba(255,253,247,0.6);
}

.btn--outline-light:hover {
  background: rgba(255,253,247,0.12);
  border-color: #FFFDF7;
}

.btn--outline-dark {
  background: transparent;
  color: #0F172A;
  border-color: #0F172A;
}

.btn--outline-dark:hover {
  background: #0F172A;
  color: #FFFDF7;
}

.btn--lg {
  padding: 16px 36px;
  font-size: 1rem;
}

.btn--full {
  width: 100%;
}

/* ---------- NAVBAR ---------- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(15, 23, 42, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201, 168, 76, 0.2);
  transition: background 0.3s;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Lora', serif;
  font-weight: 600;
  font-size: 1.05rem;
  color: #FFFDF7;
}

.logo-icon {
  color: #C9A84C;
}

.logo--light { color: #FFFDF7; }

.nav-menu { display: flex; align-items: center; }

.nav-menu ul {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-link {
  color: rgba(255,253,247,0.8);
  font-size: 0.875rem;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 4px;
  transition: color 0.3s, background 0.3s;
}

.nav-link:hover {
  color: #FFFDF7;
  background: rgba(255,253,247,0.08);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.hamburger {
  display: block;
  width: 24px;
  height: 2px;
  background: #FFFDF7;
  position: relative;
  transition: background 0.3s;
}

.hamburger::before,
.hamburger::after {
  content: '';
  position: absolute;
  width: 24px;
  height: 2px;
  background: #FFFDF7;
  left: 0;
  transition: transform 0.3s;
}

.hamburger::before { top: -7px; }
.hamburger::after { top: 7px; }

.nav-toggle[aria-expanded="true"] .hamburger {
  background: transparent;
}

.nav-toggle[aria-expanded="true"] .hamburger::before {
  transform: rotate(45deg);
  top: 0;
}

.nav-toggle[aria-expanded="true"] .hamburger::after {
  transform: rotate(-45deg);
  top: 0;
}

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

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.45;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(15, 23, 42, 0.92) 0%,
    rgba(15, 23, 42, 0.75) 50%,
    rgba(15, 23, 42, 0.60) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 120px 24px 80px;
  max-width: 760px;
}

.hero-eyebrow {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #C9A84C;
  margin-bottom: 20px;
}

.hero-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: #FFFDF7;
  margin-bottom: 24px;
  line-height: 1.15;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: rgba(255,253,247,0.78);
  line-height: 1.8;
  margin-bottom: 40px;
  max-width: 560px;
}

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

.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  opacity: 0.5;
  animation: scrollBounce 2s ease-in-out infinite;
}

.hero-scroll span {
  display: block;
  width: 2px;
  height: 10px;
  background: #C9A84C;
  border-radius: 2px;
}

.hero-scroll span:nth-child(2) { height: 14px; }
.hero-scroll span:nth-child(3) { height: 8px; }

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

/* ---------- SECTIONS ---------- */
.section {
  padding: 100px 0;
}

.section-header {
  margin-bottom: 60px;
}

/* ---------- ABOUT ---------- */
.about {
  background: #FFFDF7;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about-images {
  position: relative;
}

.about-img-main {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 24px 48px rgba(15, 23, 42, 0.15);
}

.about-img-main img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.about-img-secondary {
  position: absolute;
  bottom: -40px;
  right: -32px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.2);
  border: 4px solid #FFFDF7;
}

.about-img-secondary img {
  width: 240px;
  height: 190px;
  object-fit: cover;
}

.about-accent {
  position: absolute;
  top: -20px;
  left: -20px;
  width: 100px;
  height: 100px;
  background: #C9A84C;
  border-radius: 12px;
  z-index: -1;
  opacity: 0.3;
}

.about-text p {
  color: #4a4a6a;
  margin-bottom: 16px;
  font-size: 1rem;
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 32px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 14px;
  font-weight: 500;
  color: #0F172A;
}

.feature-icon {
  width: 44px;
  height: 44px;
  background: rgba(201, 168, 76, 0.12);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #C9A84C;
  flex-shrink: 0;
}

/* ---------- MENU ---------- */
.menu {
  background: #F7F3E8;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-bottom: 48px;
}

.menu-card {
  background: #FFFDF7;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.07);
  transition: transform 0.3s, box-shadow 0.3s;
}

.menu-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 36px rgba(15, 23, 42, 0.12);
}

.menu-card-img {
  overflow: hidden;
  height: 220px;
}

.menu-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.menu-card:hover .menu-card-img img {
  transform: scale(1.05);
}

.menu-card-body {
  padding: 28px;
}

.menu-card-title {
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.menu-card-desc {
  color: #4a4a6a;
  font-size: 0.95rem;
  line-height: 1.7;
}

.menu-note {
  text-align: center;
  color: #4a4a6a;
  font-size: 0.9rem;
  font-style: italic;
  font-family: 'Lora', serif;
}

/* ---------- HIGHLIGHT STRIP ---------- */
.highlight-strip {
  background: #0F172A;
  padding: 56px 0;
}

.highlight-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}

.highlight-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.highlight-number {
  font-family: 'Lora', serif;
  font-size: 2rem;
  font-weight: 600;
  color: #C9A84C;
}

.highlight-label {
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255,253,247,0.7);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ---------- LOCATION ---------- */
.location {
  background: #FFFDF7;
}

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

.map-wrap {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(15, 23, 42, 0.1);
}

.location-info {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.info-block h3 {
  font-size: 1rem;
  margin-bottom: 6px;
  color: #C9A84C;
}

.info-block p {
  color: #4a4a6a;
  line-height: 1.7;
}

.info-block a {
  color: #0F172A;
  font-weight: 600;
  border-bottom: 1px solid rgba(15, 23, 42, 0.2);
  transition: color 0.3s, border-color 0.3s;
}

.info-block a:hover {
  color: #C9A84C;
  border-color: #C9A84C;
}

/* ---------- CONTACT ---------- */
.contact {
  background: #0F172A;
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.contact-text .section-title {
  color: #FFFDF7;
}

.contact-text p {
  color: rgba(255,253,247,0.7);
  font-size: 1.05rem;
  line-height: 1.8;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  background: rgba(255,253,247,0.05);
  border: 1px solid rgba(201, 168, 76, 0.25);
  border-radius: 12px;
  padding: 36px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #C9A84C;
}

.form-group input,
.form-group textarea {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.95rem;
  padding: 14px 16px;
  border: 1px solid rgba(255,253,247,0.15);
  border-radius: 6px;
  background: rgba(255,253,247,0.06);
  color: #FFFDF7;
  transition: border-color 0.3s, background 0.3s;
  outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255,253,247,0.35);
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: #C9A84C;
  background: rgba(201, 168, 76, 0.08);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-success {
  text-align: center;
  color: #C9A84C;
  font-weight: 600;
  padding: 16px;
  background: rgba(201, 168, 76, 0.1);
  border-radius: 6px;
  border: 1px solid rgba(201, 168, 76, 0.3);
}

/* ---------- FOOTER ---------- */
.footer {
  background: #0A0F1E;
  color: rgba(255,253,247,0.6);
  padding: 64px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,253,247,0.08);
}

.footer-brand p {
  margin-top: 16px;
  font-size: 0.9rem;
  line-height: 1.7;
  max-width: 280px;
}

.footer-links h4,
.footer-contact h4 {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #C9A84C;
  margin-bottom: 16px;
  font-family: 'Montserrat', sans-serif;
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 0.9rem;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: #C9A84C;
}

.footer-contact p {
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 6px;
}

.footer-contact a {
  color: rgba(255,253,247,0.6);
  border-bottom: 1px solid rgba(255,253,247,0.2);
  transition: color 0.3s, border-color 0.3s;
}

.footer-contact a:hover {
  color: #C9A84C;
  border-color: #C9A84C;
}

.footer-bottom {
  padding: 24px 0;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(255,253,247,0.35);
}

/* ---------- SCROLL REVEAL (progressive enhancement) ---------- */
@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }

  .reveal.revealed {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
  .about-grid {
    gap: 48px;
  }

  .location-grid {
    grid-template-columns: 1fr;
  }

  .contact-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .nav-toggle {
    display: block;
    z-index: 110;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 280px;
    height: 100vh;
    background: #0F172A;
    padding: 90px 32px 32px;
    transform: translateX(100%);
    transition: transform 0.35s ease;
    box-shadow: -8px 0 32px rgba(0,0,0,0.3);
  }

  .nav-menu.open {
    transform: translateX(0);
  }

  .nav-menu ul {
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
  }

  .nav-link {
    padding: 14px 16px;
    font-size: 1rem;
  }

  .nav-menu .btn--gold {
    margin-top: 16px;
    text-align: center;
  }

  .hero-content {
    padding: 130px 24px 100px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .about-grid {
    grid-template-columns: 1fr;
  }

  .about-images {
    max-width: 480px;
    margin: 0 auto;
  }

  .about-img-secondary {
    right: -16px;
    bottom: -24px;
  }

  .about-img-secondary img {
    width: 180px;
    height: 144px;
  }

  .menu-grid {
    grid-template-columns: 1fr;
  }

  .highlight-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .section {
    padding: 72px 0;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .hero-title {
    font-size: 1.75rem;
  }

  .about-img-secondary img {
    width: 140px;
    height: 112px;
  }

  .contact-form {
    padding: 24px;
  }
}
