@charset "UTF-8";
a.wixui-rich-text__text {
  color: #3F7C4A;
  text-decoration: none;
}

/* Text Image Repeater Block Styles */
/* Hero Block Styles */
.hero-section {
  min-height: 100vh;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  background: var(--hero-bg, url("assets/hero-bg.jpg"));
  background-size: cover;
  background-position: center;
  background-attachment: scroll;
}

/* Overlay matching the menu/header color */
.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.2);
}

.hero-content {
  max-width: 800px;
  padding: 2rem;
  color: #FFFFFF;
  position: relative;
  z-index: 1;
}

.hero-title {
  font-size: clamp(2rem, 6vw, 4rem);
  color: #D89936;
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-description {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  line-height: 1.8;
}

.hero-button {
  display: inline-block;
  padding: 1.5rem 2rem;
  border: 2px solid #FFFFFF;
  background: transparent;
  color: #FFFFFF;
  text-decoration: none;
  border-radius: 5px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.hero-button:hover {
  background: #FFFFFF;
  color: #333;
}

/* Page hero height override for uniformity */
.page .hero-section {
  min-height: 60vh;
  height: 60vh;
}

@media (max-width: 768px) {
  .page .hero-section {
    min-height: 40vh;
    height: 40vh;
  }
}
/* Offer title color */
h2.offer-title {
  color: #3F7C4A;
}

/* Offer section - mobile wider cards with side padding */
@media (max-width: 768px) {
  .offer-section {
    padding: 2rem 1.5rem;
  }
  .offer-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 0 1rem;
  }
  .offer-card {
    width: 100%;
    border-radius: 15px;
  }
}
/* Hero – mobile refinements */
@media (max-width: 768px) {
  .hero-content {
    max-width: 90%;
    padding: 1.5rem;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 10px;
  }
  .hero-title {
    font-size: 1.8rem;
    margin-bottom: 1rem;
  }
  .hero-description {
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 1rem;
  }
  .hero-button {
    padding: 1rem 1.5rem;
  }
}
/* Jadlospisy archive hero */
.archive-hero {
  min-height: 40vh;
  display: flex;
  align-items: center;
  position: relative;
  background: var(--archive-hero-bg, url("assets/hero-bg.jpg"));
  background-size: cover;
  background-position: center;
}

.archive-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.15);
}

.archive-hero .hero-content {
  position: relative;
  z-index: 1;
  padding: 3rem 0;
  text-align: left;
}

.archive-hero .hero-title {
  color: #D89936;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  font-size: clamp(1.75rem, 5vw, 3rem);
  margin: 0;
}

