/* ================================================
   PLEIL BISTRO – Design System
   Color: #F6D797 (gold), Dark backgrounds
   Typography: Cormorant Garamond + Inter
   ================================================ */

/* === CSS Variables === */
:root {
  --gold: #F6D797;
  --gold-dark: #C9A85C;
  --gold-light: #FBE8BF;
  --bg-primary: #0A0A0A;
  --bg-secondary: #111111;
  --bg-card: #161616;
  --bg-card-hover: #1C1C1C;
  --text-primary: #F0EDE8;
  --text-secondary: #8A8580;
  --text-muted: #5A5550;
  --border: rgba(246, 215, 151, 0.12);
  --border-hover: rgba(246, 215, 151, 0.25);
  --shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.6);
  --radius: 8px;
  --radius-lg: 16px;
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --max-width: 1200px;
  --nav-height: 80px;
  --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  scroll-padding-top: var(--nav-height);
}

body {
  font-family: var(--font-sans);
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: var(--gold);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--gold-light);
}

::selection {
  background: var(--gold);
  color: var(--bg-primary);
}

/* === Preloader === */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: var(--bg-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.preloader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

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

.preloader-logo {
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 300;
  letter-spacing: 1.2em;
  color: var(--gold);
  margin-bottom: 2rem;
  padding-left: 1.2em;
}

.preloader-bar {
  width: 200px;
  height: 1px;
  background: var(--border);
  border-radius: 2px;
  overflow: hidden;
  margin: 0 auto;
}

.preloader-bar-fill {
  width: 0;
  height: 100%;
  background: var(--gold);
  animation: preloaderFill 1.5s ease-out forwards;
}

@keyframes preloaderFill {
  to { width: 100%; }
}

/* === Container === */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
}

/* === Typography === */
.gold {
  color: var(--gold);
}

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

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 300;
  letter-spacing: 0.05em;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1rem;
  color: var(--text-secondary);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 3rem;
}

.section-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.label-text {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
}

.label-line {
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

/* === Buttons === */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2.5rem;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--gold);
  color: var(--bg-primary);
}

.btn-primary:hover {
  background: var(--gold-light);
  color: var(--bg-primary);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(246, 215, 151, 0.25);
}

.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold);
}

.btn-outline:hover {
  background: var(--gold);
  color: var(--bg-primary);
  transform: translateY(-2px);
}

.btn-full {
  width: 100%;
}

/* === Separator === */
.separator {
  margin-bottom: 2rem;
}

.separator-svg {
  width: 120px;
  height: 12px;
}

/* === Navigation === */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  transition: all var(--transition);
}

.nav.scrolled {
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo-img {
  height: 28px;
  width: auto;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.nav.scrolled .nav-logo-img {
  opacity: 1;
}

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

.nav-links a {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-secondary);
  padding: 0.5rem 1.2rem;
  transition: color var(--transition);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--gold);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 60%;
}

/* Mobile Menu Toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
  z-index: 100;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--gold);
  transition: all 0.3s ease;
}

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

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

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

/* === Hero Section === */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

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

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.1);
  animation: heroZoom 20s ease-in-out infinite alternate;
}

@keyframes heroZoom {
  0% { transform: scale(1.1); }
  100% { transform: scale(1.2); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at center, rgba(10, 10, 10, 0.5) 0%, rgba(10, 10, 10, 0.85) 100%),
    linear-gradient(to bottom, rgba(10, 10, 10, 0.3) 0%, rgba(10, 10, 10, 0.9) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 2rem;
}

.hero-river {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120%;
  opacity: 0.5;
  pointer-events: none;
}

.hero-river-svg {
  width: 100%;
  height: auto;
}

.hero-logo-wrapper {
  margin-bottom: 2rem;
}

.hero-logo {
  max-width: 500px;
  width: 80%;
  margin: 0 auto;
  filter: drop-shadow(0 4px 20px rgba(246, 215, 151, 0.15));
}

.hero-subtitle {
  font-family: var(--font-serif);
  font-size: clamp(1.3rem, 3vw, 1.8rem);
  font-weight: 300;
  font-style: italic;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  letter-spacing: 0.05em;
}

.hero-desc {
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  color: var(--text-secondary);
  margin-bottom: 3rem;
  text-transform: uppercase;
}

.hero-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 3rem;
  left: 50%;
  transform: translateX(-50%);
}

.scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; height: 40px; }
  50% { opacity: 1; height: 60px; }
}

/* === Sections Common === */
.section {
  padding: 7rem 0;
  position: relative;
}

