/* DuskFlare Pool - Custom Styles */

body {
  font-family: 'Verdana', sans-serif;
  color: #2c3e50;
  background-color: #f5f9ff;
}

/* Unikátní barevná paleta */
:root {
  --primary-color: #1e88e5;     /* Hlavní modrá */
  --secondary-color: #4fc3f7;   /* Světle modrá */
  --accent-color: #ff8f00;      /* Oranžová - DuskFlare */
  --dark-color: #2c3e50;        /* Tmavě modrá pro text */
  --light-color: #f5f9ff;       /* Světlý modravý odstín pro pozadí */
  --white-color: #ffffff;       /* Bílá */
}

/* Navigace */
.navbar {
  padding: 1rem 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  background-color: var(--white-color);
}

.navbar-brand {
  color: var(--primary-color) !important;
}

.nav-link {
  color: var(--dark-color) !important;
  font-weight: 500;
  padding: 0.5rem 1rem !important;
  transition: color 0.3s ease;
}

.nav-link:hover, 
.nav-link:focus,
.nav-link.active {
  color: var(--primary-color) !important;
}

/* Tlačítka */
.btn-primary {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  border-radius: 30px;
  padding: 0.5rem 1.5rem;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: #1565c0;
  border-color: #1565c0;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(30, 136, 229, 0.3);
}

.btn-outline-primary {
  color: var(--primary-color);
  border-color: var(--primary-color);
  border-radius: 30px;
  transition: all 0.3s ease;
}

.btn-outline-primary:hover {
  background-color: var(--primary-color);
  color: var(--white-color);
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(30, 136, 229, 0.2);
}

/* Sekce */
section {
  padding: 5rem 0;
}

section h2 {
  font-weight: 700;
  margin-bottom: 2rem;
  color: var(--dark-color);
  position: relative;
}

section h2:after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background-color: var(--primary-color);
}

/* Karty */
.card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: none;
  border-radius: 8px;
  overflow: hidden;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Testimonial karty */
.Bubble_Voice_Client_Testimonial .card {
  position: relative;
}

.Bubble_Voice_Client_Testimonial .card:before {
  content: '\201C';
  position: absolute;
  top: 10px;
  left: 20px;
  font-size: 5rem;
  color: rgba(79, 195, 247, 0.2);
  font-family: serif;
  z-index: 0;
}

/* Článková sekce */
.article-content h3 {
  margin-top: 1.5rem;
  font-weight: 600;
}

.article-content .border-start {
  background-color: rgba(30, 136, 229, 0.05);
}

/* Metodika */
.Wave_Method_Training_Technique .rounded-circle {
  transition: transform 0.3s ease;
}

.Wave_Method_Training_Technique .col-md-6:hover .rounded-circle {
  transform: scale(1.1);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Vodní terapie */
.Aqua_Healing_Therapy_Section .card-body {
  position: relative;
  z-index: 1;
}

.Aqua_Healing_Therapy_Section .card-body:after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100px;
  height: 100px;
  background: radial-gradient(circle, rgba(79, 195, 247, 0.1) 0%, rgba(79, 195, 247, 0) 70%);
  z-index: -1;
  border-radius: 50%;
}

/* Cookie banner */
#cookieConsent {
  z-index: 1000;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

/* Formulář */
.form-control {
  border-radius: 8px;
  padding: 0.75rem 1rem;
  border: 1px solid #e0e0e0;
}

.form-control:focus {
  border-color: var(--secondary-color);
  box-shadow: 0 0 0 0.25rem rgba(79, 195, 247, 0.25);
}

/* Footer */
footer {
  background-color: var(--dark-color);
}

footer a {
  transition: color 0.3s ease;
}

footer a:hover {
  color: var(--secondary-color) !important;
  text-decoration: underline !important;
}

/* Efekty pro sekce s ikonami */
.Flow_Benefit_Azure_Block i,
.Growth_Improve_Feedback_Value .rounded-circle {
  transition: transform 0.3s ease;
}

.Flow_Benefit_Azure_Block .col-md-4:hover i,
.Growth_Improve_Feedback_Value .col-md-4:hover .rounded-circle {
  transform: scale(1.1);
}

/* Video testimoniály */
.Stream_Video_Client_Showcase .card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.Stream_Video_Client_Showcase .card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

/* Animace pro hvězdičky v hodnocení */
.stars .form-check-inline:hover i {
  transform: rotate(15deg);
  transition: transform 0.2s ease;
}

/* Responzivita */
@media (max-width: 767.98px) {
  section {
    padding: 3rem 0;
  }
  
  .display-4 {
    font-size: 2.5rem;
  }
  
  .lead {
    font-size: 1rem;
  }
}