            body {
                margin: 0;
                padding: 0;
                font-family: Arial, Helvetica, sans-serif;
                color:#0F3825
                background-color: #F5F1E3 !important;
            }
            main {
                padding-top: 180px;
                text-align: center;
                margin-left: 30px;
                margin-right: 30px;
                background-color: #F5F1E3;
                }
            .galerie {
                display: grid;
                grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
                gap: 30px;
                margin-top: 40px;
                padding-bottom: 60px;
                max-width: 1400px;
                margin-left: auto;
                margin-right: auto;
            }
            .galerie-img {
                width: 100%;
                height: 250px;
                border-radius: 15px;
                object-fit: cover;
                transition: 0.3s ease-in-out, box-shadow 0.3s ease;
                cursor: pointer;
                box-shadow: 0px 4px 10px rgba(15, 56, 37, 0.1);
            }
            .galerie-img:hover {
                transform: scale(1.05);
                box-shadow: 0px 8px 20px rgba(15, 56, 37, 0.2);
            }
            h1 {
                font-size: 60px;
                margin-top: 20px;
                margin-bottom: 40px;
                color: #0F3825;
            }
            .lightbox {
                position: fixed;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                background: rgba(0, 0, 0, 0.9);
                display: none;
                justify-content: center;
                align-items: center;
                z-index: 2000;
            }
            .lightbox img {
                max-width: 90%;
                max-height: 80vh;
                border-radius: 5px;
                border: 2px solid #F5F1E3;
            }
            .lightbox .close, .arrow {
                position: absolute;
                color: #F5F1E3; /* Místo čistě bílé naše krémová */
                background: none;
                border: none;
                cursor: pointer;
                transition: 0.2s;
                /* Pro lepší čitelnost na fotkách přidáme stín symbolům */
                text-shadow: 0px 0px 10px rgba(0,0,0,0.5);
            }
            .lightbox .close {
                position: absolute;
                top: 20px;
                right: 30px;
                font-size: 60px;
                color: #F5F1E3;
                cursor: pointer;
                background: none;
                border: none;
            }
            .arrow {
                position: absolute;
                top: 50%;
                transform: translateY(-50%);
                font-size: 60px;
                color: white;
                cursor: pointer;
                background: none;
                border: none;
                padding: 20px;
            }
            .arrow:hover, .close:hover {
                color: #1E5F3F; /* Při najetí zezelená (zpětná vazba) */
            }
            .arrow-left {
                left: 20px;
            }
            .arrow-right {
                right: 20px;
            }
            /* Responzivita pro mobilní šipky */
            @media (max-width: 768px) {
                .arrow {
                    font-size: 40px;
                    padding: 10px;
                }
                h1 { font-size: 40px; }
            }
