/*
Theme Name: Baby Club Žabka
Theme URI: https://bcz.turzo.site
Author: Turzo
Author URI: https://turzo.site
Description: Profesionálna WordPress šablóna pre Baby Club Žabka - plavecké centrum pre deti
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: babyclubzabka
Tags: one-column, custom-colors, custom-logo, custom-menu, featured-images, theme-options
*/

/* ===================================
   CSS PREMENNÉ - NASTAVITEĽNÉ V CUSTOMIZERI
   =================================== */
:root {
    /* Primárna farba (zelená - žaba) */
    --bcz-primary: #16a34a;
    --bcz-primary-light: #22c55e;
    --bcz-primary-dark: #15803d;

    /* Akcentová farba (zlatá/oranžová) */
    --bcz-accent: #f59e0b;
    --bcz-accent-light: #fbbf24;
    --bcz-accent-dark: #d97706;

    /* Neutrálne farby */
    --bcz-background: #ffffff;
    --bcz-foreground: #1f2937;
    --bcz-muted: #6b7280;
    --bcz-border: #e5e7eb;
    --bcz-card: #f9fafb;

    /* Typografia */
    --bcz-font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --bcz-font-size-base: 16px;
    --bcz-line-height: 1.6;

    /* Rozmery */
    --bcz-container-width: 1200px;
    --bcz-radius: 0.625rem;
    --bcz-spacing: 1rem;
}

/* ===================================
   RESET A ZÁKLADNÉ ŠTÝLY
   =================================== */
*, *::before, *::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
    font-family: var(--bcz-font-family);
    font-size: var(--bcz-font-size-base);
    line-height: var(--bcz-line-height);
    color: var(--bcz-foreground);
    background-color: var(--bcz-background);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--bcz-primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--bcz-primary-dark);
}

/* ===================================
   KONTAJNER
   =================================== */
.container {
    max-width: var(--bcz-container-width);
    margin: 0 auto;
    padding: 0 var(--bcz-spacing);
}

/* ===================================
   TLAČIDLÁ
   =================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--bcz-radius);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-primary {
    background-color: var(--bcz-primary);
    color: white;
    border-color: var(--bcz-primary);
}

.btn-primary:hover {
    background-color: var(--bcz-primary-dark);
    border-color: var(--bcz-primary-dark);
    color: white;
}

.btn-accent {
    background-color: var(--bcz-accent);
    color: white;
    border-color: var(--bcz-accent);
}

.btn-accent:hover {
    background-color: var(--bcz-accent-dark);
    border-color: var(--bcz-accent-dark);
    color: white;
}

.btn-outline {
    background-color: transparent;
    color: var(--bcz-foreground);
    border-color: var(--bcz-border);
}

.btn-outline:hover {
    background-color: var(--bcz-card);
    border-color: var(--bcz-primary);
    color: var(--bcz-primary);
}

.btn-outline-white {
    background-color: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.6);
    display: inline-flex;
    align-items: center;
}

.btn-outline-white:hover {
    background-color: rgba(255, 255, 255, 0.15);
    border-color: white;
    color: white;
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

/* ===================================
   TOP BAR
   =================================== */
.top-bar {
    background: linear-gradient(135deg, var(--bcz-primary-dark) 0%, var(--bcz-primary) 100%);
    color: white;
    font-size: 0.8125rem;
    padding: 0.625rem 0;
    border-bottom: 3px solid var(--bcz-accent);
}

.top-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.top-bar-contact {
    display: flex;
    align-items: center;
    gap: 1.75rem;
}

.top-bar-contact a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: white;
    font-weight: 500;
    letter-spacing: 0.01em;
    transition: all 0.3s ease;
}

.top-bar-contact a:hover {
    color: var(--bcz-accent-light);
}

.top-bar-contact svg {
    width: 15px;
    height: 15px;
    opacity: 0.85;
}

.top-bar-social {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.top-bar-social-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    opacity: 0.8;
    margin-right: 0.25rem;
}

.top-bar-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    color: white;
    transition: all 0.3s ease;
}

.top-bar-social a:hover {
    background: var(--bcz-accent);
    border-color: var(--bcz-accent);
    transform: translateY(-2px);
    color: white;
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.4);
}

.top-bar-social svg {
    width: 15px;
    height: 15px;
}

@media (max-width: 768px) {
    .top-bar {
        display: none;
    }
}

