    :root {
            --primary-color: #2c3e50;
            --secondary-color: #e74c3c;
            --light-color: #f8f9fa;
            --dark-color: #343a40;
            --accent-color: #3498db;
            --success-color: #27ae60;
        }
        
        body {
            font-family: 'Montserrat', sans-serif;
            color: var(--dark-color);
            overflow-x: hidden;
            scroll-behavior: smooth;
        }
        
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Playfair Display', serif;
            font-weight: 600;
        }
        
        /* Oprava pozice pro kotvy při fixed navigaci */
        section {
            scroll-margin-top: 80px;
        }
        
        /* Navigace */
        .navbar {
            background-color: rgba(255, 255, 255, 0.98) !important;
            box-shadow: 0 2px 25px rgba(0, 0, 0, 0.15);
            padding: 15px 0;
            transition: all 0.4s ease;
        }
        
        .navbar.navbar-shrink {
            padding: 8px 0;
        }
        
        .navbar-brand {
            font-family: 'Playfair Display', serif;
            font-weight: 700;
            font-size: 1.8rem;
            color: var(--primary-color) !important;
            display: flex;
            align-items: center;
        }
        
        .navbar-brand i {
            color: var(--secondary-color);
            margin-right: 8px;
            font-size: 1.5rem;
        }
        
        .nav-link {
            font-weight: 500;
            margin: 0 10px;
            position: relative;
            color: var(--primary-color) !important;
        }
        
        .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 0;
            background-color: var(--secondary-color);
            transition: width 0.3s ease;
        }
        
        .nav-link:hover::after {
            width: 100%;
        }
        
        /* Hero sekce */
        .hero-section {
            background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1600585154340-be6161a56a0c?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            color: white;
            padding: 180px 0 150px;
            position: relative;
        }
        
        .hero-content {
            position: relative;
            z-index: 2;
        }
        
        .hero-badge {
            background-color: var(--secondary-color);
            color: white;
            padding: 8px 15px;
            display: inline-block;
            margin-bottom: 20px;
            font-weight: 500;
            letter-spacing: 1px;
        }
        
        .btn-primary {
            background-color: var(--secondary-color);
            border-color: var(--secondary-color);
            padding: 12px 30px;
            font-weight: 500;
            border-radius: 2px;
            position: relative;
            overflow: hidden;
            z-index: 1;
            transition: all 0.3s;
        }
        
        .btn-primary::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
            transition: all 0.6s;
            z-index: -1;
        }
        
        .btn-primary:hover {
            background-color: #c0392b;
            border-color: #c0392b;
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
        }
        
        .btn-primary:hover::before {
            left: 100%;
        }
        
        /* Služby */
        .services-section {
            padding: 100px 0;
        }
        
        .section-title {
            position: relative;
            margin-bottom: 50px;
            padding-bottom: 15px;
        }
        
        .section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 60px;
            height: 3px;
            background-color: var(--secondary-color);
        }
        
        .service-card {
            transition: all 0.4s ease;
            border: none;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
            margin-bottom: 30px;
            border-radius: 5px;
            overflow: hidden;
            height: 100%;
        }
        
        .service-card:hover {
            transform: translateY(-12px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
        }
        
        .service-img {
            height: 200px;
            object-fit: cover;
            transition: transform 0.5s;
        }
        
        .service-card:hover .service-img {
            transform: scale(1.05);
        }
        
        .icon-box {
            width: 80px;
            height: 80px;
            background-color: var(--secondary-color);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: -40px auto 20px;
            font-size: 30px;
            position: relative;
            z-index: 2;
            box-shadow: 0 0 0 10px rgba(231, 76, 60, 0.1);
        }
        
        /* O nás */
        .about-section {
            background-color: var(--light-color);
            padding: 100px 0;
            position: relative;
        }
        
        .about-img {
            position: relative;
            overflow: hidden;
            border-radius: 5px;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
        }
        
        .about-img img {
            transition: transform 0.5s;
        }
        
        .about-img:hover img {
            transform: scale(1.05);
        }
        
        .experience-badge {
            position: absolute;
            bottom: -30px;
            right: -30px;
            width: 180px;
            height: 180px;
            background-color: var(--secondary-color);
            color: white;
            border-radius: 50%;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            box-shadow: 0 0 0 10px rgba(231, 76, 60, 0.2);
        }
        
        .experience-badge span:first-child {
            font-size: 2.5rem;
            line-height: 1;
        }
        
        /* Projekty */
        .projects-section {
            padding: 100px 0;
        }
        
        .project-card {
            position: relative;
            margin-bottom: 30px;
            overflow: hidden;
            border-radius: 5px;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
        }
        
        .project-card img {
            transition: transform 0.5s;
            width: 100%;
            height: 250px;
            object-fit: cover;
        }
        
        .project-card:hover img {
            transform: scale(1.1);
        }
        
        .project-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.2) 100%);
            opacity: 0;
            transition: opacity 0.3s;
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            padding: 20px;
            color: white;
        }
        
        .project-card:hover .project-overlay {
            opacity: 1;
        }
        
        /* Reference */
        .testimonials-section {
            background-color: var(--light-color);
            padding: 100px 0;
        }
        
        .testimonial-card {
            border-left: 4px solid var(--secondary-color);
            padding: 25px;
            background-color: white;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
            margin-bottom: 30px;
            transition: all 0.3s;
        }
        
        .testimonial-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
        }
        
        .client-info {
            display: flex;
            align-items: center;
            margin-top: 20px;
        }
        
        .client-img {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            object-fit: cover;
            margin-right: 15px;
            border: 3px solid var(--secondary-color);
        }
        
        /* Kontakt */
        .contact-section {
            padding: 100px 0;
        }
        
        .contact-info-box {
            text-align: center;
            padding: 30px;
            background-color: white;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
            margin-bottom: 30px;
            transition: all 0.3s;
        }
        
        .contact-info-box:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
        }
        
        .contact-icon {
            font-size: 2rem;
            color: var(--secondary-color);
            margin-bottom: 15px;
        }
        
        /* Patička */
        .footer {
            background-color: var(--primary-color);
            color: white;
            padding: 80px 0 20px;
            position: relative;
        }
        
        .footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(90deg, var(--secondary-color), var(--accent-color));
        }
        
        .footer a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .footer a:hover {
            color: white;
        }
        
        .social-icons a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 45px;
            height: 45px;
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            text-align: center;
            line-height: 40px;
            margin-right: 10px;
            transition: all 0.3s;
        }
        
        .social-icons a:hover {
            background-color: var(--secondary-color);
            transform: translateY(-5px);
        }
        
        .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background-color: var(--secondary-color);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s;
            z-index: 1000;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }
        
        .back-to-top.active {
            opacity: 1;
            visibility: visible;
        }
        
        .back-to-top:hover {
            background-color: var(--primary-color);
            transform: translateY(-5px);
        }
        
        /* Animace */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .animate {
            animation: fadeInUp 0.8s ease forwards;
        }
        
        .delay-1 {
            animation-delay: 0.2s;
        }
        
        .delay-2 {
            animation-delay: 0.4s;
        }
        
        .delay-3 {
            animation-delay: 0.6s;
        }
        
        /* Responzivita */
        @media (max-width: 992px) {
            .hero-section {
                padding: 120px 0 100px;
                background-attachment: scroll;
            }
            
            .navbar {
                padding: 12px 0;
            }
            
            .experience-badge {
                width: 150px;
                height: 150px;
                bottom: -20px;
                right: -20px;
            }
        }
        
        @media (max-width: 768px) {
            .section-title {
                text-align: center;
            }
            
            .section-title::after {
                left: 50%;
                transform: translateX(-50%);
            }
            
            .experience-badge {
                position: relative;
                margin: -30px auto 30px;
                right: auto;
                bottom: auto;
            }
        }

