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

:root {
  --bg-primary: #0a0a0a;
  --bg-secondary: #111111;
  --bg-card: #1a1a1a;
  --orange: #E8731C;
  --orange-glow: #FF8C32;
  --green: #7CBA3F;
  --green-glow: #96D44F;
  --text-primary: #F5F5F5;
  --text-secondary: #B0B0B0;
  --text-price: #E8731C;
  --radius: 12px;
  --container-width: 1100px;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 70px;
}

body {
  font-family: -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* Language toggle via CSS */
html[data-lang="cs"] .en { display: none !important; }
html[data-lang="en"] .cs { display: none !important; }

a {
  color: var(--orange);
  text-decoration: none;
  transition: color 0.2s;
}

a:hover {
  color: var(--orange-glow);
}

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

.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 20px;
}

.section-title {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 2.5rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.neon-text {
  color: var(--orange);
  text-shadow:
    0 0 10px rgba(232, 115, 28, 0.4),
    0 0 30px rgba(232, 115, 28, 0.2);
}

.green-text {
  color: var(--green);
}

/* === Navbar === */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(232, 115, 28, 0.15);
}

.nav-container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
}

.nav-logo img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-links a {
  color: var(--text-primary);
  font-size: 0.9rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--orange);
}

.lang-toggle {
  background: transparent;
  border: 1px solid var(--orange);
  color: var(--orange);
  padding: 4px 12px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  transition: all 0.2s;
}

.lang-toggle:hover {
  background: var(--orange);
  color: var(--bg-primary);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  transition: all 0.3s;
  display: block;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* === Hero === */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 20px 40px;
  background:
    radial-gradient(ellipse at center, rgba(232, 115, 28, 0.08) 0%, transparent 60%),
    var(--bg-primary);
}

.hero-content {
  max-width: 600px;
}

.hero-logo {
  margin-bottom: 1.5rem;
}

.hero-logo img {
  margin: 0 auto;
  max-width: 320px;
  filter: drop-shadow(0 0 30px rgba(232, 115, 28, 0.3));
}

.hero-tagline {
  font-size: 1.3rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  letter-spacing: 0.02em;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--orange);
  color: #fff;
  padding: 14px 32px;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  transition: all 0.3s;
  box-shadow: 0 0 20px rgba(232, 115, 28, 0.3);
}

.cta-button:hover {
  background: var(--orange-glow);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 0 30px rgba(232, 115, 28, 0.5);
}

.cta-button svg {
  flex-shrink: 0;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
}

.cta-menu {
  background: transparent;
  border: 2px solid var(--orange);
  color: var(--orange);
  box-shadow: 0 0 15px rgba(232, 115, 28, 0.2);
  padding: 14px 28px;
  font-size: 1rem;
}

.cta-menu:hover {
  background: var(--orange);
  color: #fff;
}

/* Hero Social Links */
.hero-social {
  display: flex;
  justify-content: center;
  gap: 1.2rem;
  margin-top: 1.5rem;
}

.hero-social a {
  color: var(--orange);
  filter: drop-shadow(0 0 8px rgba(232, 115, 28, 0.4));
  transition: all 0.3s;
}

.hero-social a:hover {
  color: var(--orange-glow);
  filter: drop-shadow(0 0 14px rgba(232, 115, 28, 0.6));
  transform: translateY(-2px);
}

/* Scroll down indicator */
.scroll-down {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--orange);
  opacity: 0.6;
  animation: bounce 2s infinite;
  transition: opacity 0.2s;
}

.scroll-down:hover {
  opacity: 1;
  color: var(--orange-glow);
}

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

/* === About === */
.about {
  padding: 80px 0;
  background: var(--bg-secondary);
}

.about-grid {
  display: grid;
  gap: 2.5rem;
}

.about-text p {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.8;
  text-align: center;
  max-width: 700px;
  margin: 0 auto 2rem auto;
}

/* Carousel */
.carousel {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
}

.carousel-track {
  display: flex;
  transition: transform 0.5s ease;
}

.carousel-slide {
  min-width: 50%;
  padding: 0 8px;
  box-sizing: border-box;
}

.carousel-slide img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: var(--radius);
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(10, 10, 10, 0.7);
  border: 1px solid rgba(232, 115, 28, 0.3);
  color: var(--orange);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}

.carousel-btn:hover {
  background: var(--orange);
  color: #fff;
}

.carousel-prev { left: 12px; }
.carousel-next { right: 12px; }

/* === Menu === */
.menu-section {
  padding: 80px 0;
  background: var(--bg-primary);
}

.menu-category {
  color: var(--green);
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1.2rem;
  margin-top: 2.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(124, 186, 63, 0.2);
  text-shadow: 0 0 10px rgba(124, 186, 63, 0.2);
}

.menu-category:first-of-type {
  margin-top: 0;
}

.menu-grid {
  display: grid;
  gap: 0;
}

