/* ============================================
   GLOBAL STYLES
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    overflow-x: hidden;
}


/* ============================================
   HAMBURGER MENU - CSS
   Přidej do main.css
   ============================================ */

/* Hamburger Button - Vlevo nahoře */
.hamburger-btn {
    position: fixed;
    top: 16px;
    left: 16px;
    z-index: 1000;
    background: rgba(255, 255, 255, 1);
    border: none;
    padding: 10px;
    border-radius: 12px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    animation: fadeInDown 0.5s ease-out;
    backdrop-filter: blur(10px);
}

.hamburger-btn:hover {
    background: rgba(0, 0, 0, 0.95);
    box-shadow: 0 4px 20px rgba(255, 152, 0, 0.3);
}

.hamburger-btn:active {
    transform: scale(0.95);
}

/* Hamburger ikona (3 čárky) */
.hamburger-icon {
    display: flex;
    flex-direction: column;
    gap: 5px;
    width: 26px;
}

.hamburger-icon span {
    display: block;
    height: 3px;
    background: #FF9800;
    border-radius: 2px;
    transition: all 0.3s;
}

.hamburger-btn:hover .hamburger-icon span {
    background: #FFCB2B;
}

/* Animace při otevření - X */
.hamburger-btn.open .hamburger-icon span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.hamburger-btn.open .hamburger-icon span:nth-child(2) {
    opacity: 0;
}

.hamburger-btn.open .hamburger-icon span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* ============================================
   HAMBURGER MENU - Slide-in panel
   ============================================ */
.hamburger-menu {
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 320px;
    background: white;
    box-shadow: 4px 0 20px rgba(0, 0, 0, 0.15);
    transform: translateX(-100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1001;
    overflow-y: auto;
    overflow-x: hidden;
}

.hamburger-menu.open {
    transform: translateX(0);
}

/* Vlastní scrollbar */
.hamburger-menu::-webkit-scrollbar {
    width: 8px;
}

.hamburger-menu::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.hamburger-menu::-webkit-scrollbar-thumb {
    background: #FFCB2B;
    border-radius: 4px;
}

.hamburger-menu::-webkit-scrollbar-thumb:hover {
    background: #FFA500;
}

/* Menu header s close tlačítkem */
.menu-header {
    position: sticky;
    top: 0;
    background: white;
    padding: 20px;
    border-bottom: 2px solid #f0f0f0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 10;
}

.menu-logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: #FF9800;
}

.menu-close {
    background: none;
    border: none;
    font-size: 2rem;
    color: #666;
    cursor: pointer;
    padding: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    transition: all 0.3s;
}

.menu-close:hover {
    background: #f5f5f5;
    color: #333;
}

/* Menu content - odkazy */
.menu-content {
    padding: 20px;
}

.menu-content a {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 16px 20px;
    text-decoration: none;
    color: #333;
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: 12px;
    transition: all 0.3s;
    margin-bottom: 8px;
}

.menu-content a:hover {
    background: linear-gradient(90deg, #FFF8E1 0%, #FFECB3 100%);
    transform: translateX(8px);
}

.menu-content a.active {
    background: linear-gradient(135deg, #FFCB2B 0%, #FFA500 100%);
    color: white;
}

/* Overlay - zatmění pozadí */
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}

.menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (min-width: 768px) {
    .hamburger-btn {
        top: 20px;
        left: 20px;
        width: 52px;
        height: 52px;
    }
    
    .hamburger-menu {
        width: 360px;
    }
}


/* ============================================
   LANGUAGE SWITCHER - Mobile First
   ============================================ */
.language-switcher {
    position: fixed;
    top: 16px;
    right: 16px;
    z-index: 1000;
    animation: fadeInDown 0.5s ease-out;
}

.lang-select-btn {
    background: rgba(255, 255, 255, 0.98);
    border: none;
    padding: 10px 16px;
    border-radius: 12px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    font-weight: 600;
    color: #333;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    min-width: 90px;
    height: 48px;
}

.lang-select-btn:hover {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.lang-select-btn:active {
    transform: translateY(0);
}

.lang-arrow {
    display: inline-block;
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid #666;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    margin-left: auto;
}

.lang-select-btn.open .lang-arrow {
    transform: rotate(180deg);
}

.lang-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px) scale(0.95);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    min-width: 160px;
}

.lang-dropdown.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.lang-dropdown a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 15px;
    transition: all 0.2s;
    border-bottom: 1px solid #f0f0f0;
}

.lang-dropdown a:last-child {
    border-bottom: none;
}