/* ===================================
   HLAVIČKA
   =================================== */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--bcz-border);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.site-branding {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.site-logo {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: var(--bcz-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    transition: transform 0.3s ease;
}

.site-branding:hover .site-logo {
    transform: scale(1.1);
}

.site-title-wrap {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.site-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--bcz-primary);
    margin: 0;
}

.site-tagline {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--bcz-accent);
    margin: 0;
}

/* Navigácia */
.main-navigation {
    display: none;
}

@media (min-width: 768px) {
    .main-navigation {
        display: flex;
        align-items: center;
        gap: 1.5rem;
    }
}

.main-navigation ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 1.5rem;
}

.main-navigation a {
    font-size: 1rem;
    font-weight: 700;
    color: var(--bcz-foreground);
    transition: color 0.3s ease;
}

.main-navigation a:hover,
.main-navigation .current-menu-item a {
    color: var(--bcz-primary);
}

.header-cta {
    display: none;
}

@media (min-width: 768px) {
    .header-cta {
        display: flex;
        align-items: center;
        gap: 0.75rem;
    }
}

.header-phone {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--bcz-muted);
}

.header-phone:hover {
    color: var(--bcz-primary);
}

/* Mobilné menu */
.menu-toggle {
    display: flex;
    padding: 0.5rem;
    background: none;
    border: none;
    cursor: pointer;
}

@media (min-width: 768px) {
    .menu-toggle {
        display: none;
    }
}

.mobile-menu {
    display: none;
    padding: 1rem 0;
    border-top: 1px solid var(--bcz-border);
}

.mobile-menu.active {
    display: block;
}

.mobile-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mobile-menu li {
    padding: 0.75rem 0;
}

.mobile-menu a {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--bcz-foreground);
}

/* ===================================
   HERO SEKCIA
   =================================== */
.hero-section {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero-background {
    position: absolute;
    inset: 0;
}

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.85) 0%, rgba(255,255,255,0.6) 50%, rgba(245,158,11,0.3) 100%);
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 800px;
    padding: 2rem 0;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background-color: rgba(245, 158, 11, 0.9);
    backdrop-filter: blur(4px);
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
    color: white;
    margin-bottom: 1.5rem;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--bcz-foreground);
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 3.5rem;
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 4rem;
    }
}

.hero-title span {
    color: var(--bcz-primary);
}

.hero-description {
    font-size: 1.125rem;
    color: var(--bcz-foreground);
    opacity: 0.9;
    margin-bottom: 2rem;
    max-width: 600px;
}

@media (min-width: 768px) {
    .hero-description {
        font-size: 1.25rem;
    }
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
    .hero-buttons {
        flex-direction: row;
    }
}

/* Hero sociálne ikony */
.hero-social-icons {
    display: flex;
    gap: 0.75rem;
    align-items: center;
}

.hero-social-icons .hero-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: white;
    border-radius: var(--bcz-radius);
    color: var(--bcz-accent);
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.hero-social-icons .hero-social-link:hover {
    background: var(--bcz-accent);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.4);
}

.hero-social-icons .hero-social-link svg {
    width: 22px;
    height: 22px;
}

@media (max-width: 640px) {
    .hero-social-icons {
        justify-content: center;
    }
}

.hero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    padding-top: 1.5rem;
}

.hero-stat {
    text-align: left;
}

.hero-stat-value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--bcz-primary);
}

.hero-stat-label {
    font-size: 0.875rem;
    color: var(--bcz-muted);
}

/* Wave divider */
.wave-divider {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
}

.wave-divider svg {
    display: block;
    width: 100%;
    height: 60px;
    transform: scaleY(-1);
}

@media (min-width: 768px) {
    .wave-divider svg {
        height: 90px;
    }
}

/* ===================================
   SEKCIE
   =================================== */
.section {
    padding: 4rem 0;
}

