/*
 * TASEDAČKA - Hlavní CSS stylesheet
 * Barevné schéma: Tyrkysová #21758c, Oranžová #f2795a
 */

/* ===== Reset & Základní styly ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #21758c;
    --primary-dark: #0d3d4d;
    --accent-color: #f2795a;
    --accent-light: #ff8b6d;
    --white: #ffffff;
    --text-dark: #333333;
    --text-light: #666666;
    --border-color: #dddddd;
    --bg-light: #f9f9f9;
}

body {
    font-family: 'Roboto', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== NOVÝ STICKY HEADER ===== */
.sticky-header {
    background-color: var(--primary-dark) !important;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
}

/* Zajištění tmavého pozadí i pro vnořené elementy */
.sticky-header,
.sticky-header .container,
.sticky-header .header-wrapper {
    background-color: var(--primary-dark) !important;
}

.sticky-header.scrolled {
    box-shadow: 0 4px 20px rgba(0,0,0,0.25);
    padding: 10px 0;
}

.header-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
    gap: 30px;
}

.sticky-header.scrolled .header-wrapper {
    padding: 10px 0;
}

/* Logo */
.logo {
    flex-shrink: 0;
}

.logo img {
    height: 50px;
    transition: height 0.3s ease;
}

.sticky-header.scrolled .logo img {
    height: 45px;
}

/* Hlavní navigace - zarovnáno vpravo */
.main-nav {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.nav-menu {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 0;
    margin: 0;
}

.nav-menu li {
    margin: 0;
}

.nav-menu a {
    display: block;
    padding: 10px 18px;
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    border-radius: 6px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-menu a:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

/* AKTIVNÍ STRÁNKA - Oranžové podtržení */
.nav-menu a.active {
    color: var(--accent-color);
    font-weight: 600;
}

.nav-menu a.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 18px;
    right: 18px;
    height: 3px;
    background: var(--accent-color);
    border-radius: 2px 2px 0 0;
}

/* CTA tlačítko v menu (Rezervovat) */
.nav-btn-cta {
    background: linear-gradient(135deg, var(--accent-color), #ff8b6d) !important;
    color: var(--white) !important;
    font-weight: 600 !important;
    padding: 10px 24px !important;
    margin-left: 10px;
    box-shadow: 0 2px 8px rgba(242, 121, 90, 0.3);
}

.nav-btn-cta:hover {
    background: var(--accent-color) !important;
    box-shadow: 0 4px 12px rgba(242, 121, 90, 0.5);
    transform: translateY(-1px);
}

/* Uživatelská oblast (ikona vpravo) */
.header-user-area {
    flex-shrink: 0;
    margin-left: 15px;
}

/* === IKONA PŘIHLÁŠENÉHO UŽIVATELE === */
.user-menu,
.guest-menu {
    position: relative;
}

.user-icon-trigger,
.guest-icon-trigger {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    transition: all 0.3s ease;
}

.user-icon-trigger:hover,
.guest-icon-trigger:hover {
    transform: scale(1.1);
}

/* Avatar kroužek */
.user-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-color), #ff8b6d);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
    box-shadow: 0 2px 8px rgba(242, 121, 90, 0.3);
    transition: all 0.3s ease;
}

.user-icon-trigger:hover .user-avatar {
    box-shadow: 0 4px 12px rgba(242, 121, 90, 0.5);
}

/* Ikona pro nepřihlášeného - ORANŽOVÁ (viditelná) */
.guest-icon-trigger i {
    font-size: 40px;
    color: var(--accent-color);
    transition: all 0.3s ease;
    filter: drop-shadow(0 2px 4px rgba(242, 121, 90, 0.3));
}

.guest-icon-trigger:hover i {
    color: var(--accent-light);
    filter: drop-shadow(0 4px 8px rgba(242, 121, 90, 0.5));
    transform: scale(1.05);
}

/* === DROPDOWN MENU === */
.user-dropdown,
.guest-dropdown {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    background: var(--white);
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1001;
}

.user-menu.open .user-dropdown,
.guest-menu.open .guest-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Šipka směřující k ikoně */
.user-dropdown::before,
.guest-dropdown::before {
    content: '';
    position: absolute;
    top: -6px;
    right: 15px;
    width: 12px;
    height: 12px;
    background: var(--white);
    transform: rotate(45deg);
    box-shadow: -2px -2px 4px rgba(0,0,0,0.05);
}

/* Header dropdownu */
.dropdown-header {
    padding: 15px 20px;
    border-bottom: 1px solid #e5e5e5;
}

.dropdown-header strong {
    display: block;
    color: var(--text-dark);
    font-size: 15px;
    margin-bottom: 4px;
}

.user-email {
    font-size: 13px;
    color: var(--text-light);
}

/* Menu položky */
.dropdown-menu {
    list-style: none;
    padding: 8px 0;
    margin: 0;
}

.dropdown-menu li {
    margin: 0;
}

.dropdown-menu a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    color: var(--text-dark);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.2s ease;
}

.dropdown-menu a:hover {
    background-color: #f8f9fa;
    color: var(--primary-color);
}

.dropdown-menu a i {
    width: 18px;
    text-align: center;
    color: var(--text-light);
}

.dropdown-menu a:hover i {
    color: var(--primary-color);
}

.dropdown-divider {
    height: 1px;
    background-color: #e5e5e5;
    margin: 8px 0;
}

.logout-link {
    color: #dc3545 !important;
}

.logout-link:hover {
    background-color: #fff5f5 !important;
}

.logout-link i {
    color: #dc3545 !important;
}

/* === MOBILNÍ HAMBURGER MENU === */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    flex-direction: column;
    gap: 5px;
    z-index: 1002;
}

.mobile-menu-toggle span {
    display: block;
    width: 28px;
    height: 3px;
    background-color: var(--white);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

/* === RESPONSIVITA === */
/* Desktop (landscape tablety nad 1024px a desktopy) */
@media (min-width: 1024px) and (orientation: landscape) {
    .mobile-menu-toggle {
        display: none !important;
    }

    .main-nav {
        position: static !important;
        max-height: none !important;
        overflow: visible !important;
        box-shadow: none !important;
    }
}

/* Velké desktopy (nad 1024px portrait) */
@media (min-width: 1025px) {
    .mobile-menu-toggle {
        display: none !important;
    }

    .main-nav {
        position: static !important;
        max-height: none !important;
        overflow: visible !important;
        box-shadow: none !important;
    }
}

/* Mobilní a tablety na výšku (do 1024px) */
@media (max-width: 1024px) and (orientation: portrait) {
    /* Flexbox order - změnit pořadí elementů */
    .header-wrapper {
        display: flex;
        align-items: center;
    }

    .logo {
        order: 1;
    }

    .mobile-menu-toggle {
        display: flex !important; /* DŮLEŽITÉ: Přepsat display: none */
        order: 2; /* Hamburger hned za logem */
        margin-left: auto; /* Posunout doprava */
        margin-right: 15px;
    }

    .header-user-area {
        order: 3; /* User ikona úplně vpravo */
        margin-left: 0; /* ODSTRANIT auto */
        margin-right: 0;
    }

    .main-nav {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background-color: var(--primary-dark);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        box-shadow: 0 4px 10px rgba(0,0,0,0.2);
        order: 4; /* Menu až jako poslední */
    }

    .main-nav.mobile-open {
        max-height: 400px;
    }

    .nav-menu {
        flex-direction: column;
        align-items: stretch;
        padding: 15px 20px;
    }

    .nav-menu li {
        width: 100%;
    }

    .nav-menu a {
        padding: 12px 15px;
        border-radius: 4px;
    }

    .nav-btn-cta {
        margin-left: 0 !important;
        margin-top: 10px;
        text-align: center;
    }

    /* OPRAVA: User dropdown v mobilním zobrazení jako překrývající okno */
    .user-dropdown,
    .guest-dropdown {
        position: fixed !important;
        top: 80px !important; /* Pod headerem */
        right: 10px !important;
        left: 10px !important;
        width: auto !important;
        min-width: auto !important;
        max-width: 400px !important;
        margin: 0 auto !important;
        z-index: 2000 !important; /* Nad vším ostatním */
        /* DŮLEŽITÉ: Výchozí stav - SCHOVANÝ */
        opacity: 0 !important;
        visibility: hidden !important;
        transform: translateY(-10px) !important;
        display: block !important;
    }

    /* Zobrazení POUZE když má třídu .open */
    .user-menu.open .user-dropdown,
    .guest-menu.open .guest-dropdown {
        opacity: 1 !important;
        visibility: visible !important;
        transform: translateY(0) !important;
    }

    /* Šipka schovej na mobilu */
    .user-dropdown::before,
    .guest-dropdown::before {
        display: none;
    }
}

@media (max-width: 768px) {
    .logo img {
        height: 40px;
    }

    .sticky-header.scrolled .logo img {
        height: 38px;
    }

    .user-avatar {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }

    .guest-icon-trigger i {
        font-size: 36px;
    }

    /* OPRAVA: Ještě lepší pozicování pro menší mobily */
    .user-dropdown,
    .guest-dropdown {
        right: 5px !important;
        left: 5px !important;
        top: 70px !important;
        max-width: none !important;
        /* DŮLEŽITÉ: Ujisti se, že je schovaný */
        opacity: 0 !important;
        visibility: hidden !important;
    }

    /* Zobrazení pouze se třídou .open */
    .user-menu.open .user-dropdown,
    .guest-menu.open .guest-dropdown {
        opacity: 1 !important;
        visibility: visible !important;
    }

    .dropdown-header {
        padding: 12px 15px;
    }

    .dropdown-menu li a {
        padding: 10px 15px;
        font-size: 14px;
    }
}

/* ===== Buttons ===== */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s;
}

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

