/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  html, body {
    font-family: "Arial", sans-serif;
    color: #333;
    line-height: 1.6;
    background: linear-gradient(to bottom right, #e3e7e1, #c8d3c5);
  }

  h2 {
    font-family: Georgia, 'Times New Roman', Times, serif;
    font-size: 3rem;
    text-align: center;
    margin-bottom: 30px;
  }
  
  /* NAGŁÓWEK (HEADER) */
  .main-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
    background-color: rgba(255, 255, 255, 0.8);
    /* lekka przezroczystość – można usunąć, jeśli wolisz pełne krycie */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    position: sticky; 
    top: 24px;
    z-index: 999;
    border-radius: 10px;
    padding: 30px;
    margin: 24px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  }
  
  .logo {
    display: flex;
    align-items: center;
  }
  
  .logo img {
    margin-right: 10px;
    border-radius: 50%;
    max-width: 74px;
  }
  
  .logo h1 {
    font-size: 1.3rem;
    margin: 0;
    color: #028a0f;
	white-space: nowrap;
  }
  
  .nav-links {
    list-style: none;
    display: flex;
  }
  
  .nav-links li {
    margin-left: 20px;
  }
  
  .nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 600;
    transition: color 0.3s;
  }
  
  .nav-links a:hover {
    color: #028a0f;
  }

  a {
    color: #028a0f;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
  }

  a:hover {
    color: #026f0c;
    text-decoration: underline;
  }
  
  /* SEKCJA HERO */
  .hero-section {
    min-height: 75vh;
    display: flex;
    align-items: center;
    justify-content: left;
    text-align: center;
    position: relative;
    background-color: rgba(220, 221, 216, 1); 
    background-image: url(../img/hero_background.png);
    background-repeat: no-repeat;
    background-position: right bottom;
    background-size: 70%;
    /* delikatne tło, można dodać obrazek, gradient, etc. */
    border-radius: 10px;
    padding: 30px;
    margin: 24px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  }
  
  .hero-content {
    max-width: 800px;
  }
  
  .hero-content h2 {
    font-size: 3rem;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
    margin-bottom: 15px;
    color: white;
    font-family: Georgia, 'Times New Roman', Times, serif;
  }
  
  .hero-content p {
    font-size: 1.2rem;
    margin-bottom: 25px;
    color: #555;
    background-color: rgba(220, 221, 216, 0.7);
  }
  
  .btn-hero {
    font-size: 1.1rem;
    padding: 12px 24px;
    background: #028a0f;
    color: #fff;
  }

  .btn-secondary {
    background: #FFF;
    font-size: 1.1rem;
    padding: 12px 24px;
    color:#028a0f;
    border: 2px solid #028a0f;
  }
  
  /* PRZYCISKI */
  .btn {
    
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 30px;
    display: inline-block;
    transition: background 0.3s, transform 0.2s;
    cursor: pointer;
    border: 2px solid #028a0f;
  }
  
  .btn:hover {
    background: #026f0c;
    transform: translateY(-2px);
  }

  .btn-secondary:hover {
    color: #FFF;
  }
  
  /* KONTENER SEKCJI */
  .section-container {
    width: 100%;
    margin: 0px auto;
    padding: 0 20px;
  }

  .section-fullwidth {
    width: 100%;
    padding: 24px;
  }

  .section-fullwidth img {
    max-width: 300px;
    border-radius: 10px;
  }

  .section-flex {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    gap: 24px;
    justify-content: center;
  }

  .flexible {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 48px;
  }

  .flexible p {
    flex: 1 1 30%;
    max-width: 300px;
  }

  .flexible-vert {
    display: flex;
    flex-wrap: nowrap;
    align-items: first baseline;
    gap: 48px;
    flex-direction: column;
  }
  
  /* KARTA (card) – z efektem uniesienia */
  .card {
    background: #fff;
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  }
  
  /* Elastyczne układy w kartach (np. "O mnie", Kontakt) */
  .card-flex {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px;
  }
  
  .card-flex img {
    max-width: 350px;
    border-radius: 10px;
    /* Ewentualnie możesz dodać box-shadow */
  }
  
  .card-text {
    flex: 1;
    min-width: 300px;
  }

  .card p {
    background-color: rgba(255, 255, 255, 0.8);
  }

  .card ul {
    width: fit-content;
    background-color: rgba(255, 255, 255, 0.8);
  }

  /* sekcja o mnie */
  #about h2 {
    margin-bottom: 0px;
  }
  
