/*
Theme Name: Studio Zelená
Theme URI: https://studiozelena.cz/
Author: Studio Zelená Web Designer
Author URI: https://studiozelena.cz/
Description: Moderní, vzdušná, čistá a organická bloková šablona pro WordPress navržená na míru pro Studio Zelená. Propojuje dech, psychickou pohodu a radost ze zpěvu.
Version: 1.0.0
Requires at least: 6.2
Tested up to: 6.5
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: studio-zelena
Tags: full-site-editing, block-themes, one-column, custom-colors, custom-menu, post-formats, translation-ready

Tento stylopis obsahuje základní metadata šablony a doplňující globální třídy.
Veškeré barvy a typografie jsou plně konfigurovány skrze soubor theme.json.
*/

/* Reset a doplňující jemné organické animace */
.fade-in-entry {
  animation: fadeIn 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Zaoblené detaily pro přátelský dojem */
.wp-block-button__link {
  border-radius: 9999px !important;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-size: 0.8rem !important;
  padding: 1rem 2rem !important;
  transition: all 0.3s ease-in-out !important;
}

.wp-block-button__link:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px -10px rgba(0,0,0,0.15);
  filter: brightness(0.97);
}

/* Dekorační prstence a kruhy pro dechová cvičení */
.breath-circle {
  border-radius: 50%;
  border: 1px solid rgba(47, 62, 70, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.5s ease-in-out;
}

/* Stylování kartiček služeb pro snazší přehlednost */
.pillar-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-radius: 32px !important;
  overflow: hidden;
}

.pillar-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px -20px rgba(47, 62, 70, 0.12);
}

/* Animace pro interaktivní měnící se scenerie */
@keyframes sz-spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.sz-spin-animation {
  animation: sz-spin 40s linear infinite;
}

/* Jemné přechody pro interaktivní prvky */
.sz-hero-wrapper {
  transition: all 0.5s ease-in-out;
}

.sz-preset-btn {
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.sz-preset-btn:hover {
  transform: translateY(-1px);
  filter: brightness(1.1);
}

.sz-preset-btn:active {
  transform: translateY(1px);
}

.sz-btn-autoplay:hover, .sz-btn-expand:hover {
  color: #f8fafc !important;
}

@keyframes sz-ping {
  0% { transform: scale(1); opacity: 1; }
  70%, 100% { transform: scale(2.5); opacity: 0; }
}

.sz-ping-animation {
  animation: sz-ping 2s cubic-bezier(0, 0, 0.2, 1) infinite;
}
