/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Jul 14 2025 | 13:52:56 */
       * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Arial', sans-serif;
            line-height: 1.6;
            color: #2e2e2e;
            overflow-x: hidden;
        }

        /* Header */
        .header {
            background: #06b3a3;
            padding: 0;
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 20px rgba(0,0,0,0.1);
        }

        .nav-container {
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 2rem;
        }

        .logo {
            font-size: 2rem;
            font-weight: bold;
            color: white;
            text-decoration: none;
        }

        .nav-menu {
            display: flex;
            list-style: none;
            gap: 2rem;
        }

        .nav-link {
            color: white;
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s ease;
            padding: 0.5rem 1rem;
        }

        .nav-link:hover {
            color: #a0e3dc;
        }

        .mobile-menu-toggle {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.5rem;
            cursor: pointer;
        }

        /* Hero Section */
        .hero {
            background: linear-gradient(rgba(46, 46, 46, 0.7), rgba(6, 179, 163, 0.7)), url('https://images.unsplash.com/photo-1497366216548-37526070297c?w=1920&h=1080&fit=crop') center/cover;
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: white;
            padding-top: 80px;
            position: relative;
        }

        .hero-content h1 {
            font-size: 3.5rem;
            margin-bottom: 1rem;
            font-weight: 300;
        }

        .hero-content p {
            font-size: 1.3rem;
            margin-bottom: 2rem;
            max-width: 600px;
        }

        .cta-button {
            background: #a0e3dc;
            color: #2e2e2e;
            padding: 1rem 2rem;
            text-decoration: none;
            font-weight: bold;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
        }

        .cta-button:hover {
            background: #f5f5f5;
            transform: translateY(-2px);
        }

        /* About Section */
        .about {
            background: #dddddd;
            padding: 6rem 0;
        }

        .about-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .about-content-wrapper {
            display: grid;
            grid-template-columns: auto 1fr;
            gap: 3rem;
            align-items: center;
            margin-top: 3rem;
            max-width: 1200px;
            margin-left: auto;
            margin-right: auto;
        }

        .about-image {
            order: 1;
        }

        .about-content {
            order: 2;
        }

        .about-image {
            position: relative;
        }

        .about-image img {
            width: 100%;
            height: 400px;
            object-fit: cover;
            border: 3px solid #06b3a3;
        }

        .about-content h2 {
            font-size: 2.5rem;
            margin-bottom: 2rem;
            color: #2e2e2e;
            font-weight: 300;
        }

        .section-title {
            font-size: 2.5rem;
            margin-bottom: 2rem;
            font-weight: 300;
            position: relative;
            padding-bottom: 1rem;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 60px;
            height: 3px;
            background: #06b3a3;
        }

        .about-content p {
            font-size: 1.1rem;
            margin-bottom: 1.5rem;
            line-height: 1.8;
        }

        /* Services Section */
        .services {
            background: #dddddd;
            padding: 6rem 0;
            color: white;
        }

        .services-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 8rem;
            position: relative;
        }

        .services h2 {
            font-size: 2.5rem;
            margin-bottom: 3rem;
            font-weight: 300;
            position: relative;
            padding-bottom: 1rem;
            text-align: center;
        }

        .services h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 3px;
            background: white;
        }

        /* Slider Container */
        .slider-container {
            position: relative;
            width: 100%;
            max-width: 1080px;
            margin: 0 auto;
            overflow: hidden;
        }

        .services-slider {
            display: flex;
            transition: transform 0.4s ease;
            gap: 40px;
        }

        .service-item {
            background: linear-gradient(rgba(46, 46, 46, 0.6), rgba(46, 46, 46, 0.6)), url('https://images.unsplash.com/photo-1560472354-b33ff0c44a43?w=400&h=300&fit=crop') center/cover;
            padding: 2.5rem 1.5rem;
            transition: transform 0.3s ease;
            width: 320px;
            height: 250px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            text-align: center;
            position: relative;
            flex-shrink: 0;
            border-radius: 8px;
        }

        .service-item:nth-child(2) {
            background: linear-gradient(rgba(46, 46, 46, 0.6), rgba(46, 46, 46, 0.6)), url('https://images.unsplash.com/photo-1558618666-fcd25c85cd64?w=400&h=300&fit=crop') center/cover;
        }

        .service-item:nth-child(3) {
            background: linear-gradient(rgba(46, 46, 46, 0.6), rgba(46, 46, 46, 0.6)), url('https://images.unsplash.com/photo-1473445730015-841f29a9490b?w=400&h=300&fit=crop') center/cover;
        }

        .service-item:nth-child(4) {
            background: linear-gradient(rgba(46, 46, 46, 0.6), rgba(46, 46, 46, 0.6)), url('https://images.unsplash.com/photo-1527359443443-84a48aec73d2?w=400&h=300&fit=crop') center/cover;
        }

        .service-item:nth-child(5) {
            background: linear-gradient(rgba(46, 46, 46, 0.6), rgba(46, 46, 46, 0.6)), url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?w=400&h=300&fit=crop') center/cover;
        }

        .service-item:nth-child(6) {
            background: linear-gradient(rgba(46, 46, 46, 0.6), rgba(46, 46, 46, 0.6)), url('https://images.unsplash.com/photo-1441986300917-64674bd600d8?w=400&h=300&fit=crop') center/cover;
        }

        .service-item:hover {
            transform: translateY(-5px);
        }

        .service-item h3 {
            font-size: 1.8rem;
            margin-bottom: 1rem;
        }

        .service-item p {
            font-size: 1.1rem;
            line-height: 1.6;
        }

        /* Slider Arrows */
        .slider-arrow {
            position: absolute;
            top: calc(50%);
            transform: translateY(-50%);
            background: rgba(255,255,255,0.2);
            border: 2px solid white;
            color: white;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            font-size: 1.5rem;
            font-weight: bold;
            transition: all 0.3s ease;
            z-index: 10;
            user-select: none;
        }

        .slider-arrow:hover {
            background: white;
            color: #06b3a3;
            transform: translateY(-50%) scale(1.1);
        }

        .slider-arrow.left {
            left: calc(50% - 630px);
        }

        .slider-arrow.right {
            right: calc(50% - 590px);
        }

        .all-services-link {
            text-align: center;
            margin-top: 3rem;
        }

        .all-services-link a {
            color: white;
            text-decoration: none;
            font-size: 1.2rem;
            display: inline-flex;
            align-items: center;
            gap: 1rem;
            transition: all 0.3s ease;
            border: 2px solid white;
            padding: 1rem 2rem;
            border-radius: 25px;
        }

        .all-services-link a:hover {
            background: white;
            color: #06b3a3;
            transform: translateY(-2px);
        }

        /* Team Section */
        .team {
			background: #dddddd;
            padding: 6rem 0;
        }

        .team-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .team h2 {
            font-size: 2.5rem;
            margin-bottom: 3rem;
            color: #2e2e2e;
            font-weight: 300;
            position: relative;
            padding-bottom: 1rem;
        }

        .team h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 60px;
            height: 3px;
            background: #06b3a3;
        }

        .team-grid {
            display: flex;
            gap: 2rem;
            margin-top: 3rem;
            align-items: flex-start;
            justify-content: center;
            flex-wrap: nowrap;
        }

        .team-member {
            text-align: center;
            flex: 0 0 auto;
        }

        .team-arrow {
            display: flex;
            align-items: center;
            justify-content: center;
            color: #06b3a3;
            text-decoration: none;
            font-size: 3rem;
            font-weight: bold;
            transition: all 0.3s ease;
            margin-left: 2rem;
            margin-top: 75px;
        }

        .team-arrow:hover {
            color: #2e2e2e;
            transform: translateX(5px);
        }

        .team-member img {
            width: 200px;
            height: 200px;
            border-radius: 50%;
            object-fit: cover;
            margin-bottom: 1rem;
            border: 3px solid #06b3a3;
        }

        .team-member h3 {
            font-size: 1.3rem;
            margin-bottom: 0.5rem;
            color: #2e2e2e;
        }

        .team-member p {
            color: #2e2e2e;
            opacity: 0.8;
        }

        /* Contact Section */
        .contact {
            background: #06b3a3;
            padding: 6rem 0;
            color: white;
        }

        .contact-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 2rem;
            display: grid;
            grid-template-columns: 1fr 2.2fr; /* Ještě větší formulář */
            gap: 4rem;
        }

        .contact h2 {
            font-size: 2.5rem;
            margin-bottom: 2rem;
            font-weight: 300;
            position: relative;
            padding-bottom: 1rem;
        }

        .contact h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 60px;
            height: 3px;
            background: #06b3a3;
        }

        .contact-info p {
            margin-bottom: 1rem;
            font-size: 1.1rem;
        }

        .contact-form {
            background: #2fc3b5;
            padding: 2.5rem 3rem; /* Menší vertikální padding, větší horizontální */
            color: #f5f5f5;
            border-radius: 8px; /* Přidané zaoblení rohů */
        }

        .form-group {
            margin-bottom: 1.5rem;
        }

        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: bold;
            color: #f5f5f5;
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 0.8rem;
            border: 1px solid #ddd;
            background: #e8e8e8;
            font-size: 1rem;
        }

        .form-group textarea {
            resize: vertical;
            min-height: 120px;
        }

        .submit-btn {
            background: #06b3a3;
            color: white;
            padding: 1rem 2rem;
            border: none;
            cursor: pointer;
            font-size: 1rem;
            transition: background 0.3s ease;
        }

        .submit-btn:hover {
            background: #2e2e2e;
        }

        /* Footer */
        .footer {
            background: #3a3a3a;
            padding: 2rem 0;
            text-align: center;
            color: #f5f5f5;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .mobile-menu-toggle {
                display: block;
            }

            .nav-menu {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background: #06b3a3;
                flex-direction: column;
                padding: 1rem 0;
            }

            .nav-menu.active {
                display: flex;
            }

            .hero-content h1 {
                font-size: 2.5rem;
            }

            .about-content-wrapper,
            .contact-container {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .about-image img {
                width: 100%;
                max-width: 300px;
                height: 300px;
                margin: 0 auto;
                display: block;
            }

            .services-container {
                padding: 0 2rem;
            }

            .slider-container {
                overflow-x: auto;
                overflow-y: hidden;
                max-width: 100%;
            }

            .services-slider {
                transform: none !important;
                padding: 0 1rem;
            }

            .service-item {
                width: 280px;
            }

            .slider-arrow {
                display: none;
            }

            .services-slider::-webkit-scrollbar {
                height: 8px;
            }

            .services-slider::-webkit-scrollbar-track {
                background: rgba(255,255,255,0.1);
                border-radius: 4px;
            }

            .services-slider::-webkit-scrollbar-thumb {
                background: rgba(255,255,255,0.3);
                border-radius: 4px;
            }

            .team-grid {
                flex-direction: column;
                align-items: center;
            }

            .team-arrow {
                margin-left: 0;
                margin-top: 2rem;
            }
        }