body 
{
    font-family: Arial, sans-serif;
}

.banner, .footer 
{
  background-color: #d4af37; 
  color: white;
  padding: 20px;
  width: 100%;
}

.banner-content, .footer-content 
{
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo 
{
  text-align: center;
}

.logo img 
{
  max-width: 100px;
}

.small-text 
{
  font-size: 0.8em;
}

.title 
{
  font-size: 2em;
  font-weight: bold;
  text-align: center;
  flex-grow: 1;
}

.banner .categories ul, .footer .categories ul 
{
  list-style: none;
  padding: 0;
  margin: 0;
}

.banner .categories li, .footer .categories li 
{
  display: inline;
  margin: 0 10px;
}

.banner .categories a, .footer .categories a 
{
  color: white;
  text-decoration: none;
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 90%;
    margin: 0 auto;
    padding: 20px;
}

.dropdown-content 
{
  display: none;
  position: absolute;
  background-color: #d4af37;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

.dropdown-content a 
{
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

.dropdown-content a:hover 
{
  background-color: #f1f1f1;
}

.dropdown:focus-within .dropdown-content 
{
  display: block;
}

.dropdown:focus-within > a 
{
  background-color: #ffa500;
}

.informacje {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
}

.obrazek {
    width: 45%; /* Szerokość obrazka */
    margin-right: 20px;
}

.obrazek img {
    width: 100%;
    height: auto;
}

.tekst {
    width: 45%;
    padding: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
    display: flex; 
    flex-direction: column; 
    align-items: flex-start; 

}

.tekst h2 {
    margin-bottom: 10px;
}

.tekst p {
    line-height: 1.5;
    font-size: 20px;
}

.koszyk {
    background-color: #fff;
    color: #ff6600; 
    border: 1px solid #ff6600;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;

}

.koszyk:hover {
    background-color: #ff6600; /* Kolor przycisku po najechaniu */
    color: #fff;
}

/* Responsywność */

@media (max-width: 768px) {
    .informacje {
        flex-direction: column;
        align-items: center;
    }

    .obrazek, .tekst {
        width: 100%;
        margin-bottom: 20px;
    }
}