.menu-item {
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.menu-item:last-child {
  border-bottom: none;
}

.menu-item-header {
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.menu-number {
  color: var(--orange);
  font-weight: 700;
  font-size: 0.85rem;
  min-width: 24px;
}

.menu-name {
  font-weight: 600;
  font-size: 1.05rem;
  flex: 1;
}

.menu-price {
  color: var(--text-price);
  font-weight: 700;
  font-size: 1.05rem;
  white-space: nowrap;
}

.menu-desc {
  color: var(--text-secondary);
  font-size: 0.88rem;
  margin-top: 2px;
  padding-left: 34px;
}

.menu-item-family .menu-name {
  color: var(--orange-glow);
}

/* Extras */
.menu-extras {
  margin-top: 2.5rem;
  padding: 1.5rem;
  background: var(--bg-card);
  border-radius: var(--radius);
  border: 1px solid rgba(232, 115, 28, 0.1);
}

.menu-extras .menu-category {
  margin-top: 0;
}

.extras-list {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.extras-list p {
  margin-bottom: 0.3rem;
}

.extras-list strong {
  color: var(--text-primary);
}

/* === Delivery === */
.delivery {
  padding: 80px 0;
  background: var(--bg-secondary);
}

.delivery-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  max-width: 700px;
  margin: 0 auto;
}

.delivery-card {
  background: var(--bg-card);
  border: 1px solid rgba(232, 115, 28, 0.1);
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
  transition: border-color 0.3s;
}

.delivery-card:hover {
  border-color: rgba(232, 115, 28, 0.3);
}

.delivery-icon {
  color: var(--orange);
  margin-bottom: 1rem;
}

.delivery-card h3 {
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.delivery-price {
  color: var(--text-secondary);
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.delivery-free {
  color: var(--green);
  font-size: 1.1rem;
}

.delivery-free strong {
  text-shadow: 0 0 8px rgba(124, 186, 63, 0.3);
}

.delivery-phone {
  display: inline-block;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--orange);
  margin-top: 0.5rem;
  transition: all 0.2s;
}

.delivery-phone-label {
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin-top: 1rem;
  margin-bottom: 0;
}

.delivery-phone:hover {
  color: var(--orange-glow);
  text-shadow: 0 0 10px rgba(232, 115, 28, 0.4);
}

.delivery-partner {
  color: var(--text-secondary);
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.delivery-partner-link {
  display: inline-block;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--green);
  padding: 0.5rem 1.5rem;
  border: 2px solid var(--green);
  border-radius: 8px;
  margin-top: 0.5rem;
  transition: all 0.3s;
  text-decoration: none;
}

.delivery-partner-link:hover {
  background: var(--green);
  color: var(--bg-primary);
  box-shadow: 0 0 15px rgba(124, 186, 63, 0.4);
}

/* === Contact === */
.contact {
  padding: 80px 0;
  background: var(--bg-primary);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.contact-card {
  background: var(--bg-card);
  border: 1px solid rgba(232, 115, 28, 0.1);
  border-radius: var(--radius);
  padding: 2rem;
}

.contact-card h3 {
  color: var(--orange);
  font-size: 1.1rem;
  margin-bottom: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Hours Table */
.hours-table {
  width: 100%;
  border-collapse: collapse;
}

.hours-table tr {
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.hours-table tr:last-child {
  border-bottom: none;
}

.hours-table td {
  padding: 10px 0;
  font-size: 0.95rem;
}

.hours-table td:last-child {
  text-align: right;
  font-weight: 600;
  color: var(--green);
}

.hours-closed {
  color: var(--text-secondary) !important;
  font-style: italic;
}

/* Address */
.contact-address {
  font-style: normal;
}

.contact-address p {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 0.8rem;
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.contact-address svg {
  color: var(--orange);
  flex-shrink: 0;
}

.contact-address a {
  color: var(--text-secondary);
}

.contact-address a:hover {
  color: var(--orange);
}

/* Social Links */
.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.social-links a {
  color: var(--orange);
  filter: drop-shadow(0 0 8px rgba(232, 115, 28, 0.4));
  transition: all 0.3s;
}

.social-links a:hover {
  color: var(--orange-glow);
  filter: drop-shadow(0 0 14px rgba(232, 115, 28, 0.6));
  transform: translateY(-2px);
}

/* Info Card */
.info-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.info-list li {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.5;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.info-list li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

/* Map */
.map-container {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(232, 115, 28, 0.1);
}

.map-container iframe {
  display: block;
}

/* === Footer === */
.footer {
  padding: 2rem 0;
  background: var(--bg-secondary);
  border-top: 1px solid rgba(232, 115, 28, 0.1);
}

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

.footer-brand {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--orange);
  letter-spacing: 0.05em;
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.footer-social a {
  color: var(--orange);
  filter: drop-shadow(0 0 8px rgba(232, 115, 28, 0.4));
  transition: all 0.3s;
}

.footer-social a:hover {
  color: var(--orange-glow);
  filter: drop-shadow(0 0 14px rgba(232, 115, 28, 0.6));
  transform: translateY(-2px);
}

.footer-copy {
  color: var(--text-secondary);
  font-size: 0.8rem;
}

/* === Responsive === */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.98);
    flex-direction: column;
    padding: 1.5rem 20px;
    gap: 1rem;
    border-bottom: 1px solid rgba(232, 115, 28, 0.15);
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links a {
    font-size: 1rem;
    padding: 8px 0;
  }

  .hero-logo img {
    max-width: 240px;
  }

  .hero-tagline {
    font-size: 1.1rem;
  }

  .cta-button {
    font-size: 1rem;
    padding: 12px 24px;
  }

  .section-title {
    font-size: 1.6rem;
  }

  .carousel-slide {
    min-width: 100%;
  }

  .carousel-slide img {
    height: 240px;
  }

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

  .delivery-content {
    grid-template-columns: 1fr;
  }

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

  .info-card {
    grid-column: auto;
  }

  .footer-content {
    flex-direction: column;
    text-align: center;
  }
}

@media (min-width: 769px) {
  .menu-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 3rem;
  }
}

@media (min-width: 1024px) {
  .hero-logo img {
    max-width: 360px;
  }

  .section-title {
    font-size: 2.2rem;
  }
}
