/*
===============================================================================================================================
Main SCSS entrypoint for doStodoly.cz
===============================================================================================================================
*/
:root {
  --color-primary: #228380;
  --color-primary-dark: #1b716f;
  --color-primary-darker: #165f5d;
  --color-accent: #ffbc42;
  --color-accent-dark: #e0a52e;
  --color-accent-darker: #c98f1e;
  --color-bg-page: #fbf7f1;
  --color-bg-section: #f4ebdd;
  --color-border-warm: #d8ccbe;
  --color-text-primary: #172120;
  --color-text-secondary: #556261;
  --color-text-muted: #707b7a;
  --color-border-light: #dce2e1;
  --color-white: #ffffff;
  --color-plum: #8f2d56;
  --color-plum-dark: #7e274b;
  --color-plum-light: #f1e5ea;
  --color-success: #2e7d32;
  --color-warning: #c98f1e;
  --color-error: #b3261e;
  --color-info: #1e6fa8;
  --ds-ink: var(--color-text-primary);
  --ds-muted: var(--color-text-secondary);
  --ds-paper: var(--color-bg-page);
  --ds-card: var(--color-white);
  --ds-line: var(--color-border-warm);
  --ds-line-light: var(--color-border-light);
  --ds-accent: var(--color-primary);
  --ds-accent-dark: var(--color-primary-dark);
  --ds-accent-darker: var(--color-primary-darker);
  --ds-highlight: var(--color-accent);
  --ds-highlight-dark: var(--color-accent-dark);
  --ds-highlight-darker: var(--color-accent-darker);
  --ds-berry: var(--color-plum);
  --ds-soft: var(--color-bg-section);
  --ds-radius: 24px;
  --ds-radius-md: 18px;
  --ds-radius-sm: 12px;
  --ds-shadow: 0 18px 44px rgba(23, 33, 32, 0.08);
  --ds-shadow-card: 0 14px 34px rgba(23, 33, 32, 0.06);
  --ds-shadow-card-hover: 0 20px 40px rgba(23, 33, 32, 0.1);
}

.has-page-hero {
  --home-hero-overlay: linear-gradient(180deg, rgba(23, 33, 32, 0.26), rgba(23, 33, 32, 0.48));
}

.eyebrow {
  display: inline-block;
  margin-bottom: 0.75rem;
  color: #ffbc42;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.8rem;
}

.lead {
  font-size: 1.08rem;
  color: var(--color-text-secondary);
  max-width: 48rem;
}

.home-claim {
  margin: 0 0 1rem;
  font-size: clamp(1.2rem, 2.1vw, 1.8rem);
  line-height: 1.18;
  color: var(--color-primary-dark);
  font-weight: 700;
}

body {
  background: var(--color-bg-page);
  color: var(--color-text-primary);
  line-height: 1.65;
}

.container,
.container-sm,
.container-md,
.container-lg,
.container-xl,
.container-xxl,
.container-fluid {
  padding-right: max(1rem, var(--bs-gutter-x, 0.75rem));
  padding-left: max(1rem, var(--bs-gutter-x, 0.75rem));
}

a:not(.btn, .navbar-brand, .nav-link) {
  color: var(--color-primary-dark);
}

a:hover:not(.btn, .navbar-brand, .nav-link) {
  color: var(--color-primary);
}

.main-content {
  background: transparent;
  padding: 2.5rem 0 4.5rem;
}

.home-page .main-content {
  padding-top: 2.5rem;
}

.page-shell,
.event-page,
.home-page,
.events-page {
  position: relative;
  z-index: 1;
}

.hero-actions,
.event-card-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  max-width: 100%;
  padding: 0.72rem 1.15rem;
  border: 1px solid transparent;
  border-radius: 12px;
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  vertical-align: middle;
  white-space: normal;
  word-break: normal;
  overflow-wrap: anywhere;
  cursor: pointer;
  user-select: none;
  transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease, box-shadow 0.18s ease;
}

.btn:hover,
.btn:focus {
  text-decoration: none;
}

.btn-lg {
  padding: 0.95rem 1.45rem;
  font-size: 1.05rem;
  line-height: 1.25;
}

