/*
Theme Name:     ZŠ MŠ Tučapy
Theme URI:      https://zstucapy.cz
Description:    Child theme for Divi – customized for ZŠ MŠ Tučapy
Author:         David Klhufek
Author URI:     https://phirebase.com
Template:       Divi
Version:        1.0.0
License:        GNU General Public License v2 or later
License URI:    https://www.gnu.org/licenses/gpl-2.0.html
Text Domain:    zsms-tucapy
*/

/* === Scroll to Top Button === */
.et_pb_scroll_top.et-pb-icon {
    color: white;
    right: 30px;
    bottom: 30px;
    padding: 8px;
    border-radius: 30px;
    background: #3c65a5; 
    font-size: 32px;
    transition: all 0.1s ease-in-out;
}

.et_pb_scroll_top.et-pb-icon:hover {
    bottom: 32px;
    background: #3c65a5;
    transition: all 0.1s ease-in-out;
    box-shadow: 0 10px 15px #162c4e4a;
}

/* === Scroll Top Animations === */
.et_pb_scroll_top.et-visible {
    animation: fadeInBottom 1s cubic-bezier(0.50, 0, 0.16, 1);
}
.et_pb_scroll_top.et-hidden {
    opacity: 0;
    animation: fadeOutBottom 1s cubic-bezier(0.77, 0, 0.175, 1);
}

/* === Mobile Menu Styling === */
ul#mobile_menu.et_mobile_menu a,
ul#top-menu a {
    text-transform: uppercase;
}

/* === Image Titles Off === */
.mfp-title {
    display: none;
}

/* === Tables === */
table#tablepress-1 {
    font-size: 80% !important;
}
table#tablepress-2 {
    font-size: 80% !important;
}
table#tablepress-3 {
    font-size: 80% !important;
}
table#tablepress-4 {
    font-size: 80% !important;
}

/* === Aktualne === */
.aktualne .et_pb_post {
    margin-bottom: 5px;
}
.aktualne .post {
    padding-bottom: 0px;
}

/* === Stylování pro ikonu Bakaláři === */

/* Zarovnej sociální li v řádku */
#top-header .et-social-icons {
  display: flex;
  align-items: center;
  gap: 5px;
}

/* Bakaláři – stejná velikost jako ikony Divi */
#top-header .et-social-bakalari img {
  width: 18px;   
  height: 18px;
  display: block;
  transition: transform .2s ease-in-out, opacity .2s ease-in-out;
}

#top-header .et-social-bakalari a:hover img {
  transform: scale(1.08);
  opacity: .9;
}

/* --- Zarovnání sociálních ikon na střed na mobilu --- */
@media (max-width: 980px) {
  #top-header .et-social-icons {
    justify-content: center !important;
    text-align: center !important;
  }

  #top-header .et-social-icons li {
    float: none !important;
    display: inline-block;
  }
}

/* === Hover scale pro Blog grid – třída je na WRAPPERU === */
.tile-hover .et_pb_blog_grid article.et_pb_post {
  transition: transform .25s ease, box-shadow .25s ease;
  transform-origin: center center;
  will-change: transform;
  position: relative;
  z-index: 1;
}

.tile-hover .et_pb_blog_grid article.et_pb_post:hover {
  transform: scale(1.05);
  z-index: 3;
  box-shadow: 0 10px 30px rgba(0,0,0,.12); 
}

/* Ořez a zaoblení, aby zvětšení vypadalo čistě */
.tile-hover .et_pb_blog_grid article.et_pb_post,
.tile-hover .et_pb_blog_grid article.et_pb_post .post-content {
  border-radius: 14px;
  overflow: hidden;
}

/* Povolit zvětšení mimo kartu, kdyby se ořezávalo */
.tile-hover,
.tile-hover .et_pb_blog_grid {
  overflow: visible;
}

/* Menší scale na mobilu (volitelné) */
@media (max-width: 767px) {
  .tile-hover .et_pb_blog_grid article.et_pb_post:hover {
    transform: scale(1.03);
  }
}

/* Respektuj reduced motion (volitelné) */
@media (prefers-reduced-motion: reduce) {
  .tile-hover .et_pb_blog_grid article.et_pb_post {
    transition: none;
  }
}

