@import url('https://fonts.googleapis.com/css2?family=Noto+Serif:ital,wght@0,300;0,400;0,700;1,300&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap');


/* ============================================================ */
/* SUBPAGE OVERLAY                                             */
/* ============================================================ */

.new-page-container {
  position: fixed !important;
  top: 0;
  right: -100%;   /* Start poza ekranem – JS animuje do right: 0 */
  width: 100%;
  height: 100%;
  overflow-y: scroll;
  overflow-x: hidden;
  z-index: 2000;
  overscroll-behavior: none;
  -webkit-overflow-scrolling: touch;
  background-color: var(--basic-white);
  transition: right 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Prevent background .wrapper from scrolling while overlay is open */
.wrapper.scroll-locked {
  overflow: hidden !important;
}
/* ============================================================ */
/* SCROLL BLOCKER — absorbs scroll events under subpage        */
/* ============================================================ */

#scroll-blocker {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1999;
  background: transparent;
  pointer-events: all;
  overscroll-behavior: contain;
  overflow: hidden;
  touch-action: none;
}




/* ============================================================ */
/* EXIT BUTTON                                                  */
/* ============================================================ */

.exitBTN {
  position: fixed;
  top: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  display: flex !important;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 20px;
  cursor: pointer;
  z-index: 2100;
  transition: transform 0.3s ease, opacity 0.3s ease;
  border: 2px solid currentColor;
  line-height: 1;
  padding: 0 !important;
  text-decoration: none;
  float: none;
  margin: 0;
}

.exitBTN:hover {
  transform: scale(1.1) rotate(90deg);
  opacity: 0.7;
}

/* exitBTN color — set via JS data attribute since button is position:fixed */
.exitBTN { color: var(--basic-white); }
.exitBTN[data-theme="dark"] { color: var(--basic-black); }
/* domek page has dark-blue hero so exit should be white */
.exitBTN[data-theme="domek"] { color: var(--basic-white); }


/* ============================================================ */
/* GRAPHIC PLACEHOLDER                                         */
/* ============================================================ */

.img-placeholder {
  width: 100%;
  border: 2px dashed rgba(255, 255, 255, 0.25);
  border-radius: 6px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 24px 16px;
  text-align: center;
  background: rgba(255, 255, 255, 0.05);
  box-sizing: border-box;
}

.img-placeholder.light {
  border-color: rgba(0, 0, 0, 0.15);
  background: rgba(0, 0, 0, 0.03);
}

.img-placeholder-icon {
  font-size: 24px;
  opacity: 0.4;
  margin-bottom: 4px;
}

.img-placeholder-label {
  font-family: 'Noto Serif', sans-serif;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.45;
  color: inherit;
}

.img-placeholder-desc {
  font-family: 'Noto Serif', sans-serif;
  font-style: italic;
  font-weight: 300;
  font-size: 13px;
  opacity: 0.6;
  max-width: 220px;
  line-height: 1.5;
  color: inherit;
}


/* ============================================================ */
/* SCREEN STAT STRIP (used inside main scroll screens)        */
/* ============================================================ */

.screen-stats {
  display: flex;
  gap: 0;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  flex-wrap: wrap;
}

.screen-stats.light {
  border-top-color: rgba(0, 0, 0, 0.15);
}

.screen-stat {
  padding-right: 30px;
  margin-right: 30px;
  border-right: 1px solid rgba(255, 255, 255, 0.15);
}

.screen-stats.light .screen-stat { border-right-color: rgba(0, 0, 0, 0.12); }

.screen-stat:last-child {
  border-right: none;
  margin-right: 0;
  padding-right: 0;
}

.screen-stat-val {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 44px;
  line-height: 1;
  display: block;
  color: var(--basic-light-green);
}

.screen-stats.light .screen-stat-val { color: var(--basic-dark-blue); }

.screen-stat-label {
  font-family: 'Noto Serif', sans-serif;
  font-size: 11px;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  opacity: 0.6;
  display: block;
}



/* ============================================================ */
/* SCREEN PHOTO (real image in winnica / browar screens)       */
/* ============================================================ */

