﻿
body
{
}

.gdpr {
    font-family: 'Poppins', sans-serif;
    margin: 0px auto;
    width: 90%;
    
    background: #fff;
    
}

    /* Nadpisy */
    main h1, main h2, main h3 {
        text-align: center;
        margin-bottom: 20px;
        font-weight: 600;
        color: #222;
    }

main h1 {
    font-family:Arial;
    font-size: clamp(3rem, 2.8vw, 3.6rem);
    margin: 0 auto 30px auto; /* vystředí blok */
    padding-bottom: 5px;
    position: relative;
    display: table; /* šířka podle obsahu, ale chová se jako blok */
    line-height: 1.2;
}

        main h1::after {
            content: "";
            position: absolute;
            left: 50%;
            bottom: -10px;
            height: 5px;
            width: 100%; /* přesně podle délky textu */
            background-color: #4CAF50;
            transform: translateX(-50%) scaleX(0);
            transform-origin: center;
            animation: underlineGrow 0.8s ease-out forwards;
        }


@keyframes underlineGrow {
    to {
        transform: translateX(-50%) scaleX(1);
    }
}



main h2 {
    font-size: clamp(1.7rem, 2vw, 2rem);
    line-height: 1.2;
}

main h3 {
    font-size: clamp(1.2rem, 1.6vw, 1.4rem);
    line-height: 1.2;
}

/*main h4 {
    font-size: 1.1rem;
    color: #334155;
    font-weight: 600;
    line-height: 1.2;
}*/


main p {
    font-size: 1.3rem;
    margin-bottom: 20px;
    text-align: justify;
    line-height: 1.2;
}

/* Galerie */
.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3px;
    margin-top: 30px;
    margin-bottom:30px;
}

    .gallery img {
        width: 90%;
        height: auto;
        border-radius: 8px;
        object-fit: cover;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

        .gallery img:hover {
            transform: scale(1.2);
            box-shadow: 0 8px 20px rgba(0,0,0,0.2);
        }









/*.soutez{
    margin-top:30px;
    margin-bottom:30px;
    font-family:Arial, Helvetica, sans-serif;
    font-size: 15px;
    padding:5px 3px;
    width: 200px;
    height: 30px;


}*/
/* Responsivita */
@media (max-width: 768px) {
    main {
        padding: 20px;
    }

        main h1 {
            font-size: 2rem;
        }
}



@media (prefers-color-scheme: dark) {
    html {
        color: #e4e4e4;
        background-color: #121212;
    }

    main {
        background: linear-gradient(180deg, #0f172a, #1e293b);
        color: #e5e7eb;
        box-shadow: 0 4px 16px rgba(0,0,0,0.4);
    }


        main h1, h2, h3, h4, p {
            color: #ffffff;
        }
}