.lang-dropdown a:hover {
    background: linear-gradient(90deg, #FFF8E1 0%, #FFECB3 100%);
    padding-left: 24px;
}

.lang-dropdown a.active {
    background: linear-gradient(135deg, #FFCB2B 0%, #FFA500 100%);
    color: white;
    font-weight: 700;
}

.lang-dropdown a.active:hover {
    background: linear-gradient(135deg, #FFD84D 0%, #FFB733 100%);
    padding-left: 18px;
}

.lang-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
    z-index: 999;
    display: none;
}

.lang-overlay.active {
    display: block;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    min-height: 100vh;
    /*background: linear-gradient(135deg, #FFCB2B 0%, #FFA500 50%, #00C2A8 100%);
    background: linear-gradient(135deg, #FFCB2B 0%, #8000FF 50%, #B056D1 100%);*/
    background: linear-gradient(
  135deg,
  #FFD34D 0%,
  #8A4CF5 55%,
  #B97ADB 100%
);


    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 20px 40px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    top: -200px;
    right: -200px;
    animation: float 6s ease-in-out infinite;
}

.hero::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    bottom: -100px;
    left: -100px;
    animation: float 8s ease-in-out infinite;
}

.hero-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.mascot {
    font-size: 8rem;
    display: inline-block;
    margin-bottom: 5px;
    animation: bounce 2s ease-in-out infinite;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.2));
}

.hero h1 {
    font-size: 4rem;
    color: white;
    margin-bottom: 20px;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.2);
    font-weight: 800;
    line-height: 1.2;
}

.hero .subtitle {
    font-size: 1.5rem;
    color: white;
    margin-bottom: 40px;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.2);
    font-weight: 500;
    opacity: 0.95;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

.scroll-down-arrow {
    position: absolute;
    bottom: 30px;
    left: 50%;
    width: 30px;
    height: 30px;
    border: 2px solid white;
    border-top: none;
    border-left: none;
    transform: translateX(-50%) rotate(45deg);
    cursor: pointer;
    animation: bounce-arrow 2s infinite;
    z-index: 5;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    padding: 16px 40px;
    font-size: 1.2rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-block;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: white;
    color: #FF9800;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(0,0,0,0.3);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid white;
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

/* ============================================
   FEATURES SECTION
   ============================================ */
.features {
    padding: 100px 20px;
    background: white;
}

.section-title {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 20px;
    color: #333;
    font-weight: 800;
}

.section-subtitle {
    text-align: center;
    font-size: 1.3rem;
    color: #666;
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.features-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin: 0 auto;
    justify-content: center;
}

.feature {
    text-align: center;
    padding: 40px 30px;
    border-radius: 16px;
    transition: all 0.3s;
    background: #f9f9f9;
    width: 280px;
    flex-shrink: 0;
}

.feature:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.1);
    background: white;
}

.feature-icon {
    font-size: 4rem;
    margin-bottom: 20px;
    display: inline-block;
    transition: transform 0.3s;
}

.feature:hover .feature-icon {
    transform: scale(1.1);
}

.feature h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #333;
    font-weight: 700;
}

.feature p {
    color: #666;
    line-height: 1.6;
    font-size: 1.05rem;
}

/* ============================================
   COMPARISON TABLE
   ============================================ */
.comparison {
    padding: 100px 20px;
    background-color: #f9f9f9;
    text-align: center;
}

.comparison .section-title {
    margin-bottom: 40px;
    font-size: 2.5rem;
}

.table-container {
    max-width: 1000px;
    margin: 0 auto;
    overflow-x: auto;
    padding-bottom: 10px;
}

.comparison table {
    width: 100%;
    border-collapse: collapse;
    margin: 0 auto;
    background-color: white;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    overflow: hidden;
    min-width: 600px;
}

.comparison thead th {
    background: linear-gradient(135deg, #FFCB2B 0%, #FFA500 100%);
    color: white;
    padding: 18px 15px;
    text-align: center;
    font-weight: 700;
    font-size: 1rem;
    border: none;
}

.comparison thead th:first-child {
    background: #555;
    text-align: left;
    padding-left: 25px;
}

.comparison thead small {
    display: block;
    font-weight: 400;
    margin-top: 4px;
    opacity: 0.95;
    font-size: 0.85rem;
}

.comparison tbody tr:nth-child(even) {
    background-color: #f8f8f8;
}

.comparison tbody tr:hover {
    background-color: #fff4e0;
    transition: background-color 0.2s;
}

.comparison tbody td {
    padding: 15px 12px;
    border-bottom: 1px solid #e8e8e8;
    text-align: center;
    vertical-align: middle;
    font-size: 0.95rem;
    color: #333;
}

.comparison tbody td:first-child {
    text-align: left;
    font-weight: 600;
    color: #444;
    padding-left: 25px;
    white-space: nowrap;
}

.comparison tbody td strong {
    color: #FF9800;
    font-weight: 700;
}

.comparison tbody small {
    display: block;
    font-size: 0.8rem;
    color: #777;
    margin-top: 3px;
}

/* ============================================
   HOW IT WORKS
   ============================================ */
.how-it-works {
    padding: 100px 20px;
    background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
}

.steps {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    gap: 40px;
}

.step {
    display: flex;
    gap: 30px;
    align-items: center;
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.3s;
}

.step:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.step-number {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #FFCB2B 0%, #FFA500 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 800;
    color: white;
    box-shadow: 0 4px 15px rgba(255, 203, 43, 0.4);
}

.step-content h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: #333;
}