.btn-sm {
  padding: 0.5rem 0.85rem;
  font-size: 0.92rem;
  line-height: 1.2;
}

.btn-block {
  display: flex;
  width: 100%;
}

.btn-primary {
  background: #228380;
  border-color: #228380;
  color: #ffffff;
}
.btn-primary:hover, .btn-primary:focus {
  background: #1b716f;
  border-color: #1b716f;
  color: #ffffff;
  text-decoration: none;
}
.btn-primary:focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(34, 131, 128, 0.18);
}
.btn-primary:active {
  background: #1b716f;
  border-color: #1b716f;
  color: #ffffff;
}
.btn-primary:disabled, .btn-primary.disabled {
  opacity: 0.65;
  cursor: not-allowed;
  box-shadow: none;
}

.btn-accent {
  background: #ffbc42;
  border-color: #ffbc42;
  color: #172120;
}
.btn-accent:hover, .btn-accent:focus {
  background: #e0a52e;
  border-color: #e0a52e;
  color: #172120;
  text-decoration: none;
}
.btn-accent:focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(255, 188, 66, 0.18);
}
.btn-accent:active {
  background: #e0a52e;
  border-color: #e0a52e;
  color: #172120;
}
.btn-accent:disabled, .btn-accent.disabled {
  opacity: 0.65;
  cursor: not-allowed;
  box-shadow: none;
}

.btn-outline-secondary {
  background: rgba(255, 255, 255, 0.78);
  border-color: rgba(216, 204, 190, 0.95);
  color: #1b716f;
}
.btn-outline-secondary:hover, .btn-outline-secondary:focus {
  background: rgba(244, 235, 221, 0.98);
  border-color: #228380;
  color: #1b716f;
  text-decoration: none;
}
.btn-outline-secondary:focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(216, 204, 190, 0.18);
}
.btn-outline-secondary:active {
  background: #228380;
  border-color: #228380;
  color: #1b716f;
}
.btn-outline-secondary:disabled, .btn-outline-secondary.disabled {
  opacity: 0.65;
  cursor: not-allowed;
  box-shadow: none;
}

.btn-plum {
  background: #8f2d56;
  border-color: #8f2d56;
  color: #ffffff;
}
.btn-plum:hover, .btn-plum:focus {
  background: #7e274b;
  border-color: #7e274b;
  color: #ffffff;
  text-decoration: none;
}
.btn-plum:focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(143, 45, 86, 0.18);
}
.btn-plum:active {
  background: #7e274b;
  border-color: #7e274b;
  color: #ffffff;
}
.btn-plum:disabled, .btn-plum.disabled {
  opacity: 0.65;
  cursor: not-allowed;
  box-shadow: none;
}

.page-copy,
.listing-header,
.calendar-group,
.event-side-card,
.event-layout__main,
.section-card,
.event-fact-card,
.event-content-section,
.events-program-grid {
  background: rgba(251, 247, 241, 0.94);
  border: 1px solid rgba(216, 204, 190, 0.8);
  border-radius: 24px;
  box-shadow: 0 18px 44px rgba(23, 33, 32, 0.08);
  padding: 2rem;
  margin-bottom: 2rem;
}

.project-tile,
.bistro-info-card,
.bistro-menu-group,
.project-pillar-card,
.event-card {
  border-radius: 20px;
  border: 1px solid rgba(216, 204, 190, 0.82);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.97), rgba(244, 235, 221, 0.92));
  box-shadow: 0 14px 34px rgba(23, 33, 32, 0.06);
}

.project-tile {
  box-sizing: border-box;
  padding: 1.5rem;
  width: 100%;
  height: 100%;
}

.bistro-info-card,
.bistro-menu-group,
.project-pillar-card {
  box-sizing: border-box;
  padding: 1.5rem;
  width: 100%;
  height: 100%;
}

.event-card {
  overflow: hidden;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.event-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 40px rgba(23, 33, 32, 0.1);
}

.media-frame,
.media-placeholder {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(216, 204, 190, 0.88);
  background: linear-gradient(180deg, rgba(251, 247, 241, 0.98), rgba(244, 235, 221, 0.98));
}