/* Offer button styles (moved from style.css) */
.offer-button {
  display: inline-block;
  padding: 0.8rem 1.5rem;
  border: 2px solid #FFFFFF;
  background: transparent;
  color: #FFFFFF;
  text-decoration: none;
  border-radius: 5px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.offer-button:hover {
  background: #FFFFFF;
  color: #3F7C4A;
}

/* Parallax background on front page and pages */
.home .hero-section,
.page .hero-section {
  background-position: center;
  background-size: cover;
  will-change: background-position;
}

.text-image-repeater {
  padding: 4rem 0;
}
.text-image-repeater .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.text-image-section {
  margin-bottom: 4rem;
}

.text-image-content {
  display: flex;
  align-items: stretch;
  min-height: 500px;
  background: #3F7C4A;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Ensure 'right' layout follows markup order (text then image) */
.text-image-section.right .text-image-content {
  flex-direction: row;
}

.image-column {
  flex: 1;
  position: relative;
  overflow: hidden;
}

.image-wrapper {
  width: 100%;
  height: 100%;
  position: relative;
}

.section-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.image-wrapper:hover .section-image {
  transform: scale(1.05);
}

.text-column {
  flex: 1;
  display: flex;
  align-items: center;
  padding: 3rem;
  position: relative;
}

.text-overlay {
  background: none;
  color: #FFFFFF;
  padding: 0;
  border-radius: 10px;
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
}

.section-heading {
  font-size: 2rem;
  font-weight: bold;
  margin: 0 0 1rem 0;
  color: #FFFFFF;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.section-subheading {
  font-size: 0.88rem;
  margin: 0 0 1.5rem 0;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 400;
}

.section-content {
  font-size: 0.8rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.95);
}

.section-content p {
  margin-bottom: 1rem;
}

.section-content ul {
  margin: 1rem 0;
  padding-left: 2rem;
}

.section-content li {
  margin-bottom: 0.5rem;
}

.section-button {
  display: inline-block;
  background: #D89936;
  color: #FFFFFF;
  padding: 0.5rem 2rem;
  text-decoration: none;
  border-radius: 5px;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 2px solid #D89936;
}

.section-button:hover {
  background: #3F7C4A;
  color: #FFFFFF;
  border-color: #3F7C4A;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(63, 124, 74, 0.3);
}

/* Services Grid Block Styles */
.services-grid {
  padding: 4rem 0;
  background: #F3F3F3;
}

.services-header {
  text-align: center;
  font-size: 2.5rem;
  font-weight: bold;
  color: #3F7C4A;
  margin-bottom: 3rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.services-grid-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  max-width: 1480px;
  margin: 0 auto;
}

.service-box {
  background: #FFFFFF;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.service-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.service-image {
  height: 250px;
  overflow: hidden;
  position: relative;
}

.service-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

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

.service-content {
  padding: 2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.service-title {
  font-size: 1.5rem;
  font-weight: bold;
  color: #000000;
  margin: 0 0 1rem 0;
  text-align: center;
}

h3.service-title {
  color: #000000;
  text-shadow: none;
}

.service-description {
  font-size: 1rem;
  line-height: 1.6;
  color: #000000;
  margin-bottom: 1.5rem;
  flex: 1;
}

.service-description p {
  margin-bottom: 1rem;
}

.service-downloads {
  margin-top: auto;
}

.download-link {
  display: block;
  color: #3F7C4A;
  text-decoration: none;
  padding: 0.5rem 0;
  font-weight: 500;
  transition: color 0.3s ease;
  border-bottom: 1px solid transparent;
}

.download-link:hover {
  color: #D89936;
  border-bottom-color: #D89936;
}

/* About Section Styles - Full Width */
.about-section {
  padding: 4rem 0;
  position: relative;
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.about-section::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
}

.about-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 2rem;
  text-align: center;
}

.about-heading {
  color: #3F7C4A;
  font-size: 2.5rem;
  margin-bottom: 2rem;
  font-weight: 800;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.about-text {
  color: #D89936;
  font-size: 1.1rem;
  line-height: 1.8;
}

.about-text p {
  margin-bottom: 1.5rem;
}

/* Features Grid Styles */
.features-grid {
  padding: 4rem 0;
  background: #F3F3F3;
}

.features-grid-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  max-width: 1480px;
  margin: 0 auto;
}

.feature-box {
  background: #FFFFFF;
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.feature-image {
  width: 150px;
  height: 150px;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid #3F7C4A;
}

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

.feature-title {
  color: #3F7C4A;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  font-weight: 700;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.feature-description {
  color: #D89936;
  line-height: 1.6;
  font-size: 1rem;
}

.feature-description p {
  margin-bottom: 1rem;
}

/* Menu Cards (Menu / Karta dań) */
.menu-cards {
  position: relative;
  padding: 4rem 0;
  color: #FFFFFF;
  overflow: hidden;
}

.menu-cards-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  z-index: 0;
}

.menu-cards-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 1;
}

.menu-cards-inner {
  position: relative;
  z-index: 2;
  text-align: center;
}

.menu-cards-title {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  color: #D89936;
  margin-bottom: 2rem;
}

.menu-cards-intro {
  max-width: 780px;
  margin: 0 auto 2.5rem;
  font-size: 1rem;
  line-height: 1.7;
}

.menu-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2.5rem;
  align-items: stretch;
}

.menu-card {
  background: rgba(63, 124, 74, 0.92);
  border-radius: 15px;
  padding: 2.5rem 2rem;
  position: relative;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  backdrop-filter: blur(8px);
}