@media (min-width: 768px) {
    .section {
        padding: 6rem 0;
    }
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title {
    font-size: 1.875rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .section-title {
        font-size: 2.25rem;
    }
}

.section-title span {
    color: var(--bcz-primary);
}

.section-description {
    font-size: 1.125rem;
    color: var(--bcz-muted);
    max-width: 700px;
    margin: 0 auto;
}

/* ===================================
   O NÁS SEKCIA
   =================================== */
.about-section {
    background-color: var(--bcz-card);
}

.features-grid {
    display: grid;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.feature-card {
    background: white;
    border-radius: 1rem;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--bcz-primary) 0%, var(--bcz-accent) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card:hover {
    box-shadow: 0 15px 40px rgba(22, 163, 74, 0.15);
    transform: translateY(-6px);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.25rem;
    border-radius: 1rem;
    background: linear-gradient(135deg, var(--bcz-primary) 0%, var(--bcz-primary-dark) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(22, 163, 74, 0.3);
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.05);
    box-shadow: 0 12px 25px rgba(22, 163, 74, 0.4);
}

.feature-icon svg {
    width: 32px;
    height: 32px;
    color: white;
}

.feature-title {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--bcz-foreground);
}

.feature-description {
    font-size: 0.9rem;
    color: var(--bcz-muted);
    line-height: 1.6;
    margin: 0;
}

/* Certifikácie */
.certifications {
    margin-top: 3rem;
    text-align: center;
}

.certifications-label {
    font-size: 0.875rem;
    color: var(--bcz-muted);
    margin-bottom: 1rem;
}

.certifications-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    opacity: 0.6;
}

.certifications-list span {
    font-size: 0.875rem;
    font-weight: 500;
}

/* ===================================
   KURZY SEKCIA
   =================================== */
.courses-section {
    background: linear-gradient(to bottom right, white, rgba(22, 163, 74, 0.03));
}

.courses-grid {
    display: grid;
    gap: 2rem;
}

@media (min-width: 768px) {
    .courses-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .courses-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.course-card {
    background: white;
    border: 2px solid var(--bcz-border);
    border-radius: var(--bcz-radius);
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.course-card:hover {
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
    transform: translateY(-8px);
}

.course-card.featured {
    border-color: var(--bcz-accent);
}

.course-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background-color: var(--bcz-accent);
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
}

.course-age {
    font-size: 0.875rem;
    color: var(--bcz-muted);
    margin-bottom: 0.5rem;
}

.course-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.course-price {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--bcz-primary);
    margin-bottom: 1rem;
}

.course-details {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.course-detail {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--bcz-muted);
}

.course-detail svg {
    width: 16px;
    height: 16px;
    color: var(--bcz-primary);
}

.course-features {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
    flex-grow: 1;
}

.course-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.course-features li svg {
    width: 20px;
    height: 20px;
    color: var(--bcz-primary);
    flex-shrink: 0;
    margin-top: 2px;
}

/* Doplnkové služby */
.additional-services {
    display: grid;
    gap: 1.5rem;
    margin-top: 3rem;
}

@media (min-width: 768px) {
    .additional-services {
        grid-template-columns: repeat(3, 1fr);
    }
}

.service-card {
    background-color: rgba(22, 163, 74, 0.05);
    border: 1px solid rgba(22, 163, 74, 0.1);
    border-radius: var(--bcz-radius);
    padding: 1.5rem;
    text-align: center;
}

.service-card.accent {
    background-color: rgba(245, 158, 11, 0.05);
    border-color: rgba(245, 158, 11, 0.1);
}

.service-title {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.service-description {
    font-size: 0.875rem;
    color: var(--bcz-muted);
    margin-bottom: 0.75rem;
}

.service-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--bcz-primary);
}

.service-card.accent .service-price {
    color: var(--bcz-accent);
}

/* ===================================
   BENEFITY SEKCIA
   =================================== */
.benefits-section {
    background: linear-gradient(to bottom right, white, rgba(22, 163, 74, 0.03));
}