#about h3 {
    font-family: Georgia, 'Times New Roman', Times, serif;
    font-size: 1.2rem;
    margin-bottom: 0px;
  }

  #about ul {
    list-style: none;
    padding: 0;
  }

  #about ul li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 8px;
  }

  #about ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 4px;
    width: 20px;
    height: 20px;
    background-image: url('../img/icons/bullet.png');
    background-size: contain;
    background-repeat: no-repeat;
  }

  /* Galeria */
  #gallery {
    overflow-x:auto;
    scroll-behavior: smooth;
    justify-content: flex-start;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* Internet Explorer i Edge */
  }

  #gallery .card {
    background-image: url(../therapy-01-reiki.png);
    background-size: contain;
  }

  #gallery .card img {
    object-fit: cover;
  }

  /* Sekcja o miejscu */
.break .flexible-vert {
  justify-content: center;
  align-items: center;
  text-align: center;
  width: 70%;
  gap: 24px;
}

.break {
  min-height: 60vh;;
  text-align: center;
  font-size: 1.5em;
  justify-content: center;
  align-items: center;
}

.break h2 {
  font-family: "Grape Nuts", cursive;
}

  /* Artykuły */
  #articles {

  }

  #articles .section-flex {
    align-items:flex-start;
    flex: 1 1 0;
  }

  #main-article {
    flex-grow: 1;
  }

  #main-article .card {
    background-color: #555;
  }

   #main-article .card img {
    width: 100%;
    height: 200px;
    object-fit:contain;
    background-color: #555;
  }

  #main-article .card h3 {
    color: white;
  }

  #main-article .card p {
    color:white;
    background-color: rgba(255, 255, 255, 0.0);
  }


  #previous-articles {
    flex-grow: 1;
  }

  #previous-articles .card {
    min-width: 45vw;
  }

  #previous-articles .card img {
    max-width: 100px;
    flex-grow: 1;
  }

  #previous-articles .card div {
    flex-grow: 3;
  }


  .therapy-grid {
    display: grid;
    gap: 25px;
    grid-template-columns: repeat(auto-fill, minmax(600px, 1fr));
  }
  
  .therapy-card {
    /*background-color: #026f0c;*/
  }

  .therapy-card p {
    margin-bottom: 12px;
  }

  .therapy-card ul {
    margin-bottom: 12px;
  }


  .therapy-card h3 {
    border-bottom: #888 solid 1px;
    margin-bottom: 8px;
    padding-bottom: 8px;
  }

  #therapy-reiki {
    background-image: url(../therapy-01-reiki.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
  }

  #therapy-akupunktura {
    background-image: url(../therapy-01-reiki.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
  }

  #therapy-banki {
    background-image: url(../therapy-01-reiki.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
  }

  #therapy-masaz {
    background-image: url(../therapy-01-reiki.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
  }

  #therapy-visit {
    background-color: rgba(220, 221, 216, 1); 
  }

  #therapy-additional {
    /*grid-column: span 2;*/
  }
  /* "Oferta" – siatka kart */

  .offer-cards {
    display: grid;
    gap: 30px;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  }

  .offer-card h3 {
    border-bottom: #888 solid 1px;
    margin-bottom: 8px;
    padding-bottom: 8px;
  }

  #offer-reiki {
    background-image: url(../therapy-01-reiki.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
  }

  #offer-banki-spin {
    background-image: url(../therapy-02-bankispin.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
  }

  #offer-banki-antycel {
    background-image: url(../therapy-02-bankispin.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
  }

  #offer-banki-fire {
    background-image: url(../therapy-02-bankispin.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
  }

  #offer-banki-muscles {
    background-image: url(../therapy-02-bankispin.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
  }

  #offer-sun-massage {
    background-image: url(../therapy-02-bankispin.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
  }

  #offer-akupunktura {
    background-image: url(../therapy-02-bankispin.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
  }

  #offer-antinocotine {
    background-image: url(../therapy-02-bankispin.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
  }

  #offer-for-children {
    background-image: url(../therapy-02-bankispin.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
  }

  #offer-weight-loss {
    background-image: url(../therapy-02-bankispin.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
  }

  
  /* FAQ sekcja */

  .faq-grid {
    /*display: grid;
    gap: 2%;
    /*grid-template-columns: [first-col] 49% [second-col] 49%;;;*/
    /*grid-template-columns: repeat(auto-fill, minmax(600px, 1fr));*/
    display: flex;
    gap: 2%;
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .faq-card {
    flex: 1 1 40rem;
  }

  .faq-section h2 {
    margin-bottom: 30px;
  }

  #visit-rules {
    background-color: rgba(220, 221, 216, 1); 
  }

  #rules-entry {
    margin-bottom: 24px;
  }

  #rules-entry p {
    background-color: rgba(220, 221, 216, 1); 
    margin-bottom: 12px;
  }

  /* Sekcja "Dlaczego terapie naturalne?" */
  #why .card {
    background-image: url(../why_background_4.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: right bottom;
  } 
  
  /* Checklist w sekcji "Dlaczego terapie naturalne?" */
  .checklist {
    list-style: none;
    padding: 0;
    margin-top: 20px;
  }
  
  .checklist li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
  }
  
  .checklist li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: #028a0f;
  }
  
  /* Sekcja "Opinie" */
  .review-item {
    margin-bottom: 20px;
  }
  
  .review-item blockquote {
    font-style: italic;
    margin-bottom: 10px;
    color: #555;
  }
  
  .review-more {
    text-align: center;
    margin-top: 20px;
  }
  
  /* Sekcja "Kontakt" */
  .contact-card {
    align-items: flex-start;
  }
  
  .contact-info {
    flex: 1;
    margin-right: 20px;
    margin-bottom: 20px;
    min-width: 300px;
  }
  
  .contact-info p {
    margin-bottom: 20px;
    line-height: 1.5;
  }
  
  .contact-form {
    flex: 1;
    min-width: 300px;
    display: flex;
    flex-direction: column;
  }
  
  .contact-form label {
    margin-bottom: 5px;
    font-weight: 600;
  }
  
  .contact-form input,
  .contact-form textarea {
    margin-bottom: 15px;
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #ccc;
  }
  
  .contact-form button {
    align-self: flex-start;
  }
  
  /* STOPKA (FOOTER) */
  .main-footer {
    background: rgba(255, 255, 255, 0.9);
    padding: 20px 10px;
    text-align: center;
    color: #555;
    margin-top: 50px;
  }
  
  .main-footer p {
    margin-bottom: 5px;
  }
  
  .main-footer a {
    color: #028a0f;
    text-decoration: none;
  }
  
  .main-footer a:hover {
    text-decoration: underline;
  }

 /* TERAPIA */
.terapia__content {
  background: #fff;
  border-radius: 10px;
  padding: 30px;
  margin-top: 30px;
  margin-bottom: 30px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.terapia__content img {
	border-radius: 10px;
}

.terapia__content h1 {
	margin-bottom: 24px;
}

.terapia__content h3 {
	text-align: left;
	margin-bottom: 24px;
}

.terapia__content p {
	max-width: 1024px;
	margin-bottom: 24px;
}

.terapia__content ul {
	margin-left: 48px;
	margin-bottom: 24px;
}

  
  /* RESPONSYWNOŚĆ */
  @media (max-width: 768px) {
    .main-header {
      flex-wrap: wrap;
    }
	.logo img {
      max-width: 32px;
    }
	.logo h1 {
      font-size: 1.1rem;
    }
    .nav-links {
      margin-top: 10px;
    }
    .nav-links li {
      margin-left: 10px;
    }
    .card-flex {
      flex-direction: column;
      align-items: flex-start;
    }
    #articles .section-flex{
      flex-direction: column;
    }
    .contact-card {
      flex-direction: column;
    }
    .therapy-grid {
      display: grid;
      gap: 25px;
      grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    }
  }
  