        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: Arial, sans-serif;
            background-color: #f5f5f5;
            line-height: 1.6;
            overflow-x: hidden;
        }

        /* Header */
        .header {
            background: linear-gradient(135deg, #44AA55, #66BB66);
            padding: 15px 0;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        }

        .header-content {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 20px;
        }

        .logo-section {
            display: flex;
            flex-direction: row;
            align-items: center;
            color: white;
        }

        .logo {
            width: 50px;
            height: 50px;
            background-color: rgba(255,255,255,0.2);
            border-radius: 50%;
            margin-right: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0; /* Zabrání zmenšení loga */
            /*border: 2px solid rgba(255,255,255,0.3);*/
        }

        .site-title {
            font-size: 30px;
            font-weight: bold;
            white-space: nowrap; /* Zabrání zalomení textu na více řádků */            
        }

        .nav-buttons {
            display: flex;
            gap: 10px;
        }

        .nav-btn {
            padding: 10px 25px;
            border: none;
            border-radius: 25px;
            font-size: 16px;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .nav-btn.home {
            background-color: rgba(255,255,255,0.2);
            color: #008833;
            border: 2px solid rgba(255,255,255,0.3);
            text-decoration:none;
        }

        .nav-btn.archive {
            background-color: rgba(255,255,255,0.9);
            color: #33CC33;
            text-decoration:none;
        }

        .nav-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(0,0,0,0.2);
        }

        /* Main Content */
        .container {
            max-width: 1200px;
            margin: 30px auto;
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 30px;
            padding: 0 20px;
        }

        /* Content sections */
        .content-section {
            background: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            margin-bottom: 20px;
        }

        .section-header {
            background: linear-gradient(135deg, #44AA55, #66BB66);
            color: white;
            text-align: center;
            padding: 15px;
            font-size: 36px;
            font-weight: bold;
        }

        .section-subheader {
            background: #cceecc;
            border-top-left-radius: 8px;
            border-top-right-radius: 8px;
            color: #a63113;
            text-align: center;
            padding: 12px;
            font-size: 20px;
            font-weight: bold;
            border-bottom: 3px solid #44AA55;
            margin-top: 1em;
        }

        .highlight {
            background: #cceecc;
            padding: 25px;
            border-left: 4px solid #0E7A3D;
            margin: 30px 0;
            border-radius: 4px;
        }

        .section-content {
            padding: 20px;
        }

        .event-item {
            margin-bottom: 25px;
            padding: 15px;
            padding-bottom: 20px;
            background: #fafafa;
            border-radius: 5px;
            border-left: 4px solid #44AA55;
            box-shadow: 0 1px 3px rgba(0,0,0,0.05);
        }

        .event-item:last-child {
            margin-bottom: 0;
        }
        .event-title {
            color: #44AA55;
            font-weight: bold;
            font-size: 18px;
            margin-bottom: 8px;
        }

        .event-description {
            color: #666;
            margin-left: 20px;
            line-height: 1.5;
        }

        .contact-info {
            background: #cceecc;
            padding: 15px;
            border-radius: 5px;
            margin-top: 20px;
        }

        .contact-info a {
            color: #44AA55;
            text-decoration: none;
        }

        .contact-info a:hover {
            text-decoration: underline;
        }

        /* Sidebar */
        .sidebar {
            background: linear-gradient(135deg, #44AA55, #66BB66);
            border-radius: 8px;
            padding: 20px;
            color: white;
            height: fit-content;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }

        .sidebar-title {
            text-align: center;
            font-size: 24px;
            font-weight: bold;
            margin-bottom: 15px;
            color: white;
        }

        .sidebar-logo {
            width: 200px;
            height: 200px;
            background-color: rgba(255,255,255,0.1);
            border-radius: 50%;
            margin: 20px auto;
            display: flex;
            align-items: center;
            justify-content: center;
            /*border: 3px solid rgba(255,255,255,0.2);*/
        }

        .contact-details {
            text-align: center;
            margin-top: 20px;
            font-size: 16px;
        }

        .contact-details a {
            text-decoration: none;
            font-weight: bold;
            color: white;
        }

        .wine-image {
            width: 100%;
            height: 100%;
            background: #fafafa;
            border-radius: 8px;
            margin-top: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 18px;
        }
        .wine-image img {
            max-width: 100%;
            height: auto;
            display: block;
        }        

/* Responsive */
/* Pro tablety a menší - sidebar pod obsah */
@media (max-width: 1024px) {
    .container {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .sidebar {
        order: 2; /* Sidebar se přesune dolů */
    }
}

/* Pro tablety - mírné úpravy */
@media (max-width: 900px) {
    .site-title {
        font-size: 24px;
    }
    
    .section-header {
        font-size: 32px;
    }
    
    .sidebar-logo {
        width: 180px;
        height: 180px;
    }
}

/* Pro mobily - větší úpravy */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 15px;
    }
    
    .nav-buttons {
        width: 100%;
        justify-content: center;
    }
    
    .site-title {
        font-size: 22px;
        text-align: center;
    }
    
    .logo {
        width: 40px;
        height: 40px;
    }
    
    .nav-btn {
        padding: 8px 20px;
        font-size: 14px;
    }
    
    .section-header {
        font-size: 28px;
        padding: 12px;
    }
    
    .section-subheader {
        font-size: 18px;
        padding: 10px;
    }
    
    .event-title {
        font-size: 16px;
    }
    
    .event-description {
        margin-left: 10px;
        font-size: 14px;
    }
    
    .section-content {
        padding: 15px;
    }
    
    .sidebar-logo {
        width: 150px;
        height: 150px;
    }
    
    .sidebar {
        padding: 15px;
    }
    
    .sidebar-title {
        font-size: 18px;
    }
    
    .contact-details {
        font-size: 14px;
    }
    .wine-image {
        margin-top: 15px;
    }
    
    .event-item ul {
        margin-left: 10px;
        padding-left: 15px;
    }
}

/* Pro velmi malé mobily */
@media (max-width: 480px) {
    .header-content {
        padding: 0 10px;
    }
    
    .logo-section {
        flex-direction: row; /* Zůstane vedle sebe */
    }
    
    .site-title {
        font-size: 16px; /* Ještě menší pro mobily */
        white-space: normal; /* Na mobilech může zalamovat */
        line-height: 1.2;
    }
    
    .logo {
        width: 35px;
        height: 35px;
        margin-right: 10px;
    }
    
    .nav-btn {
        padding: 6px 15px;
        font-size: 13px;
    }
    
    .section-header {
        font-size: 24px;
    }
    
    .section-subheader {
        font-size: 16px;
    }
    
    .sidebar-logo {
        width: 120px;
        height: 120px;
    }
    
    .container {
        padding: 0 10px;
        margin: 20px auto;
    }
}

/* Pro extrémně malé displeje */
@media (max-width: 360px) {
    .site-title {
        font-size: 14px;
    }
    
    .logo {
        width: 30px;
        height: 30px;
    }
}