.event-badge {
  background: rgba(34, 131, 128, 0.12);
  color: #1b716f;
  border-radius: 999px;
  padding: 0.28rem 0.72rem;
  font-weight: 700;
  font-size: 0.76rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.event-badge--food {
  background: rgba(255, 188, 66, 0.22);
  color: #c98f1e;
}

.event-badge--workshop {
  background: rgba(143, 45, 86, 0.14);
  color: #7e274b;
}

.event-badge--gathering,
.event-badge--market {
  background: rgba(34, 131, 128, 0.12);
  color: #1b716f;
}

.event-badge--audience {
  background: rgba(85, 98, 97, 0.12);
  color: #556261;
}

.dostodoly-form .form-control,
.dostodoly-form textarea,
.dostodoly-form select {
  border-radius: 12px;
  border: 1px solid var(--color-border-light);
  background: var(--color-white);
  color: var(--color-text-primary);
  min-height: 46px;
}

.dostodoly-form .form-control:focus,
.dostodoly-form textarea:focus,
.dostodoly-form select:focus,
.form-check-input:focus {
  border-color: var(--color-primary);
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(34, 131, 128, 0.18);
}

.form-check-input:checked {
  background-color: var(--color-primary);
  border-color: var(--color-primary);
}

.honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.dostodoly-messages {
  margin-bottom: 1.5rem;
}

.alert-success {
  background: rgba(46, 125, 50, 0.12);
  border-color: rgba(46, 125, 50, 0.2);
  color: #2e7d32;
}

.alert-warning {
  background: rgba(201, 143, 30, 0.14);
  border-color: rgba(201, 143, 30, 0.22);
  color: #c98f1e;
}

.alert-danger {
  background: rgba(179, 38, 30, 0.1);
  border-color: rgba(179, 38, 30, 0.18);
  color: #b3261e;
}

.alert-info {
  background: rgba(30, 111, 168, 0.1);
  border-color: rgba(30, 111, 168, 0.18);
  color: #1e6fa8;
}

#header {
  position: sticky;
  top: 0;
  z-index: 1100;
  background: rgba(251, 247, 241, 0.82);
  border-bottom: 1px solid rgba(216, 204, 190, 0.55);
  transition: background 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

#header.scrolled {
  background: rgba(255, 255, 255, 0.96);
  border-bottom-color: rgba(216, 204, 190, 0.92);
  box-shadow: 0 12px 32px rgba(23, 33, 32, 0.08);
}

.ds-header-navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: 88px;
}

.navbar-section.logo {
  margin-left: 25px;
  flex: 0 1 auto;
  min-width: 0;
}

.ds-navbar-brand {
  display: inline-flex;
  flex-direction: column;
  gap: 0.15rem;
  text-decoration: none !important;
  color: var(--color-text-primary) !important;
}

.ds-navbar-brand__title,
.ds-navbar-brand__tag {
  transition: color 0.18s ease, opacity 0.18s ease, transform 0.18s ease;
}

.ds-navbar-brand:hover,
.ds-navbar-brand:focus {
  color: var(--color-primary-dark) !important;
}

.ds-navbar-brand:hover .ds-navbar-brand__title,
.ds-navbar-brand:focus .ds-navbar-brand__title {
  color: var(--color-primary-dark) !important;
}

.ds-navbar-brand:hover .ds-navbar-brand__tag,
.ds-navbar-brand:focus .ds-navbar-brand__tag {
  color: var(--color-primary) !important;
  opacity: 1;
  transform: translateX(2px);
}

.ds-navbar-brand__title {
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 1;
}

.ds-navbar-brand__tag {
  font-size: 0.74rem;
  font-weight: 600;
  color: var(--color-text-secondary);
  opacity: 0.9;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.mobile-menu {
  display: none;
}

.button_container {
  position: fixed;
  top: 1.2rem;
  right: 1rem;
  z-index: 1200;
  width: 34px;
  height: 26px;
  cursor: pointer;
}

.button_container span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--color-text-primary);
  border-radius: 999px;
  transition: transform 0.2s ease, opacity 0.2s ease, top 0.2s ease;
}