.step-content p {
    color: #666;
    line-height: 1.6;
    font-size: 1.1rem;
}

/* ============================================
   PRICING SECTION
   ============================================ */
.pricing-preview {
    padding: 100px 20px;
    background: white;
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: stretch;
}

.pricing-card {
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-8px);
    border-color: #FFCB2B;
    box-shadow: 0 12px 30px rgba(255, 203, 43, 0.2);
}

.pricing-card.featured {
    border-color: #FFCB2B;
    border-width: 3px;
    background: linear-gradient(135deg, #fffdf7 0%, #ffffff 100%);
}

.pricing-card.featured::before {
    content: attr(data-badge);
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #FFCB2B 0%, #FFA500 100%);
    color: white;
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(255, 152, 0, 0.3);
}

.plan-name {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #333;
}

.plan-price {
    font-size: 3rem;
    font-weight: 800;
    color: #FFCB2B;
    margin-bottom: 30px;
}

.plan-price small {
    font-size: 1.2rem;
    color: #999;
    font-weight: 400;
}

.plan-features {
    list-style: none;
    margin: 0 0 auto 0;
    text-align: left;
    flex-grow: 1;
}

.plan-features li {
    padding: 12px 0;
    color: #666;
    border-bottom: 1px solid #f0f0f0;
    line-height: 1.5;
}

.plan-features li:last-child {
    border-bottom: none;
}

.plan-features li::before {
    content: '✓ ';
    color: #4CAF50;
    font-weight: bold;
    margin-right: 10px;
    font-size: 1.1rem;
}

.pricing-card .btn {
    width: 100%;
    margin-top: 30px;
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 700;
    text-align: center;
}

.pricing-card.disabled-plan {
    filter: grayscale(80%);
    opacity: 0.6;
    pointer-events: none;
    user-select: none;
    overflow: hidden;
}

.pricing-card.disabled-plan::before {
    content: 'Připravujeme';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-20deg); /* Větší úhel */
    background: rgba(255, 203, 43, 0.95);
    color: white;
    padding: 15px 80px; /* Větší padding */
    font-size: 1.6rem;
    font-weight: 700;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    white-space: nowrap;
    width: 100%; /* Rozšíříme na plnou šířku */
    max-width: none; /* Zrušíme omezení */
    text-align: center;
}

@media (max-width: 767px) {
    .pricing-card.disabled-plan::before {
        padding: 12px 60px;
        font-size: 1.3rem;
    }
}

@media (min-width: 480px) {
    .pricing-card.disabled-plan::before {
        padding: 12px 40px;
        font-size: 1.3rem;
    }
}

@media (min-width: 768px) {
    .pricing-card.disabled-plan::before {
        padding: 12px 60px;
        font-size: 1.5rem;
        max-width: 90%;
    }
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta {
    padding: 100px 20px;
    background: linear-gradient(
  135deg,
  #FFD34D 0%,
  #8A4CF5 55%,
  #B97ADB 100%
);
    text-align: center;
}

.cta h2 {
    font-size: 3rem;
    color: white;
    margin-bottom: 20px;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.2);
    font-weight: 800;
}

.cta p {
    font-size: 1.3rem;
    color: white;
    margin-bottom: 40px;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.2);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    padding: 60px 20px 0;
    background: #1F1F1F;
    color: #ccc;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
    padding-bottom: 40px;
}

.footer-column {
    flex: 1;
    min-width: 200px;
}

.footer-logo {
    font-size: 1.8rem;
    font-weight: 800;
    color: white;
    margin-bottom: 15px;
}

.footer-column p {
    line-height: 1.7;
    font-size: 0.95rem;
    max-width: 280px;
}

