﻿/* Kontejnery, kde jsou informace o počtu sledujících na sociálních sítích */


/* Kontejner, který drží boxy pohromadě */
.social-container {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  padding: 40px 20px;
  font-family: 'Segoe UI', Helvetica, Arial, sans-serif;
}


/* Základní styl boxu */
.social-box {
  position: relative;
  width: 180px;
  background-color: #f8fdff;
  border: 2px dashed #5B9EA6;
  border-radius: 8px;
  padding: 35px 15px 20px 15px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}


/* Efekt při najetí myší */
.social-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.05);
  border-style: solid; /* Čárkovaná čára se při hoveru změní na plnou */
}


/* Kolečko s ikonou */
.social-icon {
  position: absolute;
  top: -25px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 50px;
  background-color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}


.social-icon img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}


/* Textové styly uvnitř */
.social-label {
  display: block;
  font-size: 13px;
  color: #5B9EA6;
  text-transform: uppercase;
  font-weight: bold;
  margin-bottom: 5px;
  letter-spacing: 0.5px;
}


.social-count {
  font-size: 32px;
  font-weight: bold;
  color: #111;
  line-height: 1.2;
}


.social-subtext {
  font-size: 13px;
  color: #888;
  margin: 5px 0 0 0;
}


/* Tlačítko uvnitř boxu */
.social-button {
  display: inline-block;
  margin-top: 15px;
  background-color: #f1de00; /* Tvoje žlutá barva */
  color: #000;
  text-decoration: none;
  padding: 8px 20px;
  border-radius: 50px;
  font-weight: bold;
  font-size: 14px;
  transition: all 0.2s ease;
  box-shadow: 0 4px 12px rgba(241, 222, 0, 0.3);
}


/* Hover efekt tlačítka */
.social-button:hover {
  transform: scale(1.05);
  background-color: #ffd147; /* Mírně světlejší při najetí */
  box-shadow: 0 6px 15px rgba(241, 222, 0, 0.5);
}


/* Úprava struktury, aby tlačítko bylo vždy dole */
.social-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}




/* Reels na stránce */




  .reels-section {
    padding: 40px 20px;
    max-width: 1200px;
    margin: 0 auto;
    font-family: sans-serif;
  }


  .reels-title {
    text-align: center;
    margin-bottom: 30px;
    font-size: 1.8rem;
    color: #333;
  }


  .reels-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
  }


  .reel-card {
    position: relative;
    padding-top: 177.78%; /* Poměr stran 9:16 */
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    background: #000;
  }


  .reel-card:hover {
    transform: translateY(-5px);
  }


  .reel-card iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
  }


  /* Optimalizace pro mobily */
  @media (max-width: 600px) {
    .reels-grid {
      grid-template-columns: 1fr; /* Jeden pod druhým na malých mobilech */
      padding: 0 20px;
    }
  }