.button_container .top {
  top: 0;
}

.button_container .middle {
  top: 11px;
}

.button_container .bottom {
  top: 22px;
}

.button_container.active .top {
  top: 11px;
  transform: rotate(45deg);
}

.button_container.active .middle {
  opacity: 0;
}

.button_container.active .bottom {
  top: 11px;
  transform: rotate(-45deg);
}

.mobile-container {
  display: none;
}

.overlay {
  position: fixed;
  inset: 0;
  z-index: 1150;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 6rem 1.5rem 2rem;
  background: linear-gradient(180deg, rgba(251, 247, 241, 0.82), rgba(255, 255, 255, 0.96)), var(--color-bg-page);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

.overlay.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.footer {
  background: linear-gradient(180deg, rgba(244, 235, 221, 0.92), rgba(251, 247, 241, 0.98));
  border-color: rgba(216, 204, 190, 0.88);
  color: var(--color-text-secondary);
  border-top-style: solid;
  border-top-width: 1px;
  padding: 2.5rem 0 3rem;
}

.footer a {
  color: var(--color-text-primary);
}

.footer-shell {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.5rem;
}

.footer-brand__title {
  display: inline-block;
  margin-bottom: 0.85rem;
  color: var(--color-text-primary);
  font-size: 1.2rem;
  font-weight: 700;
}

.footer-brand__copy {
  max-width: 38rem;
}

.footer-links h3 {
  margin-bottom: 0.9rem;
  color: #1b716f;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.8rem;
}

.footer-links ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-links li + li {
  margin-top: 0.5rem;
}

.feature-grid,
.link-grid,
.location-grid,
.event-related-grid,
.event-quickfacts,
.event-layout {
  --bs-gutter-x: 1rem;
  --bs-gutter-y: 1rem;
}

.home-page .row,
.bistro-page .row,
.project-page .row,
.events-page .row,
.event-page .row {
  --bs-gutter-y: 1.5rem;
}

.location-grid iframe {
  width: 100%;
}

.navbar-brand,
.nav-link,
.dropmenu a {
  font-weight: 700;
  letter-spacing: 0.01em;
}

.navbar-section.desktop-menu {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1.25rem;
  flex: 1;
  min-width: 0;
  overflow: hidden;
}

.dropmenu {
  min-width: 0;
  margin-right: 50px;
}

.dropmenu ul {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1.35rem;
  list-style: none;
  margin: 0;
  padding: 0;
  min-width: 0;
}

.dropmenu li {
  margin: 0;
}

.dropmenu li.active > a,
.dropmenu a:hover,
.dropmenu a:focus {
  color: var(--color-primary) !important;
  text-decoration: none;
}

.dropmenu a {
  color: var(--color-text-primary);
  font-size: 1.2rem;
  text-decoration: none;
}

.dropmenu .menu-phone .btn,
.overlay-menu .menu-phone .btn {
  align-items: center;
  color: #ffffff !important;
  display: inline-flex;
  font-size: 1rem;
  gap: 0.45rem;
}

.dropmenu .menu-phone .btn:hover,
.dropmenu .menu-phone .btn:focus,
.overlay-menu .menu-phone .btn:hover,
.overlay-menu .menu-phone .btn:focus {
  color: #ffffff !important;
}

.menu-phone__icon {
  flex: 0 0 auto;
}

.ds-navbar-actions {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.overlay-menu {
  max-width: 32rem;
  margin: 0 auto;
  text-align: center;
}

.overlay-menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.overlay-menu li + li {
  margin-top: 1rem;
}

.overlay-menu a {
  color: var(--color-text-primary);
  font-size: clamp(1.4rem, 5vw, 2.1rem);
  font-weight: 700;
  text-decoration: none;
}

.overlay-menu li.active > a {
  color: var(--color-primary);
}

.overlay-actions {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.section-heading,
.listing-header {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: end;
}

.listing-header,
.calendar-group,
.event-side-card,
.event-layout__main,
.section-card {
  background: rgba(251, 247, 241, 0.94);
  border-color: #d8ccbe;
  color: inherit;
}

.page-hero-banner {
  position: relative;
  overflow: hidden;
  padding: 9rem 0 5rem;
  margin: 0;
  background: linear-gradient(180deg, rgba(23, 33, 32, 0.26), rgba(23, 33, 32, 0.48)), var(--page-hero-image, none);
  background-color: #d8ccbe;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-hero-banner__content {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 0 auto;
  padding: 0;
  text-align: center;
  color: #ffffff;
}

.page-hero-banner__content h1,
.page-hero-banner__content .home-claim,
.page-hero-banner__content .lead {
  color: #ffffff;
}

.page-hero-banner__content .hero-actions {
  justify-content: center;
}

.page-hero-banner--placeholder {
  background: linear-gradient(180deg, rgba(23, 33, 32, 0.18), rgba(23, 33, 32, 0.34)), linear-gradient(135deg, rgba(34, 131, 128, 0.16), rgba(255, 188, 66, 0.2));
}

.section-card,
.calendar-group {
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  padding: 0;
}

.home-page .section-heading {
  margin-bottom: 1.25rem;
}

.home-story-card {
  display: grid;
  gap: 1rem;
}

.home-story-card {
  width: 100%;
  height: 100%;
}

.home-story-card .media-frame,
.home-story-card .media-placeholder {
  border-radius: 22px;
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.section-card {
  padding: 2rem;
}

.event-card-image {
  display: block;
  background: var(--color-bg-section);
  aspect-ratio: 1/1;
}

.event-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.event-card .card-body {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  min-height: 0;
  padding: 1.35rem;
}

.event-card {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
}

.event-card-meta,
.event-card-facts {
  display: flex;
  flex-wrap: wrap;
}

.event-card-meta {
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.event-card-facts {
  flex-direction: column;
  gap: 0.5rem 0.75rem;
  margin-bottom: 1.2rem;
  color: var(--color-text-secondary);
  font-size: 0.95rem;
}

.event-term-lines {
  display: grid;
  gap: 0.25rem;
}

.event-layout__side {
  display: grid;
  gap: 1rem;
}

.event-side-facts {
  display: grid;
  gap: 1rem;
  margin: 0;
}

.event-side-facts dd {
  margin-bottom: 0;
}

.event-card-date {
  font-weight: 700;
}

.event-card .card-text {
  color: var(--color-text-secondary);
  margin-bottom: 1rem;
}

.event-card-actions {
  margin-top: auto;
}

.event-meta-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.event-quickfacts,
.event-layout {
  --bs-gutter-x: 1rem;
  --bs-gutter-y: 1rem;
}

@media (min-width: 992px) {
  .event-layout__side {
    align-self: flex-start;
    position: sticky;
    top: 7rem;
  }
}

@media (max-width: 991px) {
  #header .desktop-menu {
    display: none;
  }
  .mobile-menu,
  .mobile-container {
    display: block;
  }
  .ds-header-navbar {
    min-height: 76px;
    padding: 0.9rem 0;
  }
  .project-grid,
  .event-content-section,
  .events-program-grid,
  .project-callout-visual {
    grid-template-columns: 1fr;
    display: grid;
  }
  .calendar-row {
    grid-template-columns: 1fr;
  }
  .footer-shell {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 767px) {
  .main-content {
    padding: 2rem 0 3rem;
  }
  .ds-header-navbar {
    min-height: 72px;
    padding-right: 3.5rem;
  }
  .page-copy,
  .listing-header,
  .event-side-card,
  .event-layout__main {
    padding: 1.25rem;
  }
  .section-heading,
  .listing-header {
    display: block;
  }
  .page-hero-banner {
    padding: 7.5rem 1.25rem 4rem;
  }
  .footer-shell,
  .event-meta-grid,
  .project-grid {
    grid-template-columns: 1fr;
  }
  .ds-navbar-brand__tag {
    display: none;
  }
  .overlay {
    padding-top: 5.5rem;
  }
  .hero-actions .btn,
  .event-card-actions .btn {
    width: 100%;
    margin: 0;
  }
}
.line {
  margin-top: 3rem;
  padding-left: 0;
  padding-right: 0;
}

/*# sourceMappingURL=custom.css.map */