.btn-primary:hover {
    background-color: var(--accent-light);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-large {
    padding: 16px 32px;
    font-size: 18px;
}

.btn-block {
    display: block;
    width: 100%;
    text-align: center;
}

/* ===== Hero Section ===== */
.hero-section {
    position: relative;
    height: 600px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-align: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.3) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-content h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 24px;
    margin-bottom: 30px;
}

/* ===== Sections ===== */
section {
    padding: 60px 0;
}

section h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 40px;
    color: var(--primary-color);
}

.section-intro {
    text-align: center;
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 40px;
}

/* ===== Equipment Grid - ORANŽOVÉ KRUHOVÉ IKONY ===== */
.equipment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.equipment-item {
    text-align: center;
    padding: 20px 10px;
    transition: all 0.3s ease;
}

.equipment-item:hover {
    transform: translateY(-5px);
}

/* Kruhové ikony - oranžové s gradientem */
.equipment-icon-circle {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--accent-color), #ff8b6d);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    box-shadow: 0 4px 12px rgba(242, 121, 90, 0.3);
    transition: all 0.3s ease;
}

.equipment-item:hover .equipment-icon-circle {
    box-shadow: 0 6px 20px rgba(242, 121, 90, 0.45);
    transform: scale(1.05);
}

.equipment-icon-circle i {
    font-size: 32px;
    color: var(--white);
}

.equipment-item h4 {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.3;
}

/* Responzivita pro vybavení */
@media (max-width: 768px) {
    .equipment-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 20px;
    }

    .equipment-icon-circle {
        width: 70px;
        height: 70px;
    }

    .equipment-icon-circle i {
        font-size: 28px;
    }

    .equipment-item h4 {
        font-size: 14px;
    }
}

/* ===== CTA Section ===== */
.cta-section {
    background-color: var(--primary-color);
    color: var(--white);
    text-align: center;
    padding: 60px 20px;
}

.cta-section h2 {
    color: var(--white);
}

/* ===== Forms ===== */
.form-group {
    margin-bottom: 20px;
}

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

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 14px;
}

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

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

/* ===== Flash Messages ===== */
.flash-message {
    padding: 15px;
    margin: 20px 0;
    border-radius: 4px;
}