.screen-photo {
  width: 100%;
  margin-top: 20px;
  border-radius: 4px;
  max-height: 160px;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* ============================================================ */
/* WINNICA SCREEN — redesign overrides                        */
/* ============================================================ */

.winnica-screen {
  height: auto;
  min-height: 600px;
}

.winnica-screen .flex-container { align-items: stretch; }

.winnica-screen .text-container {
  padding: 60px 50px 50px 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.winnica-screen .right-side {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 30px 60px 30px 20px;
  gap: 20px;
}


/* ============================================================ */
/* BROWAR SCREEN — redesign overrides                         */
/* ============================================================ */

.browar-screen {
  height: auto;
  min-height: 600px;
}

.browar-screen .text-container {
  padding: 60px 50px 50px 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.browar-screen .right-side {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 30px 60px 30px 20px;
  gap: 20px;
}

.browar-screen .text-container h1,
.browar-screen .text-container h2,
.browar-screen .text-container h3 { color: var(--basic-white); }

.browar-screen .learnmore-container { padding-right: 40px; justify-content: center; }


/* ============================================================ */
/* WYDARZENIA SCREEN — full redesign                          */
/* ============================================================ */

.wydarzenia-screen {
  height: auto;
  min-height: 720px;
}

.wydarzenia-screen .flex-container {
  flex-direction: column;
  padding: 60px 80px 70px;
  gap: 32px;
  max-width: 1300px;
}

.w-heading h1 {
  color: var(--basic-black);
  padding: 0 0 6px 0;
}

.w-heading p {
  font-family: 'Noto Serif', sans-serif;
  font-weight: 300;
  font-size: 17px;
  color: rgba(0,0,0,0.5);
}

.events-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  width: 100%;
}

.event-card {
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: 4px;
  overflow: hidden;
  cursor: pointer;
  transition: border-color 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
}

.event-card:hover {
  border-color: rgba(0,0,0,0.3);
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
}

.event-card-image {
  width: 100%;
  aspect-ratio: 16 / 7;
  flex-shrink: 0;
}

.event-card-body {
  padding: 24px 28px 28px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}

.event-card-body h1 {
  font-size: 44px;
  padding: 0;
  color: var(--basic-black);
}

.event-card-body h3 {
  color: rgba(0,0,0,0.6);
  font-size: 15px;
}

.event-card-cta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
}

.event-card-cta h2 {
  font-size: 22px;
  color: var(--basic-black);
  cursor: pointer;
}

.event-card-cta img {
  width: 26px;
  height: 24px;
  transition: transform 0.4s ease;
  transform: translateX(6px);
}

.event-card:hover .event-card-cta img { transform: translateX(16px); }


/* ============================================================ */
/* DOMEK SCREEN — full redesign                               */
/* ============================================================ */

.domek-screen {
  position: relative;
  height: 600px;
  overflow: hidden;
  justify-content: flex-start !important;
}

@media (max-width: 900px) {
  .domek-screen {
    height: auto !important;
    min-height: 500px !important;
    overflow: visible !important;
  }
}

.domek-screen .flex-container {
  align-items: stretch;
  flex-wrap: nowrap;
  max-width: 100% !important;
  height: 100%;
  position: relative;
}

.domek-left {
  flex-shrink: 0;
  width: 50%;
  height: 100%;
  padding: 0;
  margin: 0;
  position: relative;
}

.domek-house-img {
  position: absolute !important;
  bottom: 0 !important;
  left: 0 !important;
  top: auto !important;
  width: auto !important;
  height: 100% !important;
  max-width: none !important;
  display: block;
  transform: none !important;
  margin: 0;
  padding: 0;
}

.domek-right {
  width: 50%;
  padding: 50px 70px 50px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
  flex-shrink: 0;
  box-sizing: border-box;
  position: relative;
  z-index: 2;
}

.domek-right h1,
.domek-right h2,
.domek-right h3 {
  color: var(--basic-white);
  padding: 0;
  text-align: left;
}

.domek-right h1 { font-size: 70px; line-height: 0.9; }
.domek-right h2 { font-size: 24px; line-height: 1.4; opacity: 0.85; }
.domek-right h3 { font-size: 16px; opacity: 0.65; max-width: 340px; margin-top: 4px; }

.domek-learnmore {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
}

.domek-learnmore h2 {
  font-size: 26px;
  cursor: pointer;
  transition: opacity 0.3s;
  opacity: 1 !important;
}

.domek-learnmore h2:hover { opacity: 0.7 !important; }

.domek-learnmore img {
  width: 28px;
  height: 26px;
  transition: transform 0.4s ease;
  transform: translateX(8px);
  cursor: pointer;
}

.domek-learnmore:hover img { transform: translateX(22px); }


/* ============================================================ */
/* O NAS SCREEN — full redesign                               */
/* ============================================================ */

.onas-screen {
  background-color: var(--basic-dark-blue);
  height: auto;
  min-height: 720px;
}

.onas-screen .flex-container {
  flex-direction: column;
  padding: 56px 80px 64px;
  gap: 36px;
  max-width: 1300px;
}

.onas-header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 16px;
}

