/*
Theme Name: SATDAK Theme
Theme URI: https://satdak.com
Author: Matthew McGee & Team
Author URI: https://purepixstudios.com
Description: Custom theme for SATDAK – storytelling, skits, Backyard Chronicles, and more.
Version: 1.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: satdak-theme
*/
.floating-social {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 999;
  transition: all 0.3s ease;
}

.floating-social img {
  width: 32px;
  height: 32px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.share-modal {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: rgba(0,0,0,0.5);
  z-index: 9999;
  justify-content: center;
  align-items: center;
}

.share-modal .modal-content {
  background: white;
  padding: 2rem;
  border-radius: 10px;
  max-width: 400px;
  text-align: center;
}

.close-btn {
  position: absolute;
  top: 10px; right: 20px;
  font-size: 1.5rem;
  cursor: pointer;
}

/* Grows and moves left when near bottom */
.floating-social.bottom {
  left: 20px;
  transform: none;
}

.floating-social.bottom img {
  width: 40px;
  height: 40px;
}

.banner-image {
  box-shadow: 0 2px 6px rgba(0,0,0,0.3) !important;
   border-radius: 6px !important;
}