/*
Theme Name: Honza Kubíček - Komunikace a vyjednávání
Description: Profesionální WordPress téma pro poradce v komunikaci a vyjednávání
Version: 1.1
Author: Honza Kubíček
*/

/* Reset a základní styly */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: system-ui, -apple-system, sans-serif;
    line-height: 1.6;
    color: #374151;
    background-color: #ffffff;
}

/* ======================= */
/* TYPOGRAFIE + HERO ANIMACE */
/* ======================= */
h1, h2, h3, h4, h5, h6 {
    font-family: Georgia, serif;
    font-weight: bold;
    color: #000000;
}

@keyframes fadeUp {
  0% { opacity: 0; transform: translateY(20px); }
  100% { opacity: 1; transform: translateY(0); }
}

.hero h1 {
  animation: fadeUp 0.8s ease forwards;
}
.hero p {
  animation: fadeUp 1.2s ease forwards;
}

/* ======================= */
/* MENU ODKAZY */
/* ======================= */
.menu-link {
  position: relative;
  transition: color 0.3s ease;
}

.menu-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0%;
  height: 2px;
  background: #2563eb;
  transition: width 0.3s ease;
}

.menu-link:hover::after {
  width: 100%;
}

/* ======================= */
/* CTA TLAČÍTKO */
/* ======================= */
@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

.btn-cta {
  animation: pulse 2.5s infinite;
}

/* ======================= */
/* KARTY SLUŽEB */
/* ======================= */
.card {
  background-color: white;
  border-radius: 1rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  padding: 2rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 30px -10px rgba(0,0,0,0.2);
}

.card-icon svg {
  transition: transform 0.3s ease, color 0.3s ease;
}

.card:hover .card-icon svg {
  transform: scale(1.2);
  color: #2563eb;
}

/* ======================= */
/* FORMULÁŘ */
/* ======================= */
input:invalid, textarea:invalid {
  border-color: #dc2626 !important; /* červená */
}

input:valid, textarea:valid {
  border-color: #16a34a !important; /* zelená */
}

/* ======================= */
/* FOOTER SOCIAL ICONS */
/* ======================= */
.footer-icons a {
  transition: color 0.3s ease, transform 0.3s ease;
}

.footer-icons a:hover {
  color: #2563eb;
  transform: translateY(-2px);
}