.onas-header h1 {
  color: var(--basic-white);
  font-size: clamp(52px, 7vw, 90px);
  line-height: 0.9;
  padding: 0;
}

.onas-header p {
  font-family: 'Noto Serif', sans-serif;
  font-weight: 300;
  font-size: 16px;
  color: rgba(233,234,233,0.55);
  max-width: 380px;
  text-align: right;
  line-height: 1.6;
}

.onas-team-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  width: 100%;
}

.onas-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.onas-card-photo {
  width: 100%;
  aspect-ratio: 3 / 4;
  border-radius: 4px;
  overflow: hidden;
  background: rgba(0,0,0,0.2);
}

.onas-card-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 24px;
  color: var(--basic-white);
  line-height: 1;
}

.onas-card-role {
  font-family: 'Noto Serif', sans-serif;
  font-weight: 300;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(233,234,233,0.45);
  line-height: 1.4;
  margin-top: -6px;
}

.onas-cta {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
}

.onas-cta h2 {
  font-size: 26px;
  color: var(--basic-white);
  cursor: pointer;
  transition: opacity 0.3s;
}

.onas-cta h2:hover { opacity: 0.7; }

.onas-cta img {
  width: 28px;
  height: 26px;
  transition: transform 0.4s ease;
  transform: translateX(8px);
  cursor: pointer;
}

.onas-cta:hover img { transform: translateX(22px); }


/* ============================================================ */
/* SUBPAGE: SHARED LAYOUT                                      */
/* ============================================================ */

.sub-page {
  min-height: 100vh;
  padding-bottom: 80px;
  padding-top: 0;
}

.sub-hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 60px 80px 40px;
  gap: 40px;
  flex-wrap: wrap;
}

.sub-hero-text { flex: 1; min-width: 280px; }

.sub-hero-text h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(58px, 8vw, 116px);
  line-height: 0.9;
  padding: 0 0 14px 0;
}

.sub-hero-text h3 {
  font-family: 'Noto Serif', sans-serif;
  font-weight: 300;
  font-size: 20px;
  line-height: 1.6;
  max-width: 520px;
}

.sub-hero-icon {
  width: 200px;
  height: 200px;
  flex-shrink: 0;
  opacity: 0.9;
}

/* Stats band */
.sub-stats {
  display: flex;
  flex-wrap: wrap;
  border-top: 1px solid rgba(255,255,255,0.15);
  border-bottom: 1px solid rgba(255,255,255,0.15);
  margin: 0 80px 56px;
}

.sub-stats.light {
  border-color: rgba(0,0,0,0.1);
  margin-bottom: 40px;
}

.stat {
  flex: 1;
  min-width: 130px;
  padding: 24px 32px;
  border-right: 1px solid rgba(255,255,255,0.15);
}

.sub-stats.light .stat { border-right-color: rgba(0,0,0,0.1); }
.stat:last-child { border-right: none; }

.stat h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 48px;
  padding: 0 0 3px 0;
  line-height: 1;
  color: var(--basic-light-green);
}

.sub-stats.light .stat h1 { color: var(--basic-dark-blue); }

.stat h3 {
  font-family: 'Noto Serif', sans-serif;
  font-weight: 300;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  opacity: 0.6;
}

/* Section */
.sub-section {
  padding: 34px 80px;
}

.sub-section h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 32px;
  margin-bottom: 14px;
  letter-spacing: 0.04em;
}

.sub-section p,
.sub-section h3 {
  font-family: 'Noto Serif', sans-serif;
  font-weight: 300;
  font-size: 17px;
  line-height: 1.8;
  max-width: 700px;
}

.sub-section p + p { margin-top: 12px; }

.sub-two-col {
  display: flex;
  gap: 56px;
  flex-wrap: wrap;
  align-items: flex-start;
}

.sub-two-col > * { flex: 1; min-width: 260px; }

/* Divider */
.sub-divider {
  height: 1px;
  background: rgba(255,255,255,0.12);
  margin: 0 80px;
}

.sub-divider.light { background: rgba(0,0,0,0.1); }

/* Quote */
.sub-quote {
  padding: 36px 84px;
  font-family: 'Noto Serif', sans-serif;
  font-style: italic;
  font-weight: 300;
  font-size: clamp(17px, 2.1vw, 25px);
  line-height: 1.55;
  border-left: 4px solid var(--basic-light-green);
  margin: 14px 80px;
}