.menu-card-header {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.menu-card-title-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.menu-card-number {
  width: 64px;
  height: 64px;
  flex-shrink: 0;
  border-radius: 999px;
  background: #FFFFFF;
  color: #3F7C4A;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.8rem;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.menu-card-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: #D89936;
  margin: 0;
  text-align: center;
}

.menu-card-subtitle {
  margin: 0.5rem 0 0;
  font-size: 0.95rem;
}

.menu-card-pdf-preview {
  margin: 1.5rem 0;
}
.menu-card-pdf-preview a {
  display: block;
  text-decoration: none;
}

.menu-card-pdf-image {
  display: block;
  width: 60%;
  max-width: 60%;
  height: auto;
  margin: 0 auto;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.menu-card-pdf-image:hover {
  transform: scale(1.02);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.menu-card-pdf-embed {
  display: block;
  width: 100%;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.menu-card-pdf-embed-viewer {
  width: 100%;
  height: 600px;
  border: none;
  display: block;
}

.menu-card-image {
  margin-bottom: 2rem;
}

.menu-card-image img {
  display: block;
  width: 100%;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.menu-card-pdf-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.1);
  border: 2px dashed rgba(255, 255, 255, 0.3);
  border-radius: 15px;
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
  min-height: 200px;
  flex-direction: column;
}
.menu-card-pdf-link:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
}

.menu-card-pdf-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  color: currentColor;
  opacity: 0.9;
}

.menu-card-pdf-text {
  font-size: 0.9rem;
  font-weight: 500;
  text-align: center;
  margin-top: 1rem;
}

.menu-card-groups {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.menu-card-groups--upper {
  margin-bottom: 1.5rem;
}

.menu-card-group-text {
  font-size: 0.95rem;
}

.menu-card-button {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.6rem 1.6rem;
  border-radius: 999px;
  border: 2px solid #FFFFFF;
  background: transparent;
  color: #FFFFFF;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.25s ease;
}

.menu-card-button:hover {
  background: #FFFFFF;
  color: #3F7C4A;
  transform: translateY(-1px);
}

@media (max-width: 768px) {
  .menu-cards {
    padding: 2.5rem 0;
  }
  .menu-cards-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .menu-card {
    padding: 2rem 1.5rem;
  }
}
/* Responsive styles for new blocks */
@media (max-width: 768px) {
  .text-image-content {
    flex-direction: column !important;
    min-height: auto;
  }
  /* For right-aligned sections on desktop, place image above text on mobile */
  .text-image-section.right .image-column {
    order: 0;
  }
  .text-image-section.right .text-column {
    order: 1;
  }
  .image-column {
    height: 300px;
  }
  .text-column {
    padding: 2rem 1.5rem;
  }
  .text-overlay {
    padding: 0;
  }
  .section-heading {
    font-size: 1.4rem;
  }
  .services-header {
    font-size: 1.4rem;
  }
  .services-grid-container {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .service-box {
    margin-bottom: 1rem;
  }
  .service-content {
    padding: 1.5rem;
  }
  .service-title {
    font-size: 1.3rem;
    text-align: left;
  }
  .about-heading {
    font-size: 1.8rem;
  }
  .about-text {
    font-size: 1rem;
  }
  .features-grid-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .feature-image {
    width: 120px;
    height: 120px;
  }
}
/* Google Reviews Block */
.google-reviews {
  padding: 4rem 0;
  background: #F3F3F3;
}

.google-reviews-inner {
  display: grid;
  grid-template-columns: minmax(0, 320px) minmax(0, 1.5fr);
  gap: 2.5rem;
  align-items: flex-start;
}

.google-reviews-title {
  font-size: 1.8rem;
  font-weight: 800;
  color: #3F7C4A;
  margin: 0 0 1.5rem 0;
}

.google-reviews-title span {
  color: #D89936;
}

.google-reviews-rating {
  margin-bottom: 1.5rem;
}

.google-rating-value {
  font-size: 2.5rem;
  font-weight: 800;
  color: #3F7C4A;
}

.google-rating-stars {
  font-size: 1.1rem;
  margin: 0.5rem 0;
}

.google-rating-stars .star {
  margin-right: 2px;
}

.google-rating-stars .star--full {
  color: #D89936;
}

.google-rating-stars .star--half {
  color: #D89936;
  opacity: 0.7;
}

.google-rating-stars .star--empty {
  color: rgba(43, 43, 43, 0.2);
}

.google-rating-count {
  margin: 0;
  font-size: 0.95rem;
  color: #2B2B2B;
}

.google-reviews-cta {
  display: inline-block;
  margin-top: 1.5rem;
  padding: 1rem 1.5rem;
  border-radius: 999px;
  border: 2px solid #3F7C4A;
  color: #3F7C4A;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.2s ease;
}

.google-reviews-cta:hover {
  background: #3F7C4A;
  color: #FFFFFF;
  transform: translateY(-1px);
}

.google-reviews-debug {
  margin-top: 1rem;
  font-size: 0.85rem;
  color: #c0392b;
}

.google-reviews-empty {
  margin-top: 1rem;
  font-size: 0.9rem;
  color: #2B2B2B;
}

.google-reviews-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.google-review-card {
  background: #FFFFFF;
  border-radius: 15px;
  padding: 1.5rem 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.google-review-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.google-review-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.google-review-avatar {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: #3F7C4A;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  font-weight: 700;
}

.google-review-meta {
  display: flex;
  flex-direction: column;
}

.google-review-name {
  font-weight: 600;
  color: #2B2B2B;
}

.google-review-time {
  font-size: 0.85rem;
  color: rgba(43, 43, 43, 0.7);
}

.google-review-rating {
  text-align: right;
  font-size: 0.9rem;
}

.google-review-rating-value {
  font-weight: 600;
  margin-right: 0.5rem;
}

.google-review-stars {
  color: #D89936;
}

.google-review-text {
  font-size: 0.95rem;
  color: #2B2B2B;
}

.google-review-text p {
  margin: 0;
}

@media (max-width: 768px) {
  .google-reviews-inner {
    grid-template-columns: minmax(0, 1fr);
  }
  .google-review-card {
    padding: 1.5rem;
  }
}