/* Přidáno pro tabulku faktur */
.table {
    margin-top: 1rem;
}

.table th, .table td {
    vertical-align: middle;
}


        /* Cookie lišta */
        #cookie-banner {
            position: fixed;
            bottom: -120px; /* start mimo obrazovku */
            left: 0;
            width: 100%;
            background-color: #1c1c1c;
            color: gold;
            padding: 15px;
            text-align: center;
            z-index: 1050;
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 15px;
            transition: bottom 0.6s ease-in-out;
            font-weight: 500;
            font-size: 0.95rem;
            box-shadow: 0 -2px 10px rgba(0,0,0,0.5);
        }

        #cookie-banner.show {
            bottom: 0; /* vysune se nahoru */
        }

        #cookie-banner button, #cookie-banner a {
            padding: 6px 14px;
            font-size: 0.9rem;
        }

        #cookie-banner a {
            color: gold;
            text-decoration: underline;
            cursor: pointer;
        }

        /* Tmavý overlay pro modal */
        .cookie-modal-backdrop {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0,0,0,0.85);
            display: none;
            align-items: center;
            justify-content: center;
            z-index: 1060;
            padding: 20px;
            overflow-y: auto;
        }

        .cookie-modal-content {
            background-color: #1c1c1c;
            color: gold;
            padding: 25px;
            border-radius: 10px;
            max-width: 600px;
            width: 100%;
            box-shadow: 0 0 20px rgba(0,0,0,0.7);
            transform: translateY(-50px);
            opacity: 0;
            transition: all 0.4s ease-in-out;
        }

        .cookie-modal-backdrop.show {
            display: flex;
        }

        .cookie-modal-backdrop.show .cookie-modal-content {
            transform: translateY(0);
            opacity: 1;
        }

        .cookie-modal-close {
            background: none;
            border: 1px solid gold;
            color: gold;
            padding: 4px 10px;
            border-radius: 5px;
            cursor: pointer;
            float: right;
        }

        .cookie-modal-close:hover {
            background-color: gold;
            color: #1c1c1c;
        }
.content {
            max-width: 800px;
            margin: 0 auto;
            padding: 2rem;
            background-color: white;
            box-shadow: 0 0 10px rgba(0,0,0,0.1);
            border-radius: 8px;
        }