.flash-success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.flash-error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* ===== Footer ===== */
.site-footer {
    background-color: var(--primary-dark);
    color: var(--white);
    padding: 40px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.footer-column h4 {
    margin-bottom: 15px;
}

.footer-column ul {
    list-style: none;
}

.footer-column a {
    color: var(--white);
    text-decoration: none;
}

.footer-column a:hover {
    color: var(--accent-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-bottom a {
    color: #999;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom a:hover {
    color: var(--white);
}

/* ===== Pricing Section ===== */
.pricing-section {
    background-color: var(--white);
}

.pricing-section h1 {
    text-align: center;
    color: var(--primary-color);
    font-size: 42px;
    margin-bottom: 10px;
}

.pricing-section .section-intro {
    text-align: center;
    color: var(--text-light);
    font-size: 16px;
    margin-bottom: 50px;
}

/* Tabulka ceníku */
.pricing-table-wrapper {
    overflow-x: auto;
    margin-bottom: 40px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    border-radius: 8px;
}

.pricing-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
    font-size: 15px;
}

.pricing-table thead {
    background-color: var(--primary-color);
    color: var(--white);
}

.pricing-table thead th {
    padding: 18px 15px;
    text-align: left;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pricing-table thead th:last-child {
    text-align: center;
}

.pricing-table tbody tr {
    border-bottom: 1px solid #e8e8e8;
    transition: background-color 0.2s;
}

.pricing-table tbody tr:hover {
    background-color: #f9f9f9;
}

.pricing-table tbody tr:last-child {
    border-bottom: none;
}

.pricing-table tbody td {
    padding: 20px 15px;
    vertical-align: middle;
}

.pricing-table tbody td:last-child {
    text-align: center;
}

/* Zvýraznění featured řádků */
.pricing-table tbody tr.featured-row {
    background-color: #f0f8fa;
}

.pricing-table tbody tr.featured-row:hover {
    background-color: #e6f4f7;
}

.pricing-table tbody tr.best-value-row {
    background-color: #fff5f2;
    border-left: 4px solid var(--accent-color);
}

.pricing-table tbody tr.best-value-row:hover {
    background-color: #ffeee9;
}

/* Cenové buňky */
.price-cell {
    font-weight: 600;
}

.price-amount {
    font-size: 24px;
    color: var(--primary-color);
    font-weight: 700;
    display: block;
}

.price-unit {
    font-size: 13px;
    color: var(--text-light);
    font-weight: 400;
    display: block;
    margin-top: 2px;
}

.price-savings {
    font-size: 12px;
    color: #28a745;
    font-weight: 600;
    display: block;
    margin-top: 5px;
}

/* Badge inline */
.badge-inline {
    display: inline-block;
    background-color: var(--accent-color);
    color: var(--white);
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    margin-left: 10px;
    letter-spacing: 0.5px;
}

/* Tlačítka v tabulce */
.btn-small {
    padding: 8px 20px;
    font-size: 14px;
    white-space: nowrap;
}

/* Poznámky pod tabulkou */
.pricing-notes {
    background-color: #f9f9f9;
    padding: 20px 30px;
    border-radius: 8px;
    margin-bottom: 60px;
}

.pricing-notes p {
    margin: 8px 0;
    font-size: 14px;
    color: var(--text-dark);
    line-height: 1.6;
}

.pricing-notes strong {
    color: var(--primary-color);
}

/* Co je zahrnuto v ceně */
.pricing-included {
    margin-bottom: 60px;
}

.pricing-included h2 {
    text-align: center;
    color: var(--primary-color);
    font-size: 32px;
    margin-bottom: 40px;
}

.included-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.included-column h3 {
    font-size: 20px;
    margin-bottom: 20px;
    color: var(--primary-dark);
}

.included-column h3 i {
    margin-right: 10px;
    font-size: 22px;
}

.included-column h3 .fa-check-circle {
    color: #28a745;
}

.included-column h3 .fa-times-circle {
    color: #dc3545;
}

.included-list,
.not-included-list {
    list-style: none;
    padding: 0;
}

.included-list li,
.not-included-list li {
    padding: 12px 0;
    border-bottom: 1px solid #eee;
    font-size: 15px;
    line-height: 1.6;
}

.included-list li:last-child,
.not-included-list li:last-child {
    border-bottom: none;
}

.included-list li i {
    color: var(--accent-color);
    margin-right: 12px;
    font-size: 16px;
    width: 20px;
    display: inline-block;
}

.not-included-list li:before {
    content: "•";
    color: var(--text-light);
    margin-right: 12px;
    font-weight: bold;
}

/* CTA sekce */
.pricing-cta {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--white);
    text-align: center;
    padding: 60px 40px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(33, 117, 140, 0.3);
}

.pricing-cta h2 {
    color: var(--white);
    font-size: 32px;
    margin-bottom: 15px;
}

.pricing-cta p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
    .hero-section {
        height: 500px;
    }

    .hero-content h1 {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    /* Responzivní ceník */
    .pricing-section h1 {
        font-size: 32px;
    }

    .pricing-table {
        font-size: 13px;
    }

    .pricing-table thead th,
    .pricing-table tbody td {
        padding: 12px 8px;
    }

    .price-amount {
        font-size: 20px;
    }

    .btn-small {
        padding: 6px 12px;
        font-size: 12px;
    }

    .included-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .pricing-cta h2 {
        font-size: 24px;
    }

    .pricing-cta p {
        font-size: 16px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .cta-buttons .btn {
        width: 100%;
    }
}

/* Extra malé obrazovky - stacking tabulky */
@media (max-width: 600px) {
    .pricing-table thead {
        display: none;
    }

    .pricing-table tbody tr {
        display: block;
        margin-bottom: 20px;
        border: 1px solid #e8e8e8;
        border-radius: 8px;
        padding: 15px;
    }

    .pricing-table tbody td {
        display: block;
        text-align: left !important;
        padding: 8px 0;
        border: none;
    }

    .pricing-table tbody td:before {
        content: attr(data-label);
        font-weight: 600;
        display: block;
        margin-bottom: 5px;
        color: var(--primary-color);
        font-size: 12px;
        text-transform: uppercase;
    }

    .pricing-table tbody td:last-child {
        text-align: left !important;
        margin-top: 15px;
    }

    .btn-small {
        width: 100%;
        display: block;
    }
}

/* ===== Gallery Section ===== */
.gallery-section {
    background-color: var(--bg-light);
}

.gallery-section h1 {
    text-align: center;
    font-size: 42px;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    margin: 40px 0;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    cursor: pointer;
    aspect-ratio: 4/3;
    background: var(--white);
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: all 0.3s;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

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

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(33, 117, 140, 0.85);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
    color: var(--white);
}

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

.gallery-overlay i {
    font-size: 48px;
    margin-bottom: 15px;
}

.gallery-title {
    font-size: 18px;
    font-weight: 600;
    text-align: center;
    padding: 0 20px;
}

/* CTA Section v galerii */
.gallery-section .cta-section {
    text-align: center;
    padding: 60px 20px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    border-radius: 12px;
    color: var(--white);
    margin-top: 60px;
}

.gallery-section .cta-section h2 {
    color: var(--white);
    font-size: 32px;
    margin-bottom: 20px;
}

/* ===== Lightbox ===== */
.lightbox {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    align-items: center;
    justify-content: center;
}

.lightbox-content {
    max-width: 90%;
    max-height: 85vh;
    object-fit: contain;
    animation: zoomIn 0.3s;
}

@keyframes zoomIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 40px;
    color: var(--white);
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s;
    z-index: 10001;
}

.lightbox-close:hover {
    color: var(--accent-color);
}

.lightbox-caption {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--white);
    font-size: 18px;
    text-align: center;
    max-width: 80%;
    padding: 15px 30px;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 25px;
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
    font-size: 30px;
    border: none;
    cursor: pointer;
    padding: 20px;
    border-radius: 4px;
    transition: all 0.3s;
    z-index: 10001;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: var(--accent-color);
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

/* Responzivní galerie */
@media (max-width: 768px) {
    .gallery-section h1 {
        font-size: 32px;
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 15px;
    }

    .lightbox-close {
        top: 10px;
        right: 15px;
        font-size: 30px;
    }

    .lightbox-prev,
    .lightbox-next {
        font-size: 24px;
        padding: 15px;
    }

    .lightbox-prev {
        left: 10px;
    }

    .lightbox-next {
        right: 10px;
    }

    .lightbox-caption {
        font-size: 14px;
        bottom: 15px;
        padding: 10px 20px;
    }
}

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

/* ============================================
   CENÍK - ŠIROKÉ MODRÉ NADPISY + PŘÍKLADY
   ============================================ */

/* Sekce ceníku s širokými nadpisy */
.pricing-section-block {
    margin-bottom: 60px;
}

/* Provozní doba - boxy */
.operating-hours {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-bottom: 50px;
}

.hours-box {
    background: #f8f9fa;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
}

.hours-box:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.hours-box.highlight {
    background: linear-gradient(135deg, #f0f9ff, #e0f2fe);
    border-color: var(--primary-color);
}

.hours-box i {
    font-size: 32px;
    color: var(--primary-color);
    flex-shrink: 0;
}

.hours-box.highlight i {
    color: var(--accent-color);
}

.hours-info {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.hours-label {
    font-size: 13px;
    color: #666;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hours-value {
    font-size: 24px;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1.2;
}

.hours-note {
    font-size: 12px;
    color: #10b981;
    font-weight: 700;
    text-transform: uppercase;
}

/* Široký modrý (tyrkysový) nadpis sekce */
.section-title {
    background: linear-gradient(135deg, var(--primary-color), #2a8ba8);
    color: var(--white);
    padding: 20px 30px;
    margin: 0 0 5px 0;
    font-size: 28px;
    font-weight: 700;
    border-radius: 8px 8px 0 0;
}

.section-subtitle {
    padding: 0;
    margin: 0 0 30px 0;
    font-size: 15px;
    color: #6c757d;
    font-weight: 400;
}

.pricing-section-block.warning .section-title {
    background: linear-gradient(135deg, var(--accent-color), #ff8b6d);
}

.pricing-section-block.included .section-title {
    background: linear-gradient(135deg, #10b981, #059669);
}

/* Grid pro tarifní karty */
.tariff-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 20px;
}

/* Grid pro další tarify (hodinová sazba + coworking) */
.additional-tariffs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

/* Jedna karta vycentrovaná */
.single-tariff {
    max-width: 600px;
    margin: 0 auto;
}

/* Základní tarifní karta */
.tariff-card {
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    position: relative;
}

.tariff-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

/* Zvýrazněná karta (celodenní) */
.tariff-card.featured {
    border: 3px solid var(--accent-color);
}

/* Badge "Nejvýhodnější" */
.best-badge {
    position: absolute;
    top: 15px;
    right: -5px;
    background: var(--accent-color);
    color: var(--white);
    padding: 6px 15px;
    font-size: 12px;
    font-weight: 700;
    border-radius: 15px 0 0 15px;
    box-shadow: 0 2px 8px rgba(242, 121, 90, 0.3);
    z-index: 10;
}

/* Header tariff */
.tariff-header {
    padding: 25px 20px 15px 20px;
    text-align: center;
    background: linear-gradient(135deg, #f8f9fa, #ffffff);
}

.tariff-icon {
    width: 65px;
    height: 65px;
    margin: 0 auto 12px auto;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: var(--white);
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.15);
}

.tariff-icon.morning {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
}

.tariff-icon.afternoon {
    background: linear-gradient(135deg, #60a5fa, #3b82f6);
}

.tariff-icon.fullday {
    background: linear-gradient(135deg, var(--primary-color), #2a8ba8);
}

.tariff-icon.hourly {
    background: linear-gradient(135deg, #a78bfa, #8b5cf6);
}

.tariff-icon.coworking {
    background: linear-gradient(135deg, #34d399, #10b981);
}

.tariff-header h3 {
    font-size: 20px;
    color: #333;
    margin: 0 0 8px 0;
    font-weight: 700;
}

.tariff-subtitle {
    font-size: 13px;
    color: #666;
    font-weight: 500;
    margin-top: 5px;
}

.tariff-time {
    font-size: 14px;
    color: #666;
    font-weight: 600;
}

/* Cena v kartě */
.tariff-price {
    text-align: center;
    padding: 20px;
    background: linear-gradient(135deg, #f0f9ff, #ffffff);
    border-top: 1px solid #e5e7eb;
    border-bottom: 1px solid #e5e7eb;
}

.tariff-price .price {
    font-size: 42px;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
}

.tariff-price .currency {
    font-size: 18px;
    color: #666;
    margin-left: 5px;
    font-weight: 600;
}

/* Detaily tariff */
.tariff-details {
    padding: 20px;
    flex-grow: 1;
}

.detail-row {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 10px 0;
    font-size: 14px;
    color: #555;
    line-height: 1.5;
}

.detail-row i {
    color: var(--primary-color);
    font-size: 16px;
    margin-top: 2px;
    flex-shrink: 0;
}

.detail-row.bonus {
    background: #fff5f2;
    padding: 10px;
    border-radius: 6px;
    margin-bottom: 5px;
    border-left: 3px solid var(--accent-color);
}

.detail-row.bonus i {
    color: var(--accent-color);
}

.detail-row.savings {
    background: #f0fdf4;
    padding: 10px;
    border-radius: 6px;
    border-left: 3px solid #10b981;
    font-weight: 600;
}

.detail-row.savings i {
    color: #10b981;
}

.detail-row.warning {
    background: #fffbeb;
    padding: 10px;
    border-radius: 6px;
    border-left: 3px solid #f59e0b;
    font-weight: 600;
    margin-top: 10px;
}

.detail-row.warning i {
    color: #f59e0b;
}

/* Footer tariff karty */
.tariff-footer {
    padding: 0 20px 20px 20px;
}

.tariff-footer .btn {
    width: 100%;
    padding: 14px 20px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-align: center;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-decoration: none;
}

.tariff-footer .btn-primary {
    background: var(--accent-color);
    color: var(--white);
}

.tariff-footer .btn-primary:hover {
    background: var(--accent-light);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(242, 121, 90, 0.4);
}

.tariff-footer .btn-secondary {
    background: var(--text-light);
    color: var(--white);
}

.tariff-footer .btn-secondary:hover {
    background: var(--text-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 102, 102, 0.3);
}

/* Jednoduchý nadpis sekce (méně výrazný) */
.section-title-simple {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0 0 20px 0;
    padding-bottom: 10px;
    border-bottom: 2px solid #e5e7eb;
}

/* Jednoduché vysvětlení pro sekci "Hodiny navíc" */
.simple-explanation {
    margin-bottom: 30px;
}

.simple-explanation > p {
    font-size: 16px;
    color: #333;
    margin-bottom: 20px;
    line-height: 1.6;
}

.extra-hours-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 15px;
}

.info-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 3px solid var(--primary-color);
}

.info-item i {
    color: var(--primary-color);
    font-size: 20px;
    margin-top: 2px;
    flex-shrink: 0;
}

.info-item strong {
    color: #333;
    font-size: 15px;
}

.info-item .muted {
    font-size: 13px;
    color: #666;
    font-style: italic;
    display: block;
    margin-top: 5px;
    line-height: 1.4;
}

/* Grid pro malé příklady */
.small-examples-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 15px;
    margin-top: 20px;
}

/* Malé boxíky s příklady */
.example-box-small {
    background: var(--white);
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    padding: 15px;
    transition: all 0.3s;
}

.example-box-small:hover {
    border-color: var(--primary-color);
    box-shadow: 0 4px 12px rgba(33, 117, 140, 0.15);
    transform: translateY(-2px);
}

.example-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.example-time {
    font-size: 13px;
    color: #666;
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 1px solid #f0f0f0;
}

.example-calc {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 12px;
}

.example-calc .calc-label {
    font-size: 11px;
    color: #888;
    margin-left: 5px;
}

.example-total {
    font-size: 20px;
    font-weight: 800;
    color: var(--accent-color);
    text-align: center;
    padding: 10px;
    background: #fff5f2;
    border-radius: 6px;
}

/* Staré styly pro ostatní sekce (flexibilní sazba, mimořádné hodiny) */
.info-panel {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.info-panel.warning {
    background: #fff5f2;
    border: 2px solid #ffdfd6;
}

.info-text {
    font-size: 16px;
    color: #333;
    margin-bottom: 20px;
    line-height: 1.6;
}

/* Boxy s příklady pro ostatní sekce */
.examples-box {
    background: var(--white);
    padding: 20px;
    border-radius: 8px;
    margin-top: 20px;
    border: 2px solid var(--primary-color);
}

.examples-box h4 {
    color: var(--primary-color);
    margin: 0 0 15px 0;
    font-size: 17px;
    display: flex;
    align-items: center;
    gap: 8px;
}

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

.examples-list li {
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
    line-height: 1.6;
}

.examples-list li:last-child {
    border-bottom: none;
}

.calc-line {
    display: block;
    margin-top: 5px;
    font-size: 15px;
    color: #555;
}

.calc-line .total {
    color: var(--accent-color);
    font-size: 18px;
    font-weight: 800;
}

.examples-box .note {
    font-size: 12px;
    color: #888;
    font-style: italic;
    display: block;
    margin-top: 3px;
}

.examples-box.compact {
    border: none;
    background: #f8f9fa;
    padding: 15px;
}

.examples-box.compact h4 {
    font-size: 15px;
    margin-bottom: 10px;
}

.examples-box.compact ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.examples-box.compact li {
    padding: 6px 0;
    font-size: 14px;
    border-bottom: 1px solid #e5e7eb;
}

/* Příplatek za hodiny mimo standardní dobu - Zvýrazněný badge +50% */
.overtime-badge {
    display: inline-block;
    background: linear-gradient(135deg, #f2795a, #ff8b6d);
    color: var(--white);
    padding: 4px 14px;
    border-radius: 20px;
    font-size: 20px;
    font-weight: 800;
    margin: 0 5px;
    box-shadow: 0 2px 8px rgba(242, 121, 90, 0.3);
    vertical-align: middle;
}

/* Příplatek za hodiny mimo standardní dobu - Seznam sazeb */
.overtime-rates-list {
    background: var(--white);
    border-radius: 8px;
    padding: 20px;
    margin: 20px 0;
    border: 2px solid #e5e7eb;
}

.rate-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 15px 0;
    border-bottom: 1px solid #f0f0f0;
}

.rate-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.rate-item i {
    color: var(--primary-color);
    font-size: 20px;
    margin-top: 2px;
    flex-shrink: 0;
}

.rate-item strong {
    color: #333;
    font-size: 15px;
}

.rate-item .highlight-price {
    color: var(--accent-color);
    font-size: 18px;
}

.rate-item .muted {
    font-size: 13px;
    color: #666;
    font-style: italic;
}

/* Příplatek za hodiny mimo standardní dobu - Grid s časy */
.overtime-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 20px;
}

.overtime-box {
    background: var(--white);
    padding: 20px;
    border-radius: 8px;
    border: 2px solid #e5e7eb;
    display: flex;
    align-items: center;
    gap: 15px;
}

.overtime-icon {
    font-size: 32px;
    flex-shrink: 0;
}

.overtime-info {
    flex-grow: 1;
}

.overtime-label {
    font-size: 16px;
    font-weight: 700;
    color: #333;
    margin-bottom: 5px;
}

.overtime-time {
    font-size: 14px;
    color: #666;
    margin-bottom: 8px;
}

.overtime-price {
    font-size: 20px;
    font-weight: 800;
    color: var(--accent-color);
}

/* Warning note (oranžová) */
.warning-note {
    background: #fff;
    border-left: 4px solid var(--accent-color);
    padding: 15px;
    border-radius: 6px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 14px;
    line-height: 1.6;
}

.warning-note i {
    color: var(--accent-color);
    font-size: 18px;
    margin-top: 2px;
    flex-shrink: 0;
}

/* Info note (modrá) */
.info-note {
    background: #f0f9ff;
    border-left: 4px solid var(--primary-color);
    padding: 15px;
    border-radius: 6px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 14px;
    line-height: 1.6;
    margin-top: 20px;
}

.info-note i {
    color: var(--primary-color);
    font-size: 18px;
    margin-top: 2px;
    flex-shrink: 0;
}

/* === Co je zahrnuto v ceně - NOVÝ IKONKOVÝ DESIGN === */

/* Mřížka s ikonkami */
.inclusions-icons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.inclusion-icon-item {
    text-align: center;
    padding: 20px 10px;
    transition: all 0.3s ease;
}

.inclusion-icon-item:hover {
    transform: translateY(-5px);
}

.icon-circle {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), #2a8ba8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    box-shadow: 0 4px 12px rgba(33, 117, 140, 0.2);
    transition: all 0.3s ease;
}

.inclusion-icon-item:hover .icon-circle {
    box-shadow: 0 6px 20px rgba(33, 117, 140, 0.35);
    transform: scale(1.05);
}

.icon-circle i {
    font-size: 32px;
    color: var(--white);
}

.icon-title {
    font-weight: 600;
    font-size: 15px;
    color: #333;
    margin-bottom: 8px;
    line-height: 1.3;
}

.icon-description {
    font-size: 13px;
    color: #666;
    line-height: 1.4;
}

/* Sekce "Není zahrnuto" */
.not-included-section {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 30px 40px;
    margin-top: 20px;
}

.not-included-title {
    font-size: 20px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #333;
}

.not-included-title i {
    color: #666;
    font-size: 22px;
}

.not-included-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 12px;
}

.not-included-list li {
    padding-left: 20px;
    position: relative;
    font-size: 15px;
    line-height: 1.6;
    color: #555;
}

.not-included-list li::before {
    content: "•";
    position: absolute;
    left: 5px;
    color: #888;
    font-size: 18px;
}

/* Responzivita */
@media (max-width: 768px) {
    .inclusions-icons-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 20px;
    }

    .icon-circle {
        width: 70px;
        height: 70px;
    }

    .icon-circle i {
        font-size: 28px;
    }

    .icon-title {
        font-size: 14px;
    }

    .icon-description {
        font-size: 12px;
    }

    .not-included-section {
        padding: 20px;
    }

    .not-included-list {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   VEŘEJNÉ AKCE - INFO BOX
   ======================================== */

.public-events-info {
    display: flex;
    gap: 30px;
    align-items: flex-start;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    padding: 40px;
    border-radius: 12px;
    border-left: 5px solid var(--accent-color);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.info-box-icon {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--accent-color), #ff8b6d);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 36px;
    box-shadow: 0 4px 15px rgba(242, 121, 90, 0.3);
}

.info-box-content {
    flex: 1;
}

.info-box-content .section-title {
    color: var(--primary-dark);
    margin-bottom: 15px;
    background: none;
    padding: 0;
}

.info-box-content p {
    color: #334155;
    line-height: 1.7;
    font-size: 15px;
}

.info-box-content strong {
    color: var(--accent-color);
    font-weight: 600;
}

/* Responzivní design pro info box */
@media (max-width: 768px) {
    .public-events-info {
        flex-direction: column;
        padding: 30px 20px;
        gap: 20px;
    }

    .info-box-icon {
        width: 60px;
        height: 60px;
        font-size: 28px;
        margin: 0 auto;
    }

    .info-box-content {
        text-align: center;
    }

    .info-box-content p {
        font-size: 14px;
    }
}

/* CTA sekce */
.pricing-cta {
    text-align: center;
    background: linear-gradient(135deg, var(--primary-color), #2a8ba8);
    color: var(--white);
    padding: 50px 40px;
    border-radius: 12px;
    margin-top: 40px;
}

.pricing-cta h2 {
    color: var(--white);
    font-size: 30px;
    margin-bottom: 15px;
}

.pricing-cta p {
    font-size: 17px;
    margin-bottom: 30px;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

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

.btn-accent:hover {
    background: #ff8b6d;
}

.btn-large {
    padding: 15px 40px;
    font-size: 17px;
    font-weight: 700;
}

/* Speciální styl pro sekundární tlačítko v CTA sekci (bílé na modrém pozadí) */
.pricing-cta .btn-secondary {
    background-color: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.pricing-cta .btn-secondary:hover {
    background-color: var(--white);
    color: var(--primary-color);
}

/* Responzivní design */
@media (max-width: 1023px) {
    .operating-hours {
        grid-template-columns: 1fr;
    }

    .hours-value {
        font-size: 22px;
    }

    .section-title {
        font-size: 24px;
        padding: 18px 25px;
    }

    .tariff-cards {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }

    .tariff-price .price {
        font-size: 38px;
    }
}

@media (max-width: 768px) {
    .hours-box {
        padding: 15px;
    }

    .hours-box i {
        font-size: 28px;
    }

    .hours-value {
        font-size: 20px;
    }

    .section-title {
        font-size: 22px;
        padding: 15px 20px;
    }

    .section-subtitle {
        padding: 10px 20px;
        font-size: 14px;
    }

    .tariff-cards,
    .additional-tariffs-grid,
    .overtime-grid,
    .included-columns,
    .extra-hours-info,
    .small-examples-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .tariff-icon {
        width: 55px;
        height: 55px;
        font-size: 26px;
    }

    .tariff-header h3 {
        font-size: 18px;
    }

    .tariff-price .price {
        font-size: 34px;
    }

    .info-panel {
        padding: 20px;
    }

    .pricing-cta {
        padding: 40px 25px;
    }

    .pricing-cta h2 {
        font-size: 26px;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .btn-large {
        padding: 14px 30px;
        font-size: 16px;
    }

    .overtime-badge {
        font-size: 18px;
        padding: 3px 12px;
    }
}

@media (max-width: 480px) {
    .hours-box i {
        font-size: 24px;
    }

    .hours-label {
        font-size: 11px;
    }

    .hours-value {
        font-size: 18px;
    }

    .section-title {
        font-size: 20px;
        padding: 12px 15px;
    }

    .tariff-icon {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }

    .tariff-header h3 {
        font-size: 17px;
    }

    .tariff-price .price {
        font-size: 30px;
    }

    .detail-row {
        font-size: 13px;
    }

    .rate-value {
        font-size: 22px;
    }

    .overtime-price {
        font-size: 18px;
    }

    .pricing-cta h2 {
        font-size: 24px;
    }

    .overtime-badge {
        font-size: 16px;
        padding: 3px 10px;
        margin: 0 3px;
    }
}

/* ========================================
   EXTRA HOURS INFO - Informace o extra hodinách v kartách tarifů
   ======================================== */

.extra-hours-info {
    margin-top: 0;
    padding: 20px 20px 0 20px;
    border-top: 1px solid #e9ecef;
}

.extra-hours-title {
    font-size: 13px;
    font-weight: 600;
    color: #6c757d;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.extra-hours-title i {
    color: #21758c;
    font-size: 13px;
}

.extra-hours-rates {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.rate-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0;
}

.rate-label {
    font-size: 14px;
    color: #6c757d;
    font-weight: 400;
}

.rate-item.overtime .rate-label {
    color: #495057;
    font-weight: 500;
}

.rate-value {
    font-size: 18px;
    font-weight: 700;
    color: #0d3d4d;
}

.rate-item.overtime .rate-value {
    color: #f2795a;
}

.rate-note {
    margin-top: 10px;
    padding: 0;
    font-size: 12px;
    color: #6c757d;
    display: flex;
    align-items: flex-start;
    gap: 6px;
    line-height: 1.5;
}

.rate-note i {
    margin-top: 2px;
    flex-shrink: 0;
    color: #adb5bd;
    font-size: 12px;
}

/* ========================================
   OVERTIME EXPLANATION - Vysvětlení mimořádných hodin
   ======================================== */

.overtime-explanation-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 30px 0;
}

.overtime-time-box {
    text-align: center;
    padding: 25px 20px;
    background: white;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.overtime-time-box:hover {
    border-color: #f2795a;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.overtime-time-box.standard {
    border-color: #21758c;
    background: #f8fdff;
}

.overtime-time-box.standard:hover {
    border-color: #0d3d4d;
    box-shadow: 0 4px 12px rgba(33, 117, 140, 0.15);
}

.time-label {
    font-size: 12px;
    font-weight: 600;
    color: #adb5bd;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.time-range {
    font-size: 26px;
    font-weight: 800;
    color: #f2795a;
    margin: 8px 0;
}

.overtime-time-box.standard .time-range {
    color: #21758c;
    font-size: 28px;
}

.time-note {
    font-size: 11px;
    color: #adb5bd;
    margin-top: 6px;
    font-weight: 500;
}

.info-note {
    background: #f8f9fa;
    border-left: 3px solid #21758c;
    padding: 15px 18px;
    margin-top: 20px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13px;
    color: #495057;
    line-height: 1.6;
}

.info-note i {
    color: #21758c;
    font-size: 16px;
    margin-top: 2px;
    flex-shrink: 0;
}

/* ========================================
   RESPONSIVE - Extra hours info
   ======================================== */

@media (max-width: 768px) {
    .extra-hours-info {
        padding-top: 15px;
        margin-top: 20px;
    }

    .extra-hours-title {
        font-size: 12px;
    }

    .rate-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }

    .rate-label {
        font-size: 13px;
    }

    .rate-value {
        font-size: 16px;
    }

    .overtime-explanation-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin: 20px 0;
    }

    .time-range {
        font-size: 22px;
    }

    .overtime-time-box.standard .time-range {
        font-size: 24px;
    }

    .info-note {
        font-size: 12px;
        padding: 12px 15px;
    }
}

/* ===== AUTH MODÁLNÍ OKNA (PŘIHLÁŠENÍ / REGISTRACE) ===== */
.auth-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 9999999; /* Vyšší než booking modal (999999), aby se zobrazil nad ním */
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.auth-modal.active {
    display: flex;
    opacity: 1;
}

.auth-modal-content {
    background: var(--white);
    border-radius: 12px;
    width: 90%;
    max-width: 500px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
    animation: modalSlideIn 0.3s ease;
}

.auth-modal-large {
    max-width: 700px;
}

@keyframes modalSlideIn {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.auth-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 30px;
    border-bottom: 1px solid #e5e5e5;
}

.auth-modal-header h2 {
    margin: 0;
    font-size: 24px;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    gap: 12px;
}

.auth-modal-header h2 i {
    font-size: 22px;
}

.auth-modal-close {
    background: none;
    border: none;
    font-size: 32px;
    color: var(--text-light);
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.auth-modal-close:hover {
    background-color: #f0f0f0;
    color: var(--text-dark);
}

.auth-modal-body {
    padding: 30px;
}

.auth-modal-subtitle {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 25px;
    font-size: 15px;
}

/* Auth formulář */
.auth-form {
    margin-bottom: 25px;
}

.auth-form .form-group {
    margin-bottom: 20px;
}

.auth-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--text-dark);
    font-size: 14px;
}

.auth-form label i {
    color: var(--primary-color);
    margin-right: 6px;
    width: 16px;
}

.auth-form .form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-size: 15px;
    transition: all 0.3s ease;
}

.auth-form .form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(33, 117, 140, 0.1);
}

.auth-form small {
    display: block;
    margin-top: 5px;
    font-size: 12px;
    color: var(--text-light);
}

.auth-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.auth-form .checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    cursor: pointer;
}

.auth-form .checkbox-label input[type="checkbox"] {
    margin-top: 3px;
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.auth-form .checkbox-label a {
    color: var(--primary-color);
    text-decoration: none;
}

.auth-form .checkbox-label a:hover {
    text-decoration: underline;
}

.auth-form .form-actions {
    margin-top: 25px;
}

.auth-modal-footer {
    text-align: center;
    margin-top: 15px;
}

.auth-modal-footer a {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 14px;
}

.auth-modal-footer a:hover {
    text-decoration: underline;
}

/* Divider mezi formulářem a alternativami */
.auth-divider {
    text-align: center;
    margin: 25px 0;
    position: relative;
}

.auth-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background-color: #e5e5e5;
}

.auth-divider span {
    background: var(--white);
    padding: 0 15px;
    position: relative;
    color: var(--text-light);
    font-size: 14px;
}

.guest-booking-link {
    text-align: center;
    margin-top: 20px;
    font-size: 14px;
    color: var(--text-light);
}

.guest-booking-link a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}

.guest-booking-link a:hover {
    text-decoration: underline;
}

/* Responzivita pro modály */
@media (max-width: 768px) {
    .auth-modal-content {
        width: 95%;
        max-height: 95vh;
    }

    .auth-modal-header {
        padding: 20px;
    }

    .auth-modal-header h2 {
        font-size: 20px;
    }

    .auth-modal-body {
        padding: 20px;
    }

    .auth-form .form-row {
        grid-template-columns: 1fr;
    }
}

/* ================================================================
   REZERVAČNÍ STRÁNKA (booking.php)
   ================================================================ */

/* Booking container - stejný styl jako ostatní stránky */
.booking-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    background: transparent;
}

/* Banner pro nepřihlášené uživatele */
.guest-notice {
    background: linear-gradient(135deg, #d1ecf1 0%, #bee5eb 100%);
    border-left: 4px solid #0c5460;
    padding: 20px 25px;
    border-radius: 8px;
    margin-bottom: 25px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.guest-notice-content {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.guest-notice i {
    color: #0c5460;
    font-size: 24px;
}

.guest-notice span {
    flex: 1;
    color: #0c5460;
    font-size: 16px;
    font-weight: 500;
}

.guest-notice a {
    color: #21758c;
    font-weight: 600;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.guest-notice a:hover {
    color: #0d3d4d;
}

.btn-continue-guest {
    background: #f2795a;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-continue-guest:hover {
    background: #ff8b6d;
    transform: translateY(-2px);
}

.btn-close-notice {
    background: transparent;
    border: none;
    color: #0c5460;
    font-size: 20px;
    cursor: pointer;
    padding: 5px 10px;
    transition: color 0.3s ease;
}

.btn-close-notice:hover {
    color: #21758c;
}

.guest-notice.hidden {
    display: none;
}

.booking-header {
    background: linear-gradient(135deg, #21758c 0%, #0d3d4d 100%);
    color: white;
    padding: 40px;
    border-radius: 12px;
    margin-bottom: 40px;
    box-shadow: 0 4px 20px rgba(33, 117, 140, 0.3);
    text-align: center;
}

.booking-header h1 {
    margin: 0 0 10px 0;
    font-size: 32px;
    font-weight: 700;
}

.booking-header p {
    margin: 0;
    font-size: 16px;
    opacity: 0.9;
}

/* Progress steps */
.booking-progress {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    margin-bottom: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    position: relative;
}

.booking-progress::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 15%;
    right: 15%;
    height: 2px;
    background: #e5e5e5;
    z-index: 0;
}

.progress-step {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    position: relative;
    z-index: 1;
}

.step-number {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: white;
    border: 3px solid #e5e5e5;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 20px;
    color: #999;
    transition: all 0.3s ease;
}

.progress-step.active .step-number {
    background: linear-gradient(135deg, #21758c 0%, #0d3d4d 100%);
    border-color: #21758c;
    color: white;
    box-shadow: 0 4px 15px rgba(33, 117, 140, 0.3);
}

.progress-step.completed .step-number {
    background: #d4edda;
    border-color: #28a745;
    color: #28a745;
}

.step-label {
    font-size: 14px;
    font-weight: 600;
    color: #999;
    text-align: center;
}

.progress-step.active .step-label {
    color: #0d3d4d;
}

/* Booking step container */
.booking-step {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.booking-step h2 {
    color: #0d3d4d;
    margin: 0 0 30px 0;
    font-size: 28px;
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Grid layout */
.booking-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.calendar-container,
.time-selection {
    background: #f9f9f9;
    padding: 25px;
    border-radius: 10px;
    border: 2px solid #e5e5e5;
}

.time-selection h3 {
    color: #0d3d4d;
    margin: 0 0 15px 0;
    font-size: 20px;
}

#selectedDateDisplay {
    background: #21758c;
    color: white;
    padding: 12px 20px;
    border-radius: 6px;
    text-align: center;
    font-weight: 600;
    margin-bottom: 20px;
}

/* Calendar legend */
.calendar-legend {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 2px solid #e5e5e5;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #666;
}

.legend-color {
    width: 16px;
    height: 16px;
    border-radius: 3px;
}

.legend-color.available {
    background: #d4edda;
}

.legend-color.pending {
    background: #fff3cd;
}

.legend-color.booked {
    background: #f8d7da;
}

.legend-color.blocked {
    background: #e2e3e5;
}

/* Time slots */
.time-slots {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-bottom: 20px;
}

.time-slot {
    padding: 12px;
    border: 2px solid #e5e5e5;
    border-radius: 6px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    background: white;
    font-weight: 600;
}

.time-slot:hover {
    border-color: #21758c;
    transform: translateY(-2px);
}

.time-slot.selected {
    background: #21758c;
    color: white;
    border-color: #21758c;
}

.time-slot.unavailable {
    background: #f5f5f5;
    color: #999;
    cursor: not-allowed;
    opacity: 0.5;
}

/* Tariff options */
.tariff-options {
    display: grid;
    gap: 10px;
    margin: 15px 0;
}

.tariff-option {
    display: flex;
    align-items: center;
    padding: 15px;
    border: 2px solid #e5e5e5;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: white;
}

.tariff-option:hover {
    border-color: #21758c;
}

.tariff-option input[type="radio"] {
    margin-right: 12px;
}

.tariff-option input[type="radio"]:checked + span {
    font-weight: 700;
    color: #21758c;
}

/* Price preview */
.price-preview {
    background: linear-gradient(135deg, #21758c 0%, #0d3d4d 100%);
    color: white;
    padding: 25px;
    border-radius: 10px;
    text-align: center;
    margin: 25px 0;
}

.price-preview h3 {
    margin: 0 0 10px 0;
    font-size: 16px;
    opacity: 0.9;
}

.price-amount {
    font-size: 36px;
    font-weight: 700;
    margin: 0;
}

/* Form styles */
.form-notice {
    background: #d1ecf1;
    border-left: 4px solid #0c5460;
    padding: 15px 20px;
    border-radius: 6px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.form-notice i {
    color: #0c5460;
    font-size: 20px;
}

.form-notice a {
    color: #0c5460;
    font-weight: 600;
    text-decoration: underline;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-row-3cols {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #0d3d4d;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group textarea,
.form-group input[type="date"],
.form-group select {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e5e5e5;
    border-radius: 6px;
    font-size: 15px;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #21758c;
    box-shadow: 0 0 0 3px rgba(33, 117, 140, 0.1);
}

.form-group input:disabled {
    background: #f5f5f5;
    color: #666;
    cursor: not-allowed;
}

.form-control {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e5e5e5;
    border-radius: 6px;
    font-size: 15px;
    transition: all 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: #21758c;
    box-shadow: 0 0 0 3px rgba(33, 117, 140, 0.1);
}

/* Booking summary */
.booking-summary {
    background: #f9f9f9;
    border: 2px solid #21758c;
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 25px;
}

.booking-summary h3 {
    color: #0d3d4d;
    margin: 0 0 15px 0;
    font-size: 20px;
}

.summary-content {
    display: grid;
    gap: 10px;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid #e5e5e5;
}

.summary-item:last-child {
    border-bottom: none;
}

.summary-label {
    color: #666;
    font-weight: 600;
    font-size: 14px;
}

.summary-value {
    color: #0d3d4d;
    font-weight: 700;
    font-size: 14px;
}

.summary-total {
    background: linear-gradient(135deg, #21758c 0%, #0d3d4d 100%);
    color: white;
    padding: 20px;
    border-radius: 8px;
    margin-top: 15px;
}

.summary-total .summary-item {
    border-bottom: none;
}

.summary-total .summary-label,
.summary-total .summary-value {
    color: white;
    font-size: 16px;
}

/* Checkbox */
.checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-size: 15px;
}

.checkbox-label input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.checkbox-label a {
    color: #21758c;
    text-decoration: underline;
}

/* Form actions */
.form-actions {
    display: flex;
    gap: 15px;
    justify-content: flex-end;
    margin-top: 30px;
    padding-top: 30px;
    border-top: 2px solid #e5e5e5;
}

.btn {
    padding: 14px 32px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 2px solid;
}

.btn-primary {
    background: #f2795a;
    color: white;
    border-color: #f2795a;
}

.btn-primary:hover:not(:disabled) {
    background: #ff8b6d;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(242, 121, 90, 0.4);
}

.btn-primary:disabled {
    background: #cccccc;
    border-color: #cccccc;
    cursor: not-allowed;
    opacity: 0.6;
}

.btn-secondary {
    background: white;
    color: #666;
    border-color: #e5e5e5;
}

.btn-secondary:hover {
    border-color: #21758c;
    color: #21758c;
}

.btn-large {
    padding: 16px 40px;
    font-size: 18px;
}

/* Jednoduchý rezervační formulář */
.simple-booking-form {
    max-width: 900px;
    margin: 0 auto;
}

.form-section {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    margin-bottom: 25px;
}

.form-section h3 {
    color: #0d3d4d;
    margin: 0 0 20px 0;
    font-size: 20px;
    font-weight: 600;
}

/* Tariff buttons */
.tariff-buttons {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.tariff-buttons-4 {
    grid-template-columns: repeat(4, 1fr);
}

.tariff-btn {
    background: white;
    border: 2px solid #e5e5e5;
    border-radius: 12px;
    padding: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    position: relative;
}

.tariff-btn:hover {
    border-color: #21758c;
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(33, 117, 140, 0.2);
}

.tariff-btn.active {
    background: linear-gradient(135deg, #21758c 0%, #0d3d4d 100%);
    border-color: #21758c;
    color: white;
}

.tariff-btn i {
    font-size: 32px;
    color: #21758c;
}

.tariff-btn.active i {
    color: white;
}

.tariff-name {
    font-size: 18px;
    font-weight: 700;
}

.tariff-time {
    font-size: 14px;
    opacity: 0.8;
}

.tariff-price {
    font-size: 24px;
    font-weight: 700;
    color: #f2795a;
}

.tariff-btn.active .tariff-price {
    color: #f2795a;
}

.tariff-badge {
    position: absolute;
    top: -10px;
    right: -10px;
    background: #f2795a;
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    box-shadow: 0 2px 8px rgba(242, 121, 90, 0.4);
}

/* Detekovaný tarif */
.detected-tariff {
    background: #d1ecf1;
    border-left: 4px solid #0c5460;
    padding: 15px 20px;
    border-radius: 6px;
    margin-top: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: #0c5460;
}

.detected-tariff i {
    font-size: 20px;
}

/* Price preview box - 2 sloupce (cena vlevo, rozpis vpravo) */
.price-preview-box {
    background: linear-gradient(135deg, #21758c 0%, #0d3d4d 100%);
    color: white;
    padding: 25px;
    border-radius: 12px;
    margin-bottom: 25px;
    box-shadow: 0 4px 20px rgba(33, 117, 140, 0.3);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: center;
}

.price-preview-left {
    text-align: left;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
    padding-right: 30px;
}

.price-preview-header {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    opacity: 0.9;
    margin-bottom: 10px;
}

.price-preview-amount {
    font-size: 42px;
    font-weight: 700;
    margin: 0;
}

.price-preview-amount .loading {
    font-size: 18px;
    opacity: 0.7;
    font-weight: 400;
}

.price-preview-breakdown {
    font-size: 14px;
    text-align: left;
}

.price-breakdown-item {
    display: flex;
    justify-content: space-between;
    padding: 6px 0;
}

.price-breakdown-item:first-child {
    font-weight: 600;
    margin-bottom: 5px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding-bottom: 8px;
}

/* Responzivita pro booking */
@media (max-width: 768px) {
    /* Odstranit všechny paddingy pro maximální šířku kalendáře */
    .booking-container {
        padding: 0 !important;
        background: white; /* Bílé pozadí místo šedého */
    }

    .booking-step {
        padding: 15px 0 !important;
        margin: 0 !important;
        border-radius: 0 !important;
        box-shadow: none !important;
    }

    .booking-step h2 {
        font-size: 20px;
        margin: 0 0 15px 0;
        padding: 0 15px; /* Jen nadpis má padding */
    }

    .form-section.calendar-section {
        padding: 0 !important;
        margin: 0 !important;
        border-radius: 0 !important;
        box-shadow: none !important;
        background: transparent !important;
    }

    .booking-header h1 {
        font-size: 24px;
    }

    .booking-grid {
        grid-template-columns: 1fr;
    }

    .form-row,
    .form-row-3cols {
        grid-template-columns: 1fr;
    }

    .booking-progress::before {
        display: none;
    }

    .booking-progress {
        flex-direction: column;
    }

    .form-actions {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

    .tariff-buttons {
        grid-template-columns: 1fr;
    }

    .price-preview-box {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .price-preview-left {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
        padding-right: 0;
        padding-bottom: 20px;
    }

    .price-preview-amount {
        font-size: 36px;
    }
}

/* ============================================
   VEŘEJNÉ AKCE (EVENTS PAGE)
   ============================================ */

.events-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.events-section h1 {
    text-align: center;
    font-size: 42px;
    color: var(--primary-dark);
    margin-bottom: 15px;
}

.events-section .section-intro {
    text-align: center;
    font-size: 18px;
    color: #666;
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Úvodní info box */
.events-intro-box {
    display: flex;
    gap: 30px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    padding: 40px;
    border-radius: 16px;
    margin-bottom: 50px;
    color: white;
    box-shadow: 0 10px 30px rgba(13, 61, 77, 0.15);
}

.events-intro-box .intro-icon {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
}

.events-intro-box .intro-content h2 {
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 28px;
    color: white;
}

.events-intro-box .intro-content p {
    margin-bottom: 15px;
    line-height: 1.7;
    font-size: 16px;
    opacity: 0.95;
}

.events-intro-box .intro-content p:last-of-type {
    margin-bottom: 20px;
}

/* Promo banner se slevou */
.promo-banner {
    background: var(--accent-color);
    padding: 20px 25px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 16px;
    color: white;
    box-shadow: 0 4px 15px rgba(242, 121, 90, 0.3);
}

.promo-banner i {
    font-size: 24px;
}

.promo-banner strong {
    font-weight: 600;
}

.promo-banner .highlight-price {
    font-size: 22px;
    font-weight: 700;
    text-decoration: underline;
}

/* Přepínač Budoucí / Proběhlé */
.events-filter-tabs {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-bottom: 50px;
}

.events-filter-tabs .filter-tab {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 30px;
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 50px;
    color: #666;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
}

.events-filter-tabs .filter-tab:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(33, 117, 140, 0.15);
}

.events-filter-tabs .filter-tab.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
    box-shadow: 0 6px 20px rgba(33, 117, 140, 0.3);
}

.events-filter-tabs .filter-tab.active:hover {
    transform: translateY(0);
}

/* Výpis akcí */
.events-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 60px;
}

/* Karta jedné akce */
.event-card {
    display: flex;
    gap: 30px;
    background: white;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.event-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

/* Levý box s datem */
.event-date-box {
    flex-shrink: 0;
    width: 140px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    color: white;
    box-shadow: 0 4px 15px rgba(33, 117, 140, 0.2);
}

.event-date-box .date-day {
    font-size: 48px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 5px;
}

.event-date-box .date-month {
    font-size: 18px;
    font-weight: 600;
    text-transform: capitalize;
    margin-bottom: 10px;
    opacity: 0.95;
}

.event-date-box .date-year {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.event-date-box .date-day-name {
    font-size: 14px;
    font-weight: 500;
    text-transform: capitalize;
    opacity: 0.9;
}

/* Pravá část s obsahem */
.event-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.event-content .event-title {
    margin: 0 0 5px 0;
    font-size: 28px;
    color: var(--primary-dark);
    font-weight: 700;
}

.event-content .event-time {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    color: #666;
    font-weight: 500;
}

.event-content .event-time i {
    color: var(--accent-color);
}

.event-content .event-description {
    font-size: 16px;
    line-height: 1.7;
    color: #444;
    margin: 0;
}

.event-content .event-link {
    margin-top: auto;
}

.event-content .event-link .btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

/* Oprava kontrastu tlačítka při hoveru */
.event-content .event-link .btn-secondary {
    background: white;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.event-content .event-link .btn-secondary:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(33, 117, 140, 0.3);
}

/* Prázdný stav */
.events-list .empty-state {
    text-align: center;
    padding: 80px 20px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.events-list .empty-state i {
    font-size: 64px;
    color: #ddd;
    margin-bottom: 20px;
}

.events-list .empty-state h3 {
    font-size: 24px;
    color: #666;
    margin-bottom: 10px;
}

.events-list .empty-state p {
    font-size: 16px;
    color: #999;
    margin-bottom: 30px;
}

/* CTA sekce */
.events-cta {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    padding: 60px 40px;
    border-radius: 16px;
    text-align: center;
    color: white;
    box-shadow: 0 10px 30px rgba(13, 61, 77, 0.2);
}

.events-cta .cta-content h2 {
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 32px;
    color: white;
}

.events-cta .cta-content p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.95;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.events-cta .btn-lg {
    padding: 18px 40px;
    font-size: 18px;
}

/* Responzivita - Tablet */
@media (max-width: 768px) {
    .events-section {
        padding: 50px 0;
    }

    .events-section h1 {
        font-size: 32px;
    }

    .events-intro-box {
        flex-direction: column;
        padding: 30px;
        gap: 20px;
    }

    .events-intro-box .intro-icon {
        width: 60px;
        height: 60px;
        font-size: 28px;
        margin: 0 auto;
    }

    .events-intro-box .intro-content h2 {
        font-size: 24px;
        text-align: center;
    }

    .events-filter-tabs {
        flex-direction: column;
        gap: 10px;
        padding: 0 20px;
    }

    .events-filter-tabs .filter-tab {
        justify-content: center;
    }

    .event-card {
        flex-direction: column;
        gap: 20px;
        padding: 25px;
    }

    .event-date-box {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-around;
        padding: 15px;
    }

    .event-date-box .date-day {
        font-size: 36px;
    }

    .event-date-box .date-year {
        border-bottom: none;
        border-left: 1px solid rgba(255, 255, 255, 0.3);
        padding-bottom: 0;
        padding-left: 15px;
        margin-bottom: 0;
    }

    .event-content .event-title {
        font-size: 24px;
    }

    .events-cta {
        padding: 40px 30px;
    }

    .events-cta .cta-content h2 {
        font-size: 26px;
    }
}

/* Responzivita - Mobil */
@media (max-width: 480px) {
    .events-section h1 {
        font-size: 28px;
    }

    .events-section .section-intro {
        font-size: 16px;
    }

    .events-intro-box {
        padding: 20px;
    }

    .promo-banner {
        flex-direction: column;
        text-align: center;
        padding: 15px;
    }

    .event-date-box {
        flex-wrap: wrap;
        gap: 10px;
    }

    .event-date-box > div {
        flex: 1 1 45%;
        text-align: center;
    }

    .event-content .event-title {
        font-size: 20px;
    }

    .events-cta .cta-content h2 {
        font-size: 22px;
    }

    .events-cta .btn-lg {
        width: 100%;
        padding: 15px 30px;
        font-size: 16px;
    }
}