.benefits-grid {
    display: grid;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .benefits-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.benefit-card {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    background: white;
    border-radius: var(--bcz-radius);
    transition: box-shadow 0.3s ease;
}

.benefit-card:hover {
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.benefit-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background-color: rgba(22, 163, 74, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
}

.benefit-card:hover .benefit-icon {
    background-color: rgba(22, 163, 74, 0.2);
}

.benefit-icon svg {
    width: 24px;
    height: 24px;
    color: var(--bcz-primary);
}

.benefit-title {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.benefit-description {
    font-size: 0.875rem;
    color: var(--bcz-muted);
    line-height: 1.6;
}

/* Vedecký box */
.science-box {
    margin-top: 3rem;
    padding: 2rem;
    background-color: rgba(245, 158, 11, 0.1);
    border: 2px solid rgba(245, 158, 11, 0.2);
    border-radius: var(--bcz-radius);
    text-align: center;
}

.science-box h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.science-box p {
    color: var(--bcz-muted);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ===================================
   RECENZIE SEKCIA
   =================================== */
.testimonials-section {
    background-color: var(--bcz-card);
}

.overall-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.stars {
    display: flex;
    gap: 0.25rem;
}

.stars svg {
    width: 24px;
    height: 24px;
    fill: var(--bcz-accent);
    color: var(--bcz-accent);
}

.rating-value {
    font-size: 1.5rem;
    font-weight: 700;
}

.rating-count {
    color: var(--bcz-muted);
}

.testimonials-grid {
    display: grid;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.testimonial-card {
    background: white;
    border: 1px solid var(--bcz-border);
    border-radius: var(--bcz-radius);
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    transition: box-shadow 0.3s ease;
}

.testimonial-card:hover {
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.testimonial-stars {
    display: flex;
    gap: 0.25rem;
}

.testimonial-stars svg {
    width: 16px;
    height: 16px;
    fill: var(--bcz-accent);
    color: var(--bcz-accent);
}

.testimonial-text {
    font-size: 0.875rem;
    line-height: 1.7;
    flex-grow: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding-top: 0.75rem;
    border-top: 1px solid var(--bcz-border);
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: rgba(22, 163, 74, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.testimonial-name {
    font-size: 0.875rem;
    font-weight: 600;
}

.testimonial-role {
    font-size: 0.75rem;
    color: var(--bcz-muted);
}

/* Sociálne siete */
.social-proof {
    margin-top: 3rem;
    text-align: center;
}

.social-proof p {
    font-size: 1rem;
    font-weight: 600;
    color: var(--bcz-foreground);
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.social-link {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.75rem;
    border-radius: var(--bcz-radius);
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    color: white;
}

.social-link svg {
    width: 24px;
    height: 24px;
}

.social-link:hover {
    transform: translateY(-3px);
    color: white;
}

/* Facebook */
.social-link.social-facebook {
    background: #1877F2;
}

.social-link.social-facebook:hover {
    background: #0d65d9;
    box-shadow: 0 8px 25px rgba(24, 119, 242, 0.4);
}

/* Instagram */
.social-link.social-instagram {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.social-link.social-instagram:hover {
    box-shadow: 0 8px 25px rgba(225, 48, 108, 0.4);
}

/* YouTube */
.social-link.social-youtube {
    background: #FF0000;
}

.social-link.social-youtube:hover {
    background: #cc0000;
    box-shadow: 0 8px 25px rgba(255, 0, 0, 0.4);
}

@media (max-width: 640px) {
    .social-links {
        flex-direction: column;
        align-items: center;
    }

    .social-link {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
}

/* ===================================
   GALÉRIA SEKCIA
   =================================== */
.gallery-section {
    background-color: var(--bcz-background);
}

.gallery-filter {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.gallery-filter-btn {
    padding: 0.5rem 1.25rem;
    background: white;
    border: 2px solid var(--bcz-border);
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--bcz-foreground);
    cursor: pointer;
    transition: all 0.3s ease;
}

.gallery-filter-btn:hover,
.gallery-filter-btn.active {
    background: var(--bcz-primary);
    border-color: var(--bcz-primary);
    color: white;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

@media (max-width: 991px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 767px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}

.gallery-item {
    position: relative;
    aspect-ratio: 4/3;
    border-radius: var(--bcz-radius);
    overflow: hidden;
    cursor: pointer;
    display: block;
}

.gallery-item.hidden {
    display: none;
}

.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0) 50%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    padding: 1rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover .gallery-image {
    transform: scale(1.1);
}

.gallery-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bcz-primary);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.gallery-icon svg {
    width: 24px;
    height: 24px;
}

.gallery-title {
    color: white;
    font-size: 0.875rem;
    font-weight: 500;
    text-align: center;
}

.gallery-cta {
    margin-top: 2.5rem;
    text-align: center;
}

.gallery-cta-text {
    color: var(--bcz-muted);
    margin-bottom: 1rem;
}

.gallery-social {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.gallery-social .btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.gallery-social .btn svg {
    width: 18px;
    height: 18px;
}

/* Lightbox */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightbox.active {
    display: flex;
    opacity: 1;
}

.lightbox-content {
    max-width: 90vw;
    max-height: 90vh;
    text-align: center;
}

.lightbox-image {
    max-width: 100%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: var(--bcz-radius);
}

.lightbox-caption {
    color: white;
    margin-top: 1rem;
    font-size: 1rem;
}

.lightbox-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.1);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    transition: background 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.lightbox-close:hover {
    background: rgba(255,255,255,0.2);
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.1);
    border: none;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    transition: background 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-prev {
    left: 1rem;
}

.lightbox-next {
    right: 1rem;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(255,255,255,0.2);
}

.lightbox-prev svg,
.lightbox-next svg {
    width: 24px;
    height: 24px;
}

@media (max-width: 767px) {
    .lightbox-prev,
    .lightbox-next {
        width: 40px;
        height: 40px;
    }

    .lightbox-close {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }
}

/* ===================================
   CTA SEKCIA
   =================================== */
.cta-section {
    background-color: var(--bcz-primary);
    color: white;
    padding: 5rem 0;
}

@media (min-width: 768px) {
    .cta-section {
        padding: 8rem 0;
    }
}

.cta-content {
    text-align: center;
    margin-bottom: 4rem;
}

.cta-title {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .cta-title {
        font-size: 3rem;
    }
}

@media (min-width: 1024px) {
    .cta-title {
        font-size: 3.5rem;
    }
}

.cta-description {
    font-size: 1.125rem;
    opacity: 0.9;
    max-width: 800px;
    margin: 0 auto 2rem;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

@media (min-width: 640px) {
    .cta-buttons {
        flex-direction: row;
        justify-content: center;
    }
}

.cta-buttons .btn-white {
    background-color: white;
    color: var(--bcz-primary);
    border-color: white;
}

.cta-buttons .btn-white:hover {
    background-color: rgba(255,255,255,0.9);
}

.cta-buttons .btn-outline-white {
    background-color: transparent;
    color: white;
    border-color: white;
}

.cta-buttons .btn-outline-white:hover {
    background-color: rgba(255,255,255,0.1);
}

.cta-guarantee {
    font-size: 0.875rem;
    opacity: 0.8;
    margin-top: 1rem;
}

/* Kontaktné karty */
.contact-cards {
    display: grid;
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .contact-cards {
        grid-template-columns: repeat(3, 1fr);
    }
}

.contact-card {
    text-align: center;
}

.contact-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1rem;
    border-radius: 16px;
    background-color: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-icon svg {
    width: 32px;
    height: 32px;
}

.contact-label {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.contact-value {
    font-size: 1.125rem;
    line-height: 1.6;
}

.contact-value a {
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
}

.contact-value a:hover {
    opacity: 0.8;
}

/* ===================================
   PÄTIČKA
   =================================== */
.site-footer {
    background-color: var(--bcz-card);
    border-top: 1px solid var(--bcz-border);
    padding: 3rem 0;
}

@media (min-width: 768px) {
    .site-footer {
        padding: 4rem 0;
    }
}

.footer-grid {
    display: grid;
    gap: 2rem;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr 1.5fr;
    }
}

.footer-brand {
    margin-bottom: 1rem;
}

.footer-brand .site-branding {
    margin-bottom: 1rem;
}

.footer-description {
    font-size: 0.875rem;
    color: var(--bcz-muted);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.footer-social {
    display: flex;
    gap: 0.75rem;
}

.footer-social a {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: rgba(22, 163, 74, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background-color: var(--bcz-primary);
    color: white;
}

.footer-social a svg {
    width: 20px;
    height: 20px;
}

.footer-column h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    font-size: 0.875rem;
    color: var(--bcz-muted);
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--bcz-primary);
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
    font-size: 0.875rem;
    color: var(--bcz-muted);
}

.footer-contact-item svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    margin-top: 3px;
}

.footer-contact-item a {
    color: var(--bcz-muted);
}

.footer-contact-item a:hover {
    color: var(--bcz-primary);
}

.footer-hours {
    font-size: 0.875rem;
    color: var(--bcz-muted);
    margin-top: 1rem;
}

.footer-hours strong {
    display: block;
    color: var(--bcz-foreground);
    margin-bottom: 0.25rem;
}

/* Footer bottom */
.footer-bottom {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--bcz-border);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    text-align: center;
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }
}

.footer-copyright {
    font-size: 0.875rem;
    color: var(--bcz-muted);
}

.footer-legal {
    display: flex;
    gap: 1.5rem;
}

.footer-legal a {
    font-size: 0.875rem;
    color: var(--bcz-muted);
}

.footer-legal a:hover {
    color: var(--bcz-primary);
}

/* ===================================
   WORDPRESS ŠPECIFICKÉ
   =================================== */
.alignleft {
    float: left;
    margin-right: 1.5rem;
    margin-bottom: 1rem;
}

.alignright {
    float: right;
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.wp-caption {
    max-width: 100%;
}

.wp-caption-text {
    font-size: 0.875rem;
    color: var(--bcz-muted);
    text-align: center;
    margin-top: 0.5rem;
}

.screen-reader-text {
    border: 0;
    clip: rect(1px, 1px, 1px, 1px);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
    word-wrap: normal !important;
}

/* Články a obsah */
.entry-content {
    max-width: 800px;
    margin: 0 auto;
}

.entry-content p {
    margin-bottom: 1.5rem;
}

.entry-content h2 {
    font-size: 1.875rem;
    font-weight: 700;
    margin: 2rem 0 1rem;
}

.entry-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 1.5rem 0 0.75rem;
}

.entry-content ul,
.entry-content ol {
    margin: 0 0 1.5rem 1.5rem;
}

.entry-content li {
    margin-bottom: 0.5rem;
}

/* Stránka */
.page-header {
    text-align: center;
    padding: 4rem 0 2rem;
    background: linear-gradient(to bottom right, white, rgba(22, 163, 74, 0.05));
}

.page-title {
    font-size: 2.5rem;
    font-weight: 700;
}

.page-content {
    padding: 3rem 0;
}

/* Kontaktný formulár */
.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    border: 2px solid var(--bcz-border);
    border-radius: var(--bcz-radius);
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--bcz-primary);
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

/* ===================================
   UTILITY TRIEDY
   =================================== */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

.hidden { display: none; }

@media (max-width: 767px) {
    .hide-mobile { display: none; }
}

@media (min-width: 768px) {
    .hide-desktop { display: none; }
}

/* ===================================
   ČLÁNKY SEKCIA - HLAVNÁ STRÁNKA (štýl ako benefits)
   =================================== */
.articles-section {
    background-color: var(--bcz-card);
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

@media (max-width: 768px) {
    .articles-grid {
        grid-template-columns: 1fr;
    }
}

.article-card {
    display: flex;
    flex-direction: column;
    background: white;
    border-radius: var(--bcz-radius);
    overflow: hidden;
    text-decoration: none;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.article-card:hover {
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    transform: translateY(-4px);
}

.article-image {
    aspect-ratio: 16/10;
    overflow: hidden;
    background: linear-gradient(135deg, var(--bcz-primary-light), var(--bcz-primary));
}

.article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.article-card:hover .article-image img {
    transform: scale(1.05);
}

.article-image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    opacity: 0.5;
}

.article-image-placeholder svg {
    width: 48px;
    height: 48px;
}

.article-content {
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.article-meta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8125rem;
    color: var(--bcz-muted);
    margin-bottom: 0.5rem;
}

.article-meta svg {
    width: 14px;
    height: 14px;
    color: var(--bcz-primary);
}

.article-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--bcz-foreground);
    margin: 0 0 0.5rem 0;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.article-card:hover .article-title {
    color: var(--bcz-primary);
}

.article-excerpt {
    font-size: 0.875rem;
    color: var(--bcz-muted);
    margin: 0;
    line-height: 1.6;
    flex-grow: 1;
}

.article-link {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--bcz-primary);
    margin-top: 1rem;
}

.article-link svg {
    transition: transform 0.2s ease;
}

.article-card:hover .article-link svg {
    transform: translateX(4px);
}

.articles-cta {
    text-align: center;
}

/* ===================================
   SINGLE POST - HERO SEKCIA
   =================================== */
.single-hero {
    position: relative;
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6rem 0 4rem;
    overflow: hidden;
}

.single-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.single-hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.single-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--bcz-primary-overlay, rgba(22, 163, 74, 0.85)) 0%, var(--bcz-primary-overlay-dark, rgba(21, 128, 61, 0.9)) 100%);
}

.single-hero .container {
    position: relative;
    z-index: 1;
}

.single-hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.single-hero-category {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
    color: white;
    margin-bottom: 1.5rem;
}

.single-hero-category svg {
    width: 16px;
    height: 16px;
}

.single-hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    line-height: 1.2;
    margin: 0 0 1.5rem 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

@media (min-width: 768px) {
    .single-hero-title {
        font-size: 3rem;
    }
}

.single-hero-meta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.single-hero-meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9375rem;
}

.single-hero-meta-item svg {
    width: 18px;
    height: 18px;
    opacity: 0.8;
}

.single-hero .wave-divider {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 1;
}

.single-hero .wave-divider svg {
    display: block;
    width: 100%;
    height: 60px;
}

/* Single post obsah */
.single-content {
    padding: 3rem 0 4rem;
}

.single-article {
    max-width: 800px;
    margin: 0 auto;
}

.single-article .entry-content {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--bcz-foreground);
}

.single-article .entry-content p {
    margin-bottom: 1.5rem;
}

.single-article .entry-content h2 {
    font-size: 1.75rem;
    font-weight: 700;
    margin: 2.5rem 0 1rem;
    color: var(--bcz-foreground);
}

.single-article .entry-content h3 {
    font-size: 1.375rem;
    font-weight: 600;
    margin: 2rem 0 0.75rem;
}

.single-article .entry-content ul,
.single-article .entry-content ol {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.single-article .entry-content li {
    margin-bottom: 0.5rem;
}

.single-article .entry-content blockquote {
    border-left: 4px solid var(--bcz-primary);
    padding: 1rem 1.5rem;
    margin: 2rem 0;
    background-color: var(--bcz-card);
    border-radius: 0 var(--bcz-radius) var(--bcz-radius) 0;
    font-style: italic;
    color: var(--bcz-muted);
}

.single-article .entry-content img {
    border-radius: var(--bcz-radius);
    margin: 2rem 0;
}

/* Single footer */
.single-footer {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--bcz-border);
}

.single-tags {
    margin-bottom: 2rem;
    font-size: 0.9375rem;
    color: var(--bcz-muted);
}

.single-tags .tag-label {
    font-weight: 600;
    color: var(--bcz-foreground);
}

.single-tags a {
    color: var(--bcz-primary);
}

.single-navigation {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

@media (max-width: 767px) {
    .single-navigation {
        grid-template-columns: 1fr;
    }
}

.single-nav-link {
    display: flex;
    flex-direction: column;
    padding: 1.25rem;
    background: var(--bcz-card);
    border-radius: var(--bcz-radius);
    text-decoration: none;
    transition: all 0.3s ease;
}

.single-nav-link:hover {
    background: white;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    transform: translateY(-2px);
}

.single-nav-next {
    text-align: right;
}

.single-nav-label {
    font-size: 0.8125rem;
    color: var(--bcz-muted);
    margin-bottom: 0.25rem;
}

.single-nav-title {
    font-weight: 600;
    color: var(--bcz-foreground);
    line-height: 1.4;
}

.single-nav-link:hover .single-nav-title {
    color: var(--bcz-primary);
}

/* ===================================
   BLOG STRÁNKA - JEDNOTNÝ DIZAJN
   =================================== */
.blog-page-section {
    background-color: var(--bcz-card);
}

/* Filter kategórií */
.blog-filter {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 2.5rem;
}

.blog-filter-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    background: white;
    border: 2px solid var(--bcz-border);
    border-radius: 9999px;
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--bcz-foreground);
    transition: all 0.3s ease;
    text-decoration: none;
}