/* CTA strip */
.sub-cta {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 36px 80px 14px;
  flex-wrap: wrap;
}

.sub-cta h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  cursor: pointer;
  transition: opacity 0.3s;
}

.sub-cta h2:hover { opacity: 0.7; }

.sub-cta .arrow-icon {
  width: 28px;
  height: 26px;
  transition: transform 0.4s ease;
  transform: translateX(8px);
  cursor: pointer;
}

.sub-cta:hover .arrow-icon { transform: translateX(20px); }

/* Card grid */
.sub-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 18px;
  padding: 14px 80px 34px;
}

.sub-card {
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 4px;
  padding: 24px 20px;
}

.sub-card:hover { background: transparent; }
.sub-card.light { border-color: rgba(0,0,0,0.1); cursor: default; }
.sub-card.light:hover { background: transparent; }

.sub-card h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  margin-bottom: 8px;
}

.sub-card h3 {
  font-family: 'Noto Serif', sans-serif;
  font-weight: 300;
  font-size: 14px;
  line-height: 1.6;
  opacity: 0.75;
  max-width: none;
}

.card-tag {
  display: inline-block;
  font-family: 'Noto Serif', sans-serif;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.5;
  margin-bottom: 8px;
}

/* Wide photo block inside subpage */
.sub-photo-wide {
  width: calc(100% - 160px);
  margin: 0 80px 36px;
  border-radius: 4px;
  overflow: hidden;
}


/* ============================================================ */
/* SUBPAGE: WINNICA                                            */
/* ============================================================ */

.winnica-page {
  background-color: var(--basic-dark-blue);
  color: var(--basic-white);
}


/* ============================================================ */
/* SUBPAGE: BROWAR                                             */
/* ============================================================ */

.browar-page {
  background-color: #1c1405;
  color: var(--basic-white);
}

.browar-page .sub-hero-text h1 { color: var(--basic-light-green); }

.browar-page .stat h1 { color: var(--basic-light-green); }

.beer-style-tag {
  display: inline-block;
  background: rgba(225,198,94,0.12);
  border: 1px solid rgba(225,198,94,0.3);
  color: var(--basic-light-green);
  font-family: 'Noto Serif', sans-serif;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 2px;
  margin-bottom: 8px;
}


/* ============================================================ */
/* SUBPAGE: FEST                                               */
/* ============================================================ */

.fest-page {
  background-color: var(--basic-white);
  color: var(--basic-black);
}

.fest-page .sub-hero {
  background: var(--basic-dark-blue);
  padding-top: 30px;
}

.fest-page .sub-page {
  padding-top: 0;
}

.fest-page .sub-hero h1,
.fest-page .sub-hero h3 { color: var(--basic-white); }

.fest-page h2 { color: var(--basic-black); }

.fest-programme {
  padding: 0 80px 36px;
}

.fest-programme h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  margin-bottom: 16px;
  color: var(--basic-black);
}

.fest-day {
  display: flex;
  gap: 24px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(0,0,0,0.08);
  align-items: flex-start;
}

.fest-day-label {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 36px;
  line-height: 1;
  color: var(--basic-dark-blue);
  min-width: 68px;
  padding-top: 2px;
}

.fest-day-content h3 {
  font-family: 'Noto Serif', sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: var(--basic-black);
  margin-bottom: 4px;
}

.fest-day-content p {
  font-family: 'Noto Serif', sans-serif;
  font-weight: 300;
  font-size: 14px;
  line-height: 1.7;
  color: rgba(0,0,0,0.65);
}

.price-block {
  padding: 0 80px 40px;
}

.price-block h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  margin-bottom: 14px;
  color: var(--basic-black);
}

.price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid rgba(0,0,0,0.08);
  max-width: 560px;
}

.price-row h3 {
  font-family: 'Noto Serif', sans-serif;
  font-weight: 300;
  font-size: 15px;
  color: var(--basic-black);
  max-width: none;
}

.price-val {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 26px;
  color: var(--basic-dark-blue);
  flex-shrink: 0;
  margin-left: 24px;
}


/* ============================================================ */
/* SUBPAGE: DOMEK                                              */
/* ============================================================ */

.domek-page {
  background: var(--basic-white);
  color: var(--basic-black);
}

/* HERO */
.domek-hero {
  background: var(--basic-dark-blue);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 60px 80px 48px;
  gap: 40px;
  flex-wrap: wrap;
}