/* === Bistro Section === */
.section-bistro {
  background: var(--bg-secondary);
}

.bistro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.bistro-text {
  font-size: 1.05rem;
  line-height: 1.9;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
}

.bistro-text strong {
  color: var(--gold);
  font-weight: 500;
}

.bistro-values {
  display: flex;
  gap: 2rem;
  margin-top: 2.5rem;
}

.value-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  text-align: center;
}

.value-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  border-radius: 50%;
  padding: 12px;
  transition: all var(--transition);
}

.value-item:hover .value-icon {
  border-color: var(--gold);
  background: rgba(246, 215, 151, 0.05);
}

.value-item span {
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  color: var(--text-secondary);
}

/* Image Frame */
.img-frame {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
}

.img-frame img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  transition: transform 0.8s ease;
}

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

.img-frame-border {
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(246, 215, 151, 0.2);
  border-radius: 4px;
  pointer-events: none;
  transition: all var(--transition);
}

.img-frame:hover .img-frame-border {
  inset: 16px;
  border-color: rgba(246, 215, 151, 0.4);
}

/* === Menu Section === */
.section-menu {
  position: relative;
  overflow: hidden;
}

.menu-bg-parallax {
  position: absolute;
  inset: 0;
}

.menu-bg-parallax .parallax-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.15;
  filter: blur(2px);
}

.menu-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    var(--bg-primary) 0%,
    rgba(10, 10, 10, 0.92) 15%,
    rgba(10, 10, 10, 0.92) 85%,
    var(--bg-primary) 100%
  );
}

.section-menu .container {
  position: relative;
  z-index: 2;
}

/* Menu Tabs */
.menu-categories {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.menu-tab {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text-secondary);
  padding: 0.7rem 1.8rem;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all var(--transition);
}

.menu-tab:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.menu-tab.active {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--bg-primary);
}

/* Menu Items */
.menu-panel {
  display: none;
  max-width: 700px;
  margin: 0 auto;
}

.menu-panel.active {
  display: block;
  animation: fadeInUp 0.5s ease;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.menu-item {
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--border);
  transition: all var(--transition);
}

.menu-item:hover {
  padding-left: 1rem;
}

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

.menu-item-header {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  margin-bottom: 0.4rem;
}

.menu-item-name {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 400;
  white-space: nowrap;
}

.menu-item-dots {
  flex: 1;
  border-bottom: 1px dotted var(--text-muted);
  min-width: 30px;
  margin-bottom: 6px;
}

.menu-item-price {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--gold);
  white-space: nowrap;
}

.menu-item-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-style: italic;
}

.menu-note {
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 3rem;
  font-style: italic;
}

/* === Rezervace Section === */
.section-rezervace {
  background: var(--bg-secondary);
}

.rezervace-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3rem;
  align-items: start;
}

.rezervace-form {
  background: var(--bg-card);
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}

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

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

.form-group.full-width {
  margin-bottom: 1.5rem;
}

.form-group label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  background: var(--bg-primary);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.85rem 1rem;
  color: var(--text-primary);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  transition: all var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(246, 215, 151, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted);
}

.form-group select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M6 8L1 3h10z' fill='%23F6D797'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.form-group select option {
  background: var(--bg-card);
  color: var(--text-primary);
}

.form-success {
  display: none;
  text-align: center;
  padding: 3rem 2rem;
}

.form-success.show {
  display: block;
  animation: fadeInUp 0.5s ease;
}

.form-success .success-icon svg {
  width: 48px;
  height: 48px;
  margin: 0 auto 1.5rem;
}

.form-success h3 {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 300;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.form-success p {
  color: var(--text-secondary);
}

/* Info Cards */
.info-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  margin-bottom: 1.5rem;
  transition: all var(--transition);
}

.info-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-2px);
}

.info-card-icon svg {
  width: 32px;
  height: 32px;
  margin-bottom: 1rem;
}

.info-card h3 {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 400;
  margin-bottom: 0.5rem;
}

.info-card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 0.75rem;
}

.info-highlight {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--gold) !important;
  display: block;
}

.hours-table {
  margin-top: 0.5rem;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  padding: 0.4rem 0;
  font-size: 0.9rem;
  border-bottom: 1px solid var(--border);
}

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

.hours-row.closed span:last-child {
  color: var(--text-muted);
}

/* === Ubytování Section === */
.section-ubytovani {
  background: var(--bg-primary);
}

.ubytovani-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all var(--transition);
}

.ubytovani-card:hover {
  border-color: var(--border-hover);
  box-shadow: var(--shadow-lg);
}