.footer-column h4 {
    font-size: 1.2rem;
    color: white;
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer a {
    color: #FFCB2B;
    text-decoration: none;
    transition: color 0.3s;
}

.footer a:hover {
    color: #FFD84D;
    text-decoration: underline;
}

.footer-bottom-bar {
    border-top: 1px solid #333;
    padding: 20px 0;
    text-align: center;
    font-size: 0.9rem;
    color: #888;
}

@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        text-align: center;
    }
    .footer-column p {
        margin: 0 auto 20px auto;
    }
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes float {
    0%, 100% { 
        transform: translateY(0px); 
    }
    50% { 
        transform: translateY(-20px); 
    }
}

@keyframes bounce {
    0%, 100% { 
        transform: translateY(0); 
    }
    50% { 
        transform: translateY(-15px); 
    }
}

@keyframes bounce-arrow {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) rotate(45deg) translateY(0);
    }
    40% {
        transform: translateX(-50%) rotate(45deg) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) rotate(45deg) translateY(-5px);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================
   RESPONSIVE - Mobile First
   ============================================ */

/* Tablet: 768px+ */
@media (min-width: 768px) {
    .language-switcher {
        top: 20px;
        right: 20px;
    }

    .lang-select-btn {
        padding: 12px 20px;
        min-width: 100px;
    }

    .lang-dropdown {
        min-width: 180px;
    }

    .lang-dropdown a {
        padding: 16px 20px;
        font-size: 16px;
    }

    .comparison {
        padding: 100px 20px;
    }

    .comparison thead th,
    .comparison tbody td {
        padding: 15px 12px;
    }
}

/* Desktop: 1024px+ */
@media (min-width: 1024px) {
    .lang-dropdown a:hover {
        padding-left: 28px;
    }
}

/* Mobile: max 768px */
@media (max-width: 768px) {
    .hero h1 { 
        font-size: 2.5rem; 
    }
    
    .mascot { 
        font-size: 5rem; 
    }
    
    .hero .subtitle { 
        font-size: 1.2rem; 
    }
    
    .section-title { 
        font-size: 2rem; 
    }
    
    .comparison .section-title {
        font-size: 1.8rem;
    }
    
    .step { 
        flex-direction: column; 
        text-align: center;
        padding: 30px 20px;
    }
    
    .pricing-cards { 
        grid-template-columns: 1fr; 
    }
    
    .comparison {
        padding: 60px 15px;
    }
    
    .comparison thead th,
    .comparison tbody td {
        padding: 10px 8px;
        font-size: 0.9rem;
    }
    
    .comparison tbody small {
        font-size: 0.75rem;
    }
    
    .cta h2 {
        font-size: 2rem;
    }
    
    .cta p {
        font-size: 1.1rem;
    }
}

/* Nová hlavička */
        .page-header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            padding: 32px 20px;
            /*background: linear-gradient(135deg, #FFCB2B 0%, #FFA500 100%);*/
            background: linear-gradient(135deg, #FFCB2B 0%, #8000FF 50%, #B056D1 100%);
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
            z-index: 998; /* Pod menu (999+) */
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .page-header .header-logo {
            font-size: 1.5rem;
            font-weight: 800;
            color: white;
            text-shadow: 1px 1px 3px rgba(0,0,0,0.2);
        }

        /* Styly pro textovou stránku */
        .text-page-section {
            padding: 140px 20px 80px; /* Zvětšený padding kvůli nové liště */
            background: #fff;
            min-height: 70vh;
        }

        .text-page-section .container {
            max-width: 1100px; /* Užší kontejner pro lepší čitelnost textu */
            margin: 0 auto;
        }

        .text-page-section h1 {
            font-size: 2.5rem;
            margin-bottom: 30px;
            color: #333;
            font-weight: 800;
        }

        .text-page-section h2 {
            font-size: 1.8rem;
            margin-top: 40px;
            margin-bottom: 20px;
            color: #444;
            font-weight: 700;
        }

        .text-page-section p,
        .text-page-section li {
            font-size: 1.1rem;
            line-height: 1.7;
            color: #555;
            margin-bottom: 15px;
        }

        .text-page-section ul,
        .text-page-section ol {
            margin-left: 20px;
            margin-bottom: 20px;
        }

        .text-page-section a {
            color: #FF9800;
            text-decoration: underline;
        }

        @media (max-width: 768px) {
            .text-page-section {
                padding-top: 100px;
            }
            .text-page-section h1 {
                font-size: 2rem;
            }
            .page-header {
                justify-content: flex-start; /* Logo vlevo na mobilu */
                padding-left: 70px; /* Prostor pro hamburger menu */
            }
        }