.blog-filter-btn:hover {
    border-color: var(--bcz-primary);
    color: var(--bcz-primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.blog-filter-btn.active {
    background: var(--bcz-primary);
    border-color: var(--bcz-primary);
    color: white;
}

.blog-filter-btn.active:hover {
    background: var(--bcz-primary-dark);
    border-color: var(--bcz-primary-dark);
    color: white;
}

.blog-filter-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 1.5rem;
    height: 1.5rem;
    padding: 0 0.4rem;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 700;
}

.blog-filter-btn.active .blog-filter-count {
    background: rgba(255, 255, 255, 0.25);
}

@media (max-width: 640px) {
    .blog-filter {
        gap: 0.5rem;
    }

    .blog-filter-btn {
        padding: 0.5rem 1rem;
        font-size: 0.875rem;
    }
}

.blog-page-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

@media (max-width: 991px) {
    .blog-page-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .blog-page-grid {
        grid-template-columns: 1fr;
    }
}

.blog-page-card {
    background: white;
    border: 2px solid var(--bcz-border);
    border-radius: var(--bcz-radius);
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.blog-page-card:hover {
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
    transform: translateY(-8px);
    border-color: var(--bcz-primary);
}

.blog-page-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background-color: var(--bcz-accent);
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    z-index: 1;
}

.blog-page-image {
    display: block;
    margin: -1.5rem -1.5rem 1.5rem -1.5rem;
    aspect-ratio: 16/10;
    overflow: hidden;
}

.blog-page-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-page-card:hover .blog-page-image img {
    transform: scale(1.05);
}

.blog-page-image--placeholder {
    background: linear-gradient(135deg, var(--bcz-primary-light), var(--bcz-primary));
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog-page-placeholder-icon {
    color: white;
    opacity: 0.5;
}

.blog-page-placeholder-icon svg {
    width: 64px;
    height: 64px;
}

.blog-page-meta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--bcz-muted);
    margin-bottom: 0.75rem;
}

