.map-embed {font-family: system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, 'Helvetica Neue', Arial, 'Noto Sans', 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol'; max-width: 900px; margin: 0 auto; padding: 16px;}
.map-embed__header {margin-bottom: 8px;}
.map-embed__header h2 {margin: 0 0 4px; font-size: 1.125rem;}
.map-embed__header p {margin: 0; color: #555;}


/* Responsywne opakowanie 16:9 */
.map-embed__frame {position: relative; width: 100%; padding-bottom: 56.25%; border-radius: 16px; overflow: hidden; box-shadow: 0 8px 20px rgba(0,0,0,.08);}
.map-embed__frame iframe {position: absolute; inset: 0; width: 100%; height: 100%; border: 0;}


.map-embed__actions {display: flex; gap: 8px; flex-wrap: wrap; margin-top: 10px;}
.btn {display: inline-block; padding: 10px 14px; border-radius: 999px; text-decoration: none; border: 1px solid #ddd;}
.btn:hover {background: #f5f5f5;}
.btn--ghost {background: #fff;}


/* Tryb ciemny */
@media (prefers-color-scheme: dark) {
.map-embed {color: #e6e6e6;}
.map-embed__header p {color: #bbb;}
.btn {border-color: #444; color: #e6e6e6;}
.btn:hover {background: #222;}
.map-embed__frame {box-shadow: 0 8px 20px rgba(0,0,0,.35);}
}

nav a {
    margin-right: 12px;
    text-decoration: none;
    color: #333;
  }

  nav a:hover {
    text-decoration: underline;
  }

.main-header {
  position: sticky;
  top: 0;
  background: #fff;
  padding: 10px 20px;
  border-bottom: 1px solid #ddd;
  z-index: 1000;
}

 html {
    scroll-behavior: smooth;
  }

  	

/* === Kolory bazowe === */
:root {
  --green-dark: #3F6F2F;     /* nagłówki, akcenty */
  --green-main: #4F8A3A;     /* LOGO – główny zielony */
  --green-light: #7FB069;    /* hover, ikonki, detale */

  --beige: #f4efe4;
  --beige-light: #fbf9f4;
  --text-dark: #2b2b2b;
}


/* === Ogólne === */
body {
  font-family: system-ui, sans-serif;
  background-color: var(--beige);
  color: var(--text-dark);
  margin: 0;
}

h1, h2, h3 {
  color: var(--green-dark);
}

a {
  color: var(--green-dark);
  text-decoration: none;
}
a:hover {
  color: var(--green-light);
}

/* === Header / Menu === */
/* === HEADER === */
.main-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(251,249,244,0.95);
  backdrop-filter: blur(6px);
  border-bottom: 2px solid var(--green-dark);
}

.header-inner {
  max-width: 1200px;         /* WIĘCEJ PRZESTRZENI */
  margin: 0 auto;
  padding: 12px 24px;        /* kluczowe odstępy */
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 10px 20px;

  display: flex;
  align-items: center;
  justify-content: space-between; /* ⬅️ TO */
}

/* LOGO */
.logo img {
  height: 64px;
  width: auto;
  display: block;
}

/* NAWIGACJA */
.main-nav {
  display: flex;
  gap: 24px;
}

.main-nav a {
  position: relative;
  font-weight: 600;
  color: var(--green-dark);
  padding: 6px 0;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: var(--green-light);
  transition: width 0.25s ease;
}

.main-nav a:hover::after {
  width: 100%;
}

/* ACTIVE LINK (opcjonalnie) */
.main-nav a.active {
  color: var(--green-light);
}

/* MOBILE */
@media (max-width: 768px) {
  .header-inner {
    flex-direction: column;
    gap: 12px;
  }

  .main-nav {
    gap: 16px;
  }
}


/* === Sekcje === */
section {
  scroll-margin-top: 200px;
  padding: 60px 20px;
  background-color: var(--beige-light);
  margin: 20px auto;
  border-radius: 12px;
  max-width: 900px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

/* Naprzemienne kolory tła dla sekcji */
section:nth-of-type(even) {
  background-color: var(--beige);
}



/* === Przycisk / linki mapy === */
.btn {
  display: inline-block;
  padding: 10px 14px;
  border-radius: 999px;
  text-decoration: none;
  border: 1px solid var(--green-dark);
  color: var(--green-dark);
  background: var(--beige-light);
  transition: all 0.2s ease;
}
.btn:hover {
  background: var(--green-light);
  color: white;
}
.btn--ghost {
  background: white;
}

/* === Mapa === */
.map-embed {
  max-width: 900px;
  margin: 0 auto;
  padding: 16px;
  font-family: inherit;
}
.map-embed__header h2 {
  color: var(--green-dark);
}
.map-embed__header p {
  color: var(--text-dark);
}
.map-embed__frame {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}
.map-embed__frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.map-embed__actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 10px;
}

/* === Tabela godzin otwarcia === */
.opening-hours table {
  width: 100%;
  border-collapse: collapse;
}
.opening-hours td {
  padding: 8px 0;
  border-bottom: 1px solid var(--green-light);
}
.opening-hours tr:last-child td {
  border-bottom: none;
}
.opening-hours .closed td:last-child {
  color: #b71c1c;
  font-weight: 600;
}

/* === Stopka === */
.site-footer {
    background: #f8f8f8;
    color: #333;
    padding: 40px 20px 20px;
    font-family: system-ui, sans-serif;
    border-top: 1px solid #ddd;
  }

  .footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
    max-width: 900px;
    margin: 0 auto 20px;
  }

  .footer-info {
    flex: 1 1 250px;
  }

  .footer-nav {
    display: flex;
    flex-direction: column;
    gap: 6px;
  }

  .footer-nav a {
    color: #333;
    text-decoration: none;
  }

  .footer-nav a:hover {
    text-decoration: underline;
  }

  .footer-bottom {
    text-align: center;
    font-size: 0.85rem;
    color: #666;
  }

.logo img {
  width: 300px; 
  height: auto; 
}

.logo {
  padding: 30px 10px;
  background-color: var(--beige-light);
  margin: 10px auto;
  border-radius: 12px;
  max-width: 900px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}


/* === GALERIA / SLIDER === */
.gallery {
  max-width: 900px;
  margin: 40px auto;
}

.slider {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.15);
  background: #000;
}

.slides {
  display: flex;
  width: 100%;
  aspect-ratio: 16 / 9;
  transition: transform 0.6s ease-in-out;
}

.slides img {
  width: 100%;
  flex: 0 0 100%;
  object-fit: cover;
}

/* Strzałki */
.nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.85);
  border: none;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 28px;
  color: #333;
}

.prev { left: 12px; }
.next { right: 12px; }

/* Kropki */
.dots {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
}

.dots button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.6);
}

.dots button.active {
  background: white;
}



/* === OFERTA === */
.offer {
  background: var(--beige-light);
}

.offer h2 {
  text-align: center;
  margin-bottom: 40px;
}

.offer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.offer-card {
  background: white;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.offer-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 26px rgba(0,0,0,0.12);
}

.offer-card h3 {
  margin-top: 0;
  margin-bottom: 16px;
  color: var(--green-dark);
  font-size: 1.2rem;
}

.offer-card ul {
  padding-left: 0;
  list-style: none;
}

.offer-card li {
  padding-left: 22px;
  margin-bottom: 10px;
  position: relative;
}

.offer-card li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: var(--green-light);
  font-weight: bold;
}

.about {
  background: var(--beige);
}

.about-wrapper {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
  align-items: center;
}

.about-text h2 {
  margin-top: 0;
}



.about-lead {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--green-dark);
}