.domek-hero-text h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(58px, 8vw, 116px);
  line-height: 0.9;
  color: var(--basic-white);
  padding: 0 0 16px 0;
}

.domek-hero-text h3 {
  font-family: 'Noto Serif', sans-serif;
  font-weight: 300;
  font-size: 18px;
  line-height: 1.6;
  color: rgba(233,234,233,0.7);
  max-width: 400px;
}

.domek-hero-stats {
  display: flex;
  gap: 0;
  flex-shrink: 0;
  border-top: 1px solid rgba(255,255,255,0.18);
  padding-top: 20px;
}

.domek-stat {
  padding: 0 28px 0 0;
  margin-right: 28px;
  border-right: 1px solid rgba(255,255,255,0.15);
}

.domek-stat:last-child {
  border-right: none;
  margin-right: 0;
  padding-right: 0;
}

.domek-stat-val {
  display: block;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 40px;
  line-height: 1;
  color: var(--basic-light-green);
}

.domek-stat-label {
  display: block;
  font-family: 'Noto Serif', sans-serif;
  font-size: 11px;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: rgba(233,234,233,0.5);
  margin-top: 4px;
}

/* SLIDER */
.dslider {
  position: relative;
  width: 100%;
  background: var(--basic-black);
  user-select: none;
}

.dslider-stage {
  width: 100%;
  aspect-ratio: 16 / 7;
  overflow: hidden;
  cursor: grab;
}

.dslider-stage:active { cursor: grabbing; }

.dslider-track {
  display: flex;
  height: 100%;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.dslider-slide {
  min-width: 100%;
  height: 100%;
  flex-shrink: 0;
}

.dslider-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
}

.dslider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.35);
  border: none;
  color: var(--basic-white);
  font-size: 22px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.25s, opacity 0.25s;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(4px);
}

.dslider-btn:hover { background: rgba(0,0,0,0.65); }

.dslider-btn-prev { left: 20px; }
.dslider-btn-next { right: 20px; }

.dslider-counter {
  position: absolute;
  bottom: 14px;
  right: 20px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 16px;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.7);
  background: rgba(0,0,0,0.35);
  padding: 3px 10px;
  border-radius: 20px;
  backdrop-filter: blur(4px);
}

.dslider-dots {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  align-items: center;
}

.dslider-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
  display: block;
}

.dslider-dot.active {
  background: var(--basic-white);
  transform: scale(1.4);
}

/* rest of domek page */
.domek-page .sub-cta h2 { color: var(--basic-black); }
.domek-page .sub-section h2 { color: var(--basic-black); }
.domek-page .sub-section h3,
.domek-page .sub-section p { color: var(--basic-black); }
.domek-page .sub-quote { color: var(--basic-black); }
.domek-page .sub-divider { background: rgba(0,0,0,0.1); }

@media (max-width: 768px) {
  .domek-hero { padding: 36px 24px 36px; }
  .domek-hero-stats { width: 100%; }
  .dslider-stage { aspect-ratio: 4 / 3; }
  .dslider-btn { width: 38px; height: 38px; font-size: 16px; }
}


/* ============================================================ */
/* SUBPAGE: O NAS                                              */
/* ============================================================ */

.onas-page {
  background-color: var(--basic-dark-blue);
  color: var(--basic-white);
}

.team-member-section {
  padding: 38px 80px;
  display: flex;
  gap: 48px;
  align-items: flex-start;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  flex-wrap: wrap;
}

.team-member-photo {
  width: 180px;
  flex-shrink: 0;
}

.team-member-photo .img-placeholder {
  aspect-ratio: 3 / 4;
  height: auto;
}

.team-member-text { flex: 1; min-width: 260px; }

.team-member-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 52px;
  line-height: 0.95;
  color: var(--basic-white);
  margin-bottom: 4px;
}

.team-member-role {
  font-family: 'Noto Serif', sans-serif;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--basic-light-green);
  margin-bottom: 14px;
}

.team-member-bio {
  font-family: 'Noto Serif', sans-serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 1.8;
  color: rgba(233,234,233,0.78);
}


/* ============================================================ */
/* MEDIA QUERIES                                               */
/* ============================================================ */