.blog-page-meta svg {
    width: 16px;
    height: 16px;
    color: var(--bcz-primary);
}

.blog-page-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0 0 0.75rem 0;
    line-height: 1.4;
}

.blog-page-title a {
    color: var(--bcz-foreground);
    text-decoration: none;
}

.blog-page-title a:hover {
    color: var(--bcz-primary);
}

.blog-page-excerpt {
    font-size: 0.9375rem;
    color: var(--bcz-muted);
    margin: 0 0 1.5rem 0;
    line-height: 1.6;
    flex-grow: 1;
}

.blog-pagination {
    margin-top: 3rem;
    text-align: center;
}

.blog-pagination .nav-links {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.blog-pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 2.5rem;
    height: 2.5rem;
    padding: 0 0.75rem;
    background: var(--bcz-background);
    border: 2px solid var(--bcz-border);
    border-radius: var(--bcz-radius);
    color: var(--bcz-foreground);
    font-weight: 500;
    transition: all 0.3s ease;
}

.blog-pagination .page-numbers:hover {
    border-color: var(--bcz-primary);
    color: var(--bcz-primary);
    transform: translateY(-2px);
}

.blog-pagination .page-numbers.current {
    background: var(--bcz-primary);
    border-color: var(--bcz-primary);
    color: white;
}

