* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #333;
        }

        .hero {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            padding: 80px 20px;
            text-align: center;
        }

        .hero h1 {
            font-size: 2.5rem;
            margin-bottom: 10px;
        }

        .hero p {
            font-size: 1.2rem;
            opacity: 0.95;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
        }

        .section {
            padding: 60px 20px;
        }

        .section:nth-child(even) {
            background-color: #f8f9fa;
        }

        h2 {
            color: #667eea;
            margin-bottom: 30px;
            font-size: 2rem;
            text-align: center;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }

        .service-card {
            background: white;
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 4px 6px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
        }

        .service-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 6px 12px rgba(0,0,0,0.15);
        }

        .service-card h3 {
            color: #764ba2;
            margin-bottom: 15px;
            font-size: 1.3rem;
        }

        .service-card ul {
            list-style: none;
            padding-left: 0;
        }

        .service-card li {
            padding: 8px 0;
            padding-left: 25px;
            position: relative;
        }

        .service-card li:before {
            content: "✓";
            position: absolute;
            left: 0;
            color: #667eea;
            font-weight: bold;
        }

        .features {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin-top: 30px;
        }

        .feature {
            text-align: center;
            padding: 20px;
        }

        .feature-icon {
            font-size: 3rem;
            margin-bottom: 15px;
        }

        .feature h3 {
            color: #764ba2;
            margin-bottom: 10px;
        }

        .stats {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px;
            text-align: center;
            margin-top: 40px;
        }

        .stat {
            padding: 20px;
        }

        .stat-number {
            font-size: 3rem;
            font-weight: bold;
            color: #667eea;
            display: block;
        }

        .stat-label {
            font-size: 1.1rem;
            color: #666;
        }

        .team-section {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 30px;
            text-align: center;
        }

        .team-photo {
            max-width: 350px;
            max-height: 300px;
            width: 100%;
            height: auto;
            border-radius: 15px;
            box-shadow: 0 8px 20px rgba(0,0,0,0.2);
            object-fit: cover;
            border-radius: 100px;
        }

        .team-text {
            max-width: 800px;
            width: 100%;
        }

        .team-text p {
            font-size: 1.1rem;
            margin-bottom: 20px;
        }

        .team-text .mission {
            color: #667eea;
            font-weight: 500;
        }

        .video-section {
            background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
            color: white;
            padding: 60px 20px;
            text-align: center;
        }

        .video-section h2 {
            color: white;
            margin-bottom: 15px;
        }

        .video-section > p {
            font-size: 1.1rem;
            margin-bottom: 30px;
            opacity: 0.95;
        }

        .video-container {
            max-width: 900px;
            margin: 0 auto;
            background: rgba(255,255,255,0.1);
            padding: 30px;
            border-radius: 15px;
            backdrop-filter: blur(10px);
        }

        .video-placeholder {
            aspect-ratio: 16/9;
            background: rgba(255,255,255,0.95);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            border-radius: 10px;
            color: #666;
            font-size: 1.1rem;
            padding: 40px;
            overflow: hidden;
            position: relative;
        }

        .video-placeholder video {
            width: 100%;
            height: 100%;
            object-fit: cover;
            position: absolute;
            top: 0;
            left: 0;
        }

        .video-placeholder p {
            position: absolute;
            z-index: 10;
            background: rgba(255, 255, 255, 0.7);
            padding: 10px 20px;
            border-radius: 8px;
        }

        .references {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 20px;
            margin-top: 30px;
        }

        .reference-card {
            background: white;
            padding: 20px;
            border-radius: 8px;
            box-shadow: 0 2px 4px rgba(0,0,0,0.1);
        }

        .reference-card h3 {
            color: #764ba2;
            margin-bottom: 10px;
            font-size: 1.1rem;
        }

        .reference-card a {
            color: #667eea;
            text-decoration: none;
            word-break: break-all;
        }

        .reference-card a:hover {
            text-decoration: underline;
        }

        .contact {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            padding: 60px 20px;
            text-align: center;
        }

        .contact h2 {
            color: white;
        }

        .contact-info {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 40px;
            margin-top: 30px;
            font-size: 1.1rem;
        }

        .contact-item {
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .contact-item strong {
            display: block;
            margin-bottom: 5px;
        }

        .contact-item a {
            color: white;
            text-decoration: none;
        }

        .contact-item a:hover {
            text-decoration: underline;
        }

        /* Nové štýly pre galériu */
        .filter-button {
            padding: 8px 15px;
            border-radius: 9999px; /* Rounded-full */
            border: 2px solid #667eea;
            color: #667eea;
            background-color: white;
            font-weight: 600;
            margin: 5px;
            cursor: pointer;
            transition: all 0.2s ease;
        }

        .filter-button.active {
            background-color: #667eea;
            color: white;
            box-shadow: 0 4px 6px rgba(102, 126, 234, 0.3);
        }

        .filter-button:hover:not(.active) {
            background-color: #e0e7ff;
        }

        .photo-card {
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            position: relative;
            background-color: #fff;
            display: flex;
            flex-direction: column;
            min-height: 250px; /* Zabezpečí, že karty majú minimálnu výšku */
        }

        .photo-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 25px rgba(0, 0, 0, 0.2);
        }

        .photo-placeholder {
            width: 100%;
            aspect-ratio: 4/3;
            object-fit: cover;
            background-color: #f1f1f1;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.9rem;
            font-weight: bold;
            color: #aaa;
            border-bottom: 3px solid #667eea;
        }

        .photo-info {
            padding: 15px;
        }

        .photo-info h4 {
            font-size: 1.1rem;
            color: #764ba2;
            margin-bottom: 5px;
        }

        .photo-info p {
            font-size: 0.9rem;
            color: #555;
        }

        /* RESPONZÍVNE ÚPRAVY */
        @media (max-width: 768px) {
            .hero h1 { font-size: 1.8rem; }
            .hero p { font-size: 1rem; }
            h2 { font-size: 1.5rem; }
            .services-grid { grid-template-columns: 1fr; }
            .stat-number { font-size: 2rem; }
            .team-photo { max-width: 280px; }
            .references { grid-template-columns: 1fr; }
        }

        @media (min-width: 992px) {
            .team-section {
                flex-direction: row;
                justify-content: center;
                align-items: flex-start;
                gap: 50px;
                text-align: left;
            }
            .team-photo {
                max-width: 300px;
                flex-shrink: 0;
                width: 100%;
            }
            .team-text {
                max-width: 600px;
                text-align: left;
            }
        }

        h2 {
            font-size: 2.5rem !important;
        }

        p {
            margin-bottom: 10px !important;
        }


        /* Nové štýly pre jazykový prepínač */

.language-switcher {
    background-color: #f8f9fa; /* Svetlé pozadie */
    padding: 10px 0;
    border-bottom: 1px solid #e2e8f0;
}

.lang-button {
    padding: 5px 10px;
    margin-left: 5px;
    border: 1px solid #667eea;
    background-color: transparent;
    color: #667eea;
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.lang-button.active {
    background-color: #667eea;
    color: white;
    border-color: #667eea;
}

.lang-button:hover:not(.active) {
    background-color: #e0e7ff;
}

/* Úprava kontajnera pre zarovnanie doprava */
.language-switcher .container {
    padding: 0 20px; 
}