body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
    height: 100%;
}
/* Treść obok kolumny */
.content {
    padding: 20px;
    flex: 1;
}
.takeuchi-logo-container {
  position: absolute;
  top: 140px; /* dopasuj do wysokości nagłówka */
  right: 165px;
  width: 140px;
  z-index: 10;
}

.takeuchi-logo-container img {
  width: 150%;
  height: auto;
}

.big-title {
    font-size: 40px;
    text-transform: uppercase;
    font-weight: 700;
    color: #1E2A47;
    margin-bottom: 10px;
    font-family: 'Poppins', sans-serif;
  }
  
  .subtitle {
    font-size: 20px;
    color: #333;
    margin-bottom: 25px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  }
  
  .description-container {
    max-width: 800px;
    position: relative;
  }
  
  .description-text {
    max-height: 200px;
    overflow: hidden;
    transition: max-height 0.4s ease;
  }
  
  .description-text.expanded {
    max-height: 2000px; /* dla pełnego rozwinięcia */
  }
  
  .read-more-btn {
    margin-top: 15px;
    background-color: #1E2A47;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 6px;
    font-size: 14px;
    cursor: pointer;
    transition: background 0.3s ease;
  }
  
  .read-more-btn:hover {
    background-color: #2e3b5f;
  }
 .mini-offer-section {
    margin-top: 60px;
    padding-top: 20px;
    background-color: #f9f9f9;
    width: 100%;
    clear: both;
}

.offer-title {
    font-size: 32px;
    text-align: center;
    margin-bottom: 30px;
    color: #1E2A47;
    font-family: 'Poppins', sans-serif;
}

.mini-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
    max-width: 1300px;
    margin: 0 auto 50px auto;
    padding: 0 10px;
}

.mini-item {
    text-align: center;
    transition: transform 0.3s;
    text-decoration: none;
    color: #1E2A47;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.mini-item img {
    width: 100%;
    height: auto;
    max-height: 200px;
    object-fit: contain;
    transition: transform 0.3s;
    border-radius: 0; /* brak zaokrągleń */
    box-shadow: none; /* brak cienia */
}

.mini-item:hover img {
    transform: scale(1.05);
}

.mini-item p {
    margin-top: 10px;
    font-weight: 600;
    color: #333;
    font-size: 16px;
    max-width: none; /* brak ograniczenia szerokości */
    white-space: nowrap; /* tekst w jednej linii */
    overflow: hidden; /* ukrywa nadmiar tekstu, gdyby był za długi */
    text-overflow: ellipsis; /* jeśli tekst za długi, to pokaże "..." */
}

@media (max-width: 768px) {
  /* Ukryj logo Takeuchi */
  .takeuchi-logo-container {
    display: none;
  }

  /* Zmniejsz nagłówki i podtytuły */
  .big-title {
    font-size: 28px;
    text-align: center;
  }

  .subtitle {
    font-size: 16px;
    text-align: center;
  }

  /* Opis z paddingiem wewnętrznym */
  .content {
    padding: 15px;
  }

  .description-container {
    max-width: 100%;
    padding: 0 10px;
  }

  .read-more-btn {
    padding: 8px 16px;
    font-size: 13px;
    display: block;
    margin: 15px auto;
  }

  /* Siatka galerii – 2 kolumny na średnich ekranach */
  .mini-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 20px;
    padding: 0 10px;
  }

  .mini-item p {
    font-size: 14px;
  }

  .offer-title {
    font-size: 24px;
  }
}

@media (max-width: 576px) {
  .big-title {
    font-size: 22px;
  }

  .subtitle {
    font-size: 14px;
  }

  .read-more-btn {
    font-size: 12px;
    padding: 6px 14px;
  }

  .mini-item p {
    font-size: 13px;
  }

  .offer-title {
    font-size: 20px;
  }

  /* GALERIA — 1 kolumna na telefonach */
  .mini-gallery {
    grid-template-columns: 1fr !important;
  }
}