.no-posts {
    text-align: center;
    padding: 4rem 2rem;
    color: var(--bcz-muted);
}

/* ===================================
   SEKCIA SLUŽBY
   =================================== */
.services-section {
    background: var(--bcz-background);
}

.services-grid {
    display: grid;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.service-card {
    background: white;
    border-radius: 1rem;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--bcz-primary) 0%, var(--bcz-accent) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card:hover {
    box-shadow: 0 15px 40px rgba(22, 163, 74, 0.15);
    transform: translateY(-6px);
}

.service-card:hover::before {
    opacity: 1;
}

.service-card--fyzio {
    background: linear-gradient(135deg, #f0fdf4 0%, #ffffff 100%);
}

.service-card--fyzio::before {
    opacity: 1;
    background: linear-gradient(90deg, var(--bcz-primary-dark) 0%, var(--bcz-primary) 100%);
}

.service-fyzio-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(135deg, var(--bcz-primary) 0%, var(--bcz-primary-dark) 100%);
    color: white;
    font-size: 0.65rem;
    font-weight: 700;
    padding: 0.3rem 0.6rem;
    border-radius: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(22, 163, 74, 0.3);
}

.service-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.25rem;
    border-radius: 1rem;
    background: linear-gradient(135deg, var(--bcz-primary) 0%, var(--bcz-primary-dark) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(22, 163, 74, 0.3);
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.05);
    box-shadow: 0 12px 25px rgba(22, 163, 74, 0.4);
}

