/*
Theme Name: GeneratePress Child
Theme URI: https://generatepress.com
Template: generatepress
Author: Marek Woźniak
Description: Motyw potomny dla GeneratePress
License: Brak licencji — Wszelkie prawa zastrzeżone.
License URI: N/A
Version: 1.0
*/

.wp-block-gallery{
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.week-table {
    width: 100%;
    border-collapse: collapse;
    margin: 40px 0;
    font-family: "Georgia", serif;
    background: #faf7f2; /* neutralne domowe tło */
    color: #4a3f2c;
    border: 1px solid #e3dccc;
    border-radius: 6px;
    overflow: hidden;
  }
  
  .week-table th,
  .week-table td {
    padding: 12px 15px;
    text-align: left;
    vertical-align: top;
  }
  
  .week-table thead {
    background: #c0a67b; /* ciepły brązowy nagłówek */
    color: #fff;
  }
  
  .week-table thead th {
    font-size: 1.1rem;
    font-weight: 700;
  }
  
  .week-table tbody tr:nth-child(even) {
    background: #f9f5ef; /* lekko jaśniejsze co drugi wiersz */
  }
  
  .week-table tbody tr:hover {
    background: #f0e6d8; /* delikatne podświetlenie przy hover */
  }
  
  .week-table td h6 {
    font-size: 0.95rem;
    margin: 5px 0;
    font-weight: 700;
    color: #3c3324;
  }
  
  .week-table td ul {
    padding-left: 18px;
    margin: 4px 0 8px 0;
  }
  
  .week-table td ul li {
    margin-bottom: 3px;
    font-size: 0.95rem;
  }
  
  /* Subtelne wyróżnienie dni tygodnia */
  .week-table tbody td:first-child {
    font-weight: 600;
    color: #8a6c3e; 
    text-transform: capitalize;
  }
  
  /* Alergeny w kursywie i trochę mniejsze */
  .week-table li {
    font-size: 0.92rem;
  }
  
  .week-table li:contains("Alergeny") {
    font-style: italic;
    color: #6b5842;
  }
  
  /* Responsywność */
  @media (max-width: 768px) {
    .week-table, .week-table thead, .week-table tbody, .week-table th, .week-table td, .week-table tr {
      display: block;
    }
  
    .week-table thead {
      display: none;
    }
  
    .week-table tbody td {
      padding: 10px;
      border-bottom: 1px solid #e3dccc;
      position: relative;
      padding-left: 50%;
      margin-bottom: 15px;
    }
  
    .week-table tbody td::before {
      position: absolute;
      top: 12px;
      left: 15px;
      width: 45%;
      white-space: nowrap;
      font-weight: 700;
    }
  
    .week-table tbody td:nth-of-type(1)::before { content: "Dzień"; }
    .week-table tbody td:nth-of-type(2)::before { content: "Data"; }
    .week-table tbody td:nth-of-type(3)::before { content: "Opis"; }
  }
  



/*
.week-table {
    width: calc(100% - 2px);
    border-collapse: collapse; 
    border: 1px solid #ddd;
}

.week-table th,
.week-table td {
    border: 1px solid #ddd; 
    padding: 8px;
    text-align: left;
    background-color: #e6f7e6;
}


.week-table th {
    background-color: #f2f2f2;
    font-weight: bold;
}

.week-table tr:nth-child(even) {
    background-color: #fafafa;
}
  
.week-table tbody tr:nth-child(5) td{
    border-bottom: 1px solid #35516e;
}  
.week-table tbody tr:nth-child(6),
.week-table tbody tr:nth-child(7) {
    border: 1px solid #35516e;
    td{
        border: 1px solid #35516e;
        background-color: #cce5ff; 
    }
}
*/
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    width: 100%;
    background: url('/wp-content/themes/gp-child/assets/img/schabowy.jpg') center center / cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
.hero::after {
content: "";
position: absolute;
inset: 0;
background: rgba(0,0,0,0.45); /* przyciemnia zdjęcie */
}

.hero-inner {
position: relative;
z-index: 2;
color: #fff;
text-align: center;
font-family: "Georgia", serif;
}

.hero h1 {
font-size: 3rem;
font-weight: 700;
margin-bottom: .5rem;
text-shadow: 0 2px 10px rgba(0,0,0,0.8);
}

.hero p {
font-size: 1.3rem;
margin-bottom: 1.5rem;
}

.hero-btn {
display: inline-block;
padding: .7rem 1.8rem;
background: #b99352;
color: #fff;
text-decoration: none;
font-weight: 600;
border-radius: 2px;
transition: .2s;
}

.hero-btn:hover {
background: #8a6c3e;
}

.content {
padding: 40px 20px;
background: #faf7f2;
border: 1px solid #e3dccc;
border-radius: 4px;
margin-top: 40px;
margin-bottom: 40px;
font-family: "Georgia", serif;
line-height: 1.6;
color: #4a3f2c;
}

main {
    width: 100%;
    display: flex;
    flex-direction: column;
background: #e3dccc url('/wp-content/themes/gp-child/assets/img/wood.jpg') repeat;
border-radius: 4px;
color: #4a3f2c;
font-family: "Georgia", serif;
line-height: 1.6;
}

.content h2,
.content h3 {
font-family: "Georgia", serif;
color: #3c3324;
margin-top: 0;
text-align: center;
font-weight: 700;
}

.content h2 {
font-size: 2rem;
margin-bottom: 20px;
letter-spacing: .5px;
}

.content h3 {
font-size: 1.4rem;
margin-top: 30px;
margin-bottom: 12px;
}

.content p {
font-size: 1.05rem;
margin-bottom: 20px;
}

.content ul {
margin: 0 0 20px 20px;
padding: 0;
}

.content ul li {
margin-bottom: 8px;
padding-left: 4px;
}

/* Bardzo delikatna ozdobna linia */
.content:before,
.content:after {
content: "";
display: block;
width: 80px;
height: 2px;
background: #c0a67b;
margin: 0 auto 20px auto;
}

.content:after {
margin: 20px auto 0 auto;
}
  

.site-footer {
    background: #e3dccc url('/wp-content/themes/gp-child/assets/img/wood.jpg') repeat;
    background-size: cover;
    position: relative;
    font-family: "Georgia", serif;
    color: #4a3f2c;
    line-height: 1.6;
    padding: 40px 20px;
    border-top: 1px solid #c0a67b;
  }
  
  .site-footer::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url('/wp-content/themes/gp-child/assets/img/wood.jpg') repeat;
    background-size: cover;
    filter: blur(3px);
    opacity: 0.15;
    z-index: -1;
  }
  
  .site-footer .footer-columns {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 20px;
  }
  
  .site-footer .footer-col {
    margin: 10px;
  }
  
  .site-footer h4 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #fff;
  }
  
  .site-footer p {
    font-size: 16px;
    margin: 3px 0;
    color: #fff;
  }
  
  .site-footer .copyright-bar {
    text-align: center;
    font-size: 0.9rem;
    color: #3c3324;
    border-top: 1px solid #c0a67b;
    padding-top: 12px;
  }
  
  /* Responsywność */
  @media (max-width: 768px) {
    .site-footer .footer-columns {
      flex-direction: column;
      align-items: center;
    }
  
    .site-footer .footer-col {
      margin: 10px 0;
      text-align: center;
    }
  }
  