.ubytovani-image {
  position: relative;
  overflow: hidden;
}

.ubytovani-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 400px;
  transition: transform 0.8s ease;
}

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

.ubytovani-badge {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  background: var(--gold);
  color: var(--bg-primary);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
  border-radius: 20px;
}

.ubytovani-content {
  padding: 3rem;
}

.ubytovani-content h3 {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 400;
  margin-bottom: 0.75rem;
}

.ubytovani-distance {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.ubytovani-content > p {
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.ubytovani-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.feature-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(246, 215, 151, 0.06);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 0.4rem 1rem;
  font-size: 0.78rem;
  color: var(--text-secondary);
  transition: all var(--transition);
}

.feature-tag:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.ubytovani-philosophy {
  color: var(--text-muted);
  font-size: 0.9rem;
  border-left: 2px solid var(--gold);
  padding-left: 1.5rem;
  margin-top: 1.5rem;
}

/* === Kontakt Section === */
.section-kontakt {
  background: var(--bg-secondary);
}

.kontakt-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
  margin-top: 2rem;
}

.kontakt-item {
  display: flex;
  gap: 1.2rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--border);
}

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

.kontakt-icon svg {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  margin-top: 2px;
}

.kontakt-item h4 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 400;
  margin-bottom: 0.3rem;
}

.kontakt-item p,
.kontakt-item a {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.kontakt-item a:hover {
  color: var(--gold);
}

/* Map */
.map-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 420px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
}

.map-wrapper iframe {
  width: 100%;
  height: 100%;
  min-height: 420px;
  filter: grayscale(20%) brightness(0.8);
}

.map-overlay-link {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
}

.map-overlay-link a {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 0.5rem 1rem;
  border-radius: var(--radius);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: var(--gold);
  transition: all var(--transition);
}

.map-overlay-link a:hover {
  background: var(--gold);
  color: var(--bg-primary);
}

/* === Footer === */
.footer {
  background: var(--bg-primary);
  border-top: 1px solid var(--border);
  padding: 4rem 0 2rem;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--border);
}

.footer-logo-img {
  height: 30px;
  margin-bottom: 1rem;
}

.footer-logo p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.footer-links h4,
.footer-contact h4 {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.footer-links a {
  display: block;
  font-size: 0.85rem;
  color: var(--text-muted);
  padding: 0.3rem 0;
  transition: color var(--transition);
}

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

.footer-contact p,
.footer-contact a {
  display: block;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 0.3rem;
}

.footer-contact a:hover {
  color: var(--gold);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
}

.footer-bottom p {
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.1em;
}

/* === Scroll Animations === */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered children */
.animate-on-scroll:nth-child(2) { transition-delay: 0.1s; }
.animate-on-scroll:nth-child(3) { transition-delay: 0.2s; }
.animate-on-scroll:nth-child(4) { transition-delay: 0.3s; }

/* === Responsive === */
@media (max-width: 1024px) {
  .bistro-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .bistro-image {
    order: -1;
  }

  .img-frame img {
    height: 350px;
  }

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

  .ubytovani-card {
    grid-template-columns: 1fr;
  }

  .ubytovani-image img {
    min-height: 280px;
  }

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

  .map-wrapper {
    min-height: 350px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  :root {
    --nav-height: 60px;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: 280px;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    transition: right 0.4s ease;
    border-left: 1px solid var(--border);
  }

  .nav-links.open {
    right: 0;
  }

  .nav-links a {
    font-size: 0.85rem;
    padding: 1rem 2rem;
  }

  .hero-logo {
    max-width: 320px;
  }

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

  .hero-buttons .btn {
    width: 240px;
  }

  .section {
    padding: 5rem 0;
  }

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

  .bistro-values {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
  }

  .value-item {
    flex-direction: row;
    gap: 1rem;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .menu-categories {
    gap: 0.4rem;
  }

  .menu-tab {
    padding: 0.5rem 1.2rem;
    font-size: 0.7rem;
  }

  .menu-item-name {
    font-size: 1.1rem;
  }

  .ubytovani-content {
    padding: 2rem;
  }

  .ubytovani-content h3 {
    font-size: 1.4rem;
  }

  .kontakt-item {
    padding: 1rem 0;
  }
}

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

  .hero-desc {
    font-size: 0.7rem;
    letter-spacing: 0.15em;
  }

  .rezervace-form {
    padding: 1.5rem;
  }

  .ubytovani-features {
    gap: 0.5rem;
  }

  .feature-tag {
    font-size: 0.7rem;
    padding: 0.3rem 0.8rem;
  }
}