.service-icon svg {
    width: 32px;
    height: 32px;
    color: white;
}

.service-card--fyzio .service-icon {
    background: linear-gradient(135deg, var(--bcz-primary-dark) 0%, #0d7534 100%);
}

.service-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--bcz-foreground);
    margin: 0 0 0.75rem;
}

.service-description {
    font-size: 0.9rem;
    color: var(--bcz-muted);
    margin: 0 0 1rem;
    line-height: 1.6;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--bcz-primary);
    transition: all 0.3s ease;
}

.service-link:hover {
    color: var(--bcz-primary-dark);
    gap: 0.5rem;
}

.service-link--fyzio {
    color: var(--bcz-primary-dark);
}

.service-link svg {
    transition: transform 0.3s ease;
}

.service-link:hover svg {
    transform: translateX(2px);
}

/* Fyzio Banner - podobný certifications */
.services-fyzio-banner {
    margin-top: 2.5rem;
    text-align: center;
    padding: 1.5rem;
    background: var(--bcz-card);
    border-radius: var(--bcz-radius);
    border: 1px solid var(--bcz-border);
}

.services-fyzio-label {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--bcz-muted);
    margin: 0 0 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.services-fyzio-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.services-fyzio-links a {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: var(--bcz-primary);
    color: white;
    border-radius: var(--bcz-radius);
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.services-fyzio-links a:hover {
    background: var(--bcz-primary-dark);
    color: white;
    transform: translateY(-2px);
}
