* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

@font-face {
    font-family: 'Poppins';
    font-weight: 300;
    src: url('/fonts/Poppins-Light.woff2') format('woff2');
}
@font-face {
    font-family: 'Poppins';
    font-weight: 400;
    src: url('/fonts/Poppins-Regular.woff2') format('woff2');
}
@font-face {
    font-family: 'Poppins';
    font-weight: 600;
    src: url('/fonts/Poppins-SemiBold.woff2') format('woff2');
}

body {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    background-color: #f9f9f9;
    color: #222;
    line-height: 1.6;
}

h1 {
    text-align: center;
    font-size: 2.4rem;
    margin: 80px 0 50px 0;
    font-weight: 600;
}

a {
    text-decoration: none;
    color: #0056b3;
    transition: all 0.2s ease-in-out;
}

a:hover {
    text-decoration: underline;
    color: #003d80;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 12px;
}
::-webkit-scrollbar-track {
    background: #e0e0e0;
}
::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 6px;
}
::-webkit-scrollbar-thumb:hover {
    background: #555;
}

/* Obsah */

#Logo1 img{
    display: block;
    margin: 0 auto;
    margin-bottom: 50px;
    
    /* Start animace */
    opacity: 0;
    transform: scale(0.9);

    animation: logoFadeZoom 2.8s ease forwards;
}

/* Fade + zoom */
@keyframes logoFadeZoom {
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Shine efekt po načtení */
#Logo1 img::after {
    content: "";
    position: absolute;
}

.content {
    max-width: 900px;
    margin: 0 auto 60px auto;
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 0 15px rgba(0,0,0,0.06);
    
    /* animace start */
    opacity: 0;
    transform: translateY(40px);
    filter: blur(6px);

    animation: contentReveal 1.4s ease forwards;
    animation-delay: 0.6s;
}

/* Reveal efekt */
@keyframes contentReveal {
    to {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
    }
}

.content:hover {
    transform: translateY(-6px);
    box-shadow: 0 0 25px rgba(0,0,0,0.12);
    transition: all 0.35s ease;
}

.content p {
    font-size: 1.125rem;
    margin-bottom: 24px;
    text-align: left;
}

#mail-link-text {
    text-decoration: underline;
    font-weight: 500;
}

#sources {
    margin-top: 40px;
}

#sources strong {
    display: block;
    font-size: 1.3rem;
    margin-bottom: 15px;
}

#sources ul {
    padding-left: 25px;
    list-style: disc;
}

#sources ul li {
    margin-bottom: 12px;
}

#sources ul li a {
    font-size: 1.05rem;
}

/* Paticka */
footer {
    text-align: center;
    padding: 20px;
    background-color: #111;
    color: #ccc;
    font-size: 0.9rem;
    margin-top: 60px;
}

.mobile-break {
    display: none;
}

/* Mobilní zalomení */
@media (max-width: 480px) {
    .mobile-break {
        display: block;
    }
}

/* Mobilní verze */
@media (max-width: 620px) {
    #Logo1 img{
        width: 150px;
        height: 150px;
    }
    h1 {
        font-size: 1.8rem;
        margin: 50px 0 40px 0;
    }

    .content {
        padding: 20px;
    }

    .content p {
        font-size: 1rem;
    }

    #sources strong,
    #sources ul li a {
        font-size: 1rem;
    }

    footer {
        font-size: 0.75rem;
    }
}