@media (max-width: 900px) {
  .onas-team-row { grid-template-columns: repeat(2, 1fr); }
  .events-row { grid-template-columns: 1fr; }

  /* Domek: text top, image bottom */
  .domek-screen .flex-container {
    flex-direction: column !important;
    flex-wrap: nowrap !important;
    height: auto !important;
    min-height: 500px !important;
  }
  .domek-right {
    order: 1;
    width: 100% !important;
    padding: 30px 24px 20px !important;
    align-items: center !important;
    text-align: center !important;
    z-index: 2 !important;
    flex-shrink: 0 !important;
    height: auto !important;
  }
  .domek-right h1, .domek-right h2, .domek-right h3 { text-align: center !important; }
  .domek-learnmore { justify-content: center !important; }
  .domek-left {
    order: 2;
    width: 100% !important;
    height: 260px !important;
    position: relative !important;
    flex-shrink: 0 !important;
  }
  .screen-photo { max-height: 120px; }
}

@media (max-width: 768px) {
  .onas-screen .flex-container,
  .wydarzenia-screen .flex-container { padding: 36px 24px 48px; }
  .onas-header p { text-align: left; }
  .winnica-screen .text-container,
  .browar-screen .text-container { padding: 40px 24px; }
  .winnica-screen .right-side,
  .browar-screen .right-side { padding: 20px 24px 40px; }

  .sub-hero          { padding: 36px 24px 28px; }
  .sub-stats         { margin: 0 24px 32px; }
  .stat              { padding: 16px 18px; }
  .sub-section       { padding: 26px 24px; }
  .sub-card-grid     { padding: 10px 24px 28px; }
  .sub-cta           { padding: 26px 24px 10px; }
  .sub-quote         { padding: 24px; margin: 10px 24px; }
  .sub-divider       { margin: 0 24px; }
  .sub-photo-wide    { width: calc(100% - 48px); margin: 0 24px 28px; }
  .fest-programme    { padding: 0 24px 28px; }
  .price-block       { padding: 0 24px 28px; }
  .domek-section-title   { padding: 24px 24px 6px; font-size: 44px; }
  .domek-section-lead    { padding: 10px 24px 18px; }
  .domek-body-text       { padding: 8px 24px 18px; }
  .domek-divider         { margin: 8px 24px 24px; }
  .c-wrapper             { padding: 10px 0; }
  .c-wrapper i, .c-arrow { width: 36px; font-size: 28px; }
  .carousel img          { height: 200px; width: 270px; }
  .team-member-section   { padding: 28px 24px; flex-direction: column; }
  .team-member-photo     { width: 130px; }
  .team-member-name      { font-size: 38px; }
  .sub-hero-icon         { width: 130px; height: 130px; }
  .fest-day-label        { font-size: 30px; min-width: 56px; }
}


/* ============================================================ */
/* STOPKA                                                       */
/* ============================================================ */

.site-footer {
  background: var(--basic-black);
  color: var(--basic-white);
  width: 100%;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 60px;
  padding: 60px 80px 48px;
  flex-wrap: wrap;
  max-width: 1300px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

/* Brand / logo */
.footer-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 52px;
  line-height: 0.9;
  letter-spacing: 0.04em;
  color: var(--basic-light-green);
  margin-bottom: 14px;
}

.footer-brand p {
  font-family: 'Noto Serif', sans-serif;
  font-weight: 300;
  font-size: 14px;
  line-height: 1.7;
  color: rgba(233,234,233,0.45);
}

/* Nav columns */
.footer-links {
  display: flex;
  gap: 56px;
  flex-wrap: wrap;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 160px;
}

.footer-col-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(233,234,233,0.35);
  margin-bottom: 4px;
}

.footer-col a {
  font-family: 'Noto Serif', sans-serif;
  font-weight: 300;
  font-size: 14px;
  color: rgba(233,234,233,0.7);
  text-decoration: none;
  cursor: pointer;
  transition: color 0.25s;
  line-height: 1.4;
}

.footer-col a:hover { color: var(--basic-white); }

.footer-col p {
  font-family: 'Noto Serif', sans-serif;
  font-weight: 300;
  font-size: 14px;
  color: rgba(233,234,233,0.55);
  line-height: 1.7;
}

/* Bottom bar */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 80px;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-bottom span {
  font-family: 'Noto Serif', sans-serif;
  font-weight: 300;
  font-size: 12px;
  color: rgba(233,234,233,0.3);
  letter-spacing: 0.03em;
}

@media (max-width: 768px) {
  .footer-inner  { padding: 40px 24px 36px; gap: 36px; }
  .footer-links  { gap: 32px; }
  .footer-bottom { padding: 16px 24px; flex-direction: column; align-items: flex-start; }
}