/**
 * IFK Profile - Wspólne style dla wszystkich profili członków
 * International Fan Klub The Shadows
 * Data utworzenia: 2026-01-28
 */

/* ===== RESET I PODSTAWY ===== */
* {
  box-sizing: border-box;
}

/* ===== KLASY TEKSTOWE ===== */
.linksredniyellow,
.LinkSredniYellow {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 13px;
  color: yellow !important;
  text-decoration: underline;
}

.linkMalyYel {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 11px;
  color: yellow;
  text-decoration: underline;
}

.tekstAqua,
.TekstAqua {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 13px;
  text-decoration: none;
  color: aqua;
}

.linkMaly {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 10px;
  color: silver;
  font-weight: normal;
  text-decoration: none;
}

.tekstWielki {
  font-family: times, Verdana, Arial, Helvetica, sans-serif;
  font-size: 24px;
  font-weight: bold;
  color: silver;
}

.tekstMniejszy {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
  color: silver;
}

/* ===== LINKI UTWORÓW ===== */
.IFK {
  font-family: roman, serif;
  font-size: 15px;
  color: orange;
  font-weight: bold;
  line-height: 1.5;
  text-decoration: none;
  display: block;
  padding: 2px 0;
}

.IFK:hover {
  color: red;
  cursor: pointer;
}

/* ===== GŁÓWNY KONTENER PROFILU ===== */
.profile-container {
  max-width: 850px;
  margin: 0 auto;
  background-color: #005560;
  padding: 20px;
  box-shadow: 10px 10px 10px rgba(0,0,0,0.5);
  border-radius: 20px;
}

/* ===== NAGŁÓWEK PROFILU ===== */
.profile-header {
  text-align: center;
  padding: 15px 0;
}

.profile-header h1 {
  font-family: times, Verdana, Arial, Helvetica, sans-serif;
  font-size: 24px;
  font-weight: bold;
  color: white;
  margin: 0 0 5px 0;
}

.profile-header .location {
  color: silver;
  font-size: 14px;
}

.profile-header .subtitle {
  color: silver;
  font-size: 12px;
  margin-top: 5px;
}

/* ===== SEKCJA BIOGRAFII ===== */
.profile-bio {
  text-align: justify;
  padding: 15px;
  line-height: 1.6;
  color: aqua;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 13px;
}

/* ===== SEKCJA SPRZĘTU ===== */
.equipment-section {
  padding: 10px 0;
}

.equipment-row {
  display: flex;
  padding: 3px 0;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
}

.equipment-label {
  width: 200px;
  min-width: 150px;
  text-align: right;
  padding-right: 10px;
  color: silver;
}

.equipment-value {
  flex: 1;
  text-align: left;
  color: aqua;
}

/* ===== GALERIA ZDJĘĆ ===== */
.photo-gallery {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  gap: 10px;
  padding: 20px 0;
}

.photo-gallery img {
  max-width: 350px;
  width: 48%;
  height: auto;
  border: 0;
}

.photo-gallery.single img {
  max-width: 100%;
  width: auto;
}

/* Galeria 3 kolumny */
.photo-gallery.three-col img {
  width: 31%;
  max-width: 280px;
}

/* ===== OPIS ZDJĘCIA ===== */
.photo-caption {
  text-align: justify;
  padding: 10px 15px;
  color: aqua;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 10px;
}

/* ===== SEKCJA UTWORÓW ===== */
.tracks-section {
  text-align: center;
  padding: 20px 0;
}

.tracks-section .tracks-title {
  color: silver;
  margin-bottom: 15px;
}

.tracks-list {
  width: 340px;
  max-width: 100%;
  margin: 0 auto;
  text-align: left;
  padding: 15px;
  background-color: black;
  border-radius: 5px;
}

/* ===== SEKCJA VIDEO ===== */
.video-section {
  padding: 20px 0;
  text-align: center;
}

.video-title {
  color: white;
  text-align: center;
  padding: 10px;
  border: 1px solid white;
  max-width: 480px;
  margin: 0 auto 10px auto;
}

.video-container {
  max-width: 480px;
  margin: 0 auto 20px auto;
}

.video-container video {
  width: 100%;
  height: auto;
}

/* YouTube embeds */
.video-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  padding: 10px 0;
}

.video-item {
  text-align: center;
}

.video-item iframe {
  max-width: 100%;
}

.video-item .video-label {
  color: aqua;
  font-size: 13px;
  margin-top: 5px;
}

/* ===== LINKI ZEWNĘTRZNE ===== */
.external-links {
  text-align: center;
  padding: 10px 0;
}

/* ===== STOPKA ===== */
.profile-footer {
  margin-top: 20px;
}

/* ===== RESPONSYWNOŚĆ - MOBILE ===== */
@media (max-width: 600px) {
  .profile-container {
    padding: 10px;
    border-radius: 10px;
    margin: 0 5px;
  }

  .profile-header h1 {
    font-size: 20px;
  }

  .profile-bio {
    padding: 10px;
    font-size: 12px;
  }

  /* Sprzęt - układ pionowy */
  .equipment-row {
    flex-direction: column;
    padding: 5px 0;
    font-size: 14px;
  }

  .equipment-label {
    width: 100%;
    text-align: left;
    padding: 0;
    font-weight: bold;
    margin-bottom: 2px;
  }

  .equipment-value {
    width: 100%;
    padding-left: 10px;
  }

  /* Zdjęcia - układ pionowy */
  .photo-gallery {
    flex-direction: column;
    align-items: center;
  }

  .photo-gallery img,
  .photo-gallery.three-col img {
    width: 100%;
    max-width: 100%;
  }

  /* Utwory */
  .tracks-list {
    width: 100%;
    padding: 10px;
  }

  .IFK {
    font-size: 14px;
  }

  /* Video */
  .video-container {
    max-width: 100%;
    padding: 0 10px;
  }

  .video-grid {
    flex-direction: column;
  }

  .video-item {
    width: 100%;
  }

  .video-item iframe {
    width: 100%;
    height: 200px;
  }

  .tekstWielki {
    font-size: 18px;
  }

  /* Guestbook img - mniejszy na mobile */
  .guestbook-img {
    height: 12px !important;
  }
}

/* ===== RESPONSYWNOŚĆ - TABLET ===== */
@media (min-width: 601px) and (max-width: 850px) {
  .photo-gallery img {
    width: 48%;
  }

  .photo-gallery.three-col img {
    width: 48%;
  }
}
