/* Rozšířená paleta barev */
:root {
    --primary-blue: #0F3F63;     /* Základní tmavě modrá */
    --light-blue: #25A9EA;       /* Světlejší modrá */
    --dark-blue: #0A2F4A;        /* Tmavší odstín pro hover efekty */
    --white: #FFFFFF;
    --light-gray: #f5f5f5;
    --transparent-white: rgba(255, 255, 255, 0.75);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;

}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    background: white;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Raleway', sans-serif !important;
    font-weight: 600;
    color: var(--primary-blue);
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%;
}

section {
    padding: 8rem 0;
}

/* h2 {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}
    */

h2 {
font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, #1a1a1a 0%, #0066cc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    line-height: 1.2;
    position: relative;
    text-align: center;
}
/* h2::after {
    content: '';
    position: absolute;
    bottom: -0.8rem;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--light-blue);
} */

/* Button styles */
.btn-more {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: var(--primary-blue);
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-more:hover {
    background: var(--light-blue);
    transform: translateY(-2px);
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 0.5s ease forwards;
}

/* Responsive styles */
@media (max-width: 992px) {
    h2 {
        font-size: 2.4rem;
    }
    
    .container {
        padding: 0 1.5rem;
    }
}

@media (max-width: 768px) {
    section {
        padding: 3rem 0;
    }

    h2 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
}

@media (max-width: 480px) {
    h2 {
        font-size: 1.8rem;
    }

    .container {
        padding: 0 1rem;
    }
}

/* Print styles */
@media print {
    body {
        color: black;
        background: white;
    }

    .container {
        max-width: none;
        width: 100%;
        margin: 0;
        padding: 0;
    }

    a {
        text-decoration: none;
        color: black;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation: none !important;
        transition: none !important;
    }
}