@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700&family=Roboto:wght@300;400;700&display=swap');

        :root {
            --primary-color: #5d3a95; /* Fialová */
            --secondary-color: #e5c3a6; /* Púdrovo ružová */
            --accent-color: #f7a233; /* Oranžová */
            --dark-color: #333;
            --light-color: #f4f4f9;
        }

        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        body {
            font-family: 'Roboto', sans-serif;
            line-height: 1.6;
            background-color: var(--light-color);
            color: var(--dark-color);
            padding-top: 80px;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
        }
        
        header {
            background-color: #fff;
            position: fixed;
            width: 100%;
            top: 0;
            left: 0;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        
        header .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 2rem;
        }
        
        header .logo {
            font-size: 1.8rem;
            font-weight: bold;
            color: var(--primary-color);
            text-decoration: none;
        }
        
        .nav-links {
            list-style: none;
            display: flex;
        }
        
        .nav-links li {
            margin-left: 2rem;
        }
        
        .nav-links a {
            font-weight: bold;
            text-transform: uppercase;
            text-decoration: none;
            color: var(--primary-color);
            transition: color 0.3s ease;
        }
        
        .nav-links a:hover {
            color: var(--accent-color);
        }
        
        .burger-menu {
            display: none;
            flex-direction: column;
            cursor: pointer;
        }
        
        .burger-menu span {
            width: 25px;
            height: 3px;
            background-color: var(--primary-color);
            margin: 4px 0;
            transition: all 0.3s ease;
        }
        
        @media (max-width: 768px) {
            .nav-links {
                position: fixed;
                top: 0;
                right: -100%;
                width: 70%;
                height: 100vh;
                background-color: #fff;
                flex-direction: column;
                justify-content: center;
                align-items: center;
                transition: right 0.5s ease;
                box-shadow: -2px 0 10px rgba(0,0,0,0.1);
            }
        
            .nav-links.active {
                right: 0;
            }
        
            .nav-links li {
                margin: 2rem 0;
            }
        
            .burger-menu {
                display: flex;
            }
        }
        
        h1, h2, h3 {
            font-family: 'Playfair Display', serif;
            color: var(--primary-color);
            margin-bottom: 1rem;
        }
        
        h1 {
            font-size: 2.5rem;
            text-align: center;
            margin-bottom: 2rem;
        }

        h2 {
            font-size: 2rem;
            margin-top: 2rem;
        }
        
        .content {
            padding: 4rem 0;
            background-color: #fff;
            min-height: 80vh;
        }
        
        .footer {
            background-color: var(--dark-color);
            color: #fff;
            padding: 2rem 0;
            text-align: center;
        }
        
        .footer .footer-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .footer .footer-links a,
        .footer .footer-links span {
            color: #fff;
            margin: 0 1rem;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        .footer .footer-links a:hover {
            color: var(--secondary-color);
        }
        
        @media (max-width: 768px) {
            .footer .footer-content {
                flex-direction: column;
                gap: 1rem;
            }
        }
        
        .cookie-banner {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            background-color: rgba(51, 51, 51, 0.95);
            color: #fff;
            padding: 1.5rem 2rem;
            text-align: center;
            box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
            z-index: 2000;
            display: none;
        }
        
        .cookie-banner.show {
            display: block;
        }

        .cookie-banner p {
            margin: 0 0 1rem;
        }

        .cookie-banner .btn {
            background-color: var(--secondary-color);
            color: var(--dark-color);
            padding: 0.7rem 1.5rem;
            text-transform: uppercase;
            font-weight: bold;
            border-radius: 5px;
            transition: background-color 0.3s ease;
            border: none;
            cursor: pointer;
        }
        
        .cookie-banner .btn:hover {
            background-color: var(--accent-color);
        }

