body {
  background-color: #fdf6e9;
  font-family: 'Open Sans', sans-serif;
  color: #44403c;
}

body.overflow-hidden {
  overflow: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Merriweather', serif;
}

/* === HLAVNÍ TLAČÍTKO (REZEVACE) - NOVĚ PŘIDÁNO === */
.btn-primary {
    display: inline-block;
    background-color: #d97706 !important; /* Jantarová barva s !important pro jistotu */
    color: #ffffff !important;
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background-color: #b45309 !important; /* Tmavší jantarová */
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
    text-decoration: none;
}


/* --- OSTATNÍ STYLY --- */

.nav-link-shadow {
  text-shadow: 0 1px 3px rgba(0,0,0,0.6);
}

#main-nav.scrolled .nav-link-shadow {
    text-shadow: none;
}
#main-nav.scrolled .text-stone-100 {
    color: #44403c;
}

#main-nav.scrolled {
  background-color: rgba(253, 246, 233, 0.95);
  backdrop-filter: blur(5px);
  box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1);
  transition: all 0.3s ease-in-out;
}

.menu-filter-btn {
    padding: 0.5rem 1.25rem;
    border-radius: 9999px;
    background-color: #ffffff;
    color: #44403c;
    transition: all 0.3s ease;
    border: 1px solid #e7e5e4;
    font-weight: 600;
}
.menu-filter-btn:hover {
    background-color: #fef3c7;
}
.menu-filter-btn.active {
    background-color: #d97706;
    color: #ffffff;
    border-color: #d97706;
}

.swiper-button-next, .swiper-button-prev {
  background-color: rgba(253, 246, 233, 0.8);
  color: #d97706;
  border-radius: 9999px;
  width: 50px;
  height: 50px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  transition: all 0.3s ease;
}
.swiper-button-next:hover, .swiper-button-prev:hover {
  background-color: #fdf6e9;
  transform: scale(1.1);
}
.swiper-button-next::after, .swiper-button-prev::after { font-size: 20px; font-weight: 900; }

#lightbox {
  position: fixed;
  z-index: 1000;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-color: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
#lightbox.active { opacity: 1; visibility: visible; }
#lightbox img { max-width: 90%; max-height: 85%; object-fit: contain; }
#lightbox-close { position: absolute; top: 30px; right: 30px; color: white; font-size: 3rem; cursor: pointer; line-height: 1; }

.menu-item {
    transition: opacity 0.4s ease, transform 0.4s ease, max-height 0.5s ease, padding 0.5s ease, margin 0.5s ease;
    overflow: hidden;
    max-height: 500px;
}
.menu-item.hidden {
    opacity: 0;
    transform: scale(0.95);
    max-height: 0;
    padding-top: 0;
    padding-bottom: 0;
    margin-top: 0;
    margin-bottom: 0;
    border: none;
    pointer-events: none;
}

.floating-nav-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background-color: #d97706;
  color: white;
  border-radius: 50%;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}
.floating-nav-button:hover {
  background-color: #b45309;
  transform: scale(1.1);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}