.about-text p {
  line-height: 1.7;
  margin-bottom: 16px;
}

.about-highlight {
  background: var(--beige-light);
  border-left: 4px solid var(--green-dark);
  padding: 14px 16px;
  border-radius: 8px;
}

/* Prawa kolumna – atuty */
.about-features {
  display: grid;
  gap: 16px;
}

.feature {
  background: white;
  padding: 18px;
  border-radius: 14px;
  text-align: center;
  box-shadow: 0 6px 16px rgba(0,0,0,0.08);
}

.feature span {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--green-dark);
  display: block;
  margin-bottom: 6px;
}

.feature p {
  margin: 0;
  font-size: 0.95rem;
}

/* Responsywność */
@media (max-width: 768px) {
  .about-wrapper {
    grid-template-columns: 1fr;
  }
}

/* === KONTAKT === */
.contact {
  background: var(--beige-light);
}

.contact h2 {
  text-align: center;
  margin-bottom: 40px;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.contact-card {
  background: white;
  padding: 28px;
  border-radius: 18px;
  box-shadow: 0 8px 22px rgba(0,0,0,0.08);
}

.contact-card h3 {
  margin-top: 0;
  margin-bottom: 20px;
  color: var(--green-dark);
}

.contact-item {
  font-size: 1.05rem;
  margin-bottom: 14px;
}

.contact-item a {
  font-weight: 600;
}

.contact-actions {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

/* GODZINY */
.hours {
  width: 100%;
  border-collapse: collapse;
}

.hours td {
  padding: 10px 0;
  border-bottom: 1px solid var(--green-light);
}

.hours tr:last-child td {
  border-bottom: none;
}

.hours .closed td:last-child {
  color: #b71c1c;
  font-weight: 600;
}

/* MOBILE */
@media (max-width: 600px) {
  .contact-actions {
    flex-direction: column;
  }
}

html {
  font-size: 18px; /* było domyślnie ~16px */
}

body {
  line-height: 1.75;
}

h1 { font-size: 2.2rem; }
h2 { font-size: 1.7rem; }
h3 { font-size: 1.3rem; }


.logo {
  padding: 0;
  margin: 0;
  border: none;
  box-shadow: none;
}

.main-header {
  background-color: #FFFFFF; 
}