@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap');




body {
    font-family: "Outfit", sans-serif;
    line-height: 1.6;
    background-color: #f0f0f0;
    margin: 0;
    padding: 0;
}


header {
    background-color: #4CAF50;
    color: white;
    padding: 1em;
    text-align: center;
}

header img {
    vertical-align: middle;
    margin-right: 10px;
}

header h1 {
    display: inline;
    font-size: 1.8em;
    font-weight: bold;
}


nav {
    background-color: #333;
    color: white;
    padding: 0.5em;
}

nav ul {
    list-style-type: none;
    text-align: center;
}

nav ul li {
    display: inline;
    margin-right: 20px;
}

nav a {
    text-decoration: none;
    color: white;
    font-weight: bold;
}

nav a:hover {
    text-decoration: underline;
}


section {
    background-color: #fff;
    padding: 20px;
    margin: 20px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

section h2 {
    color: #333;
    font-size: 1.5em;
    margin-bottom: 10px;
}

section p {
    color: #666;
    line-height: 1.5;
}

section ul {
    color: #666;
    line-height: 1.5;
}


footer {
    background-color: #4CAF50;
    color: white;
    text-align: center;
    padding: 20px;
}

.footer-kontakt {
    margin-bottom: 10px;
}

.footer-kontakt a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

.footer-kontakt a:hover {
    text-decoration: underline;
}

.footer-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}

.footer-content h2 {
    font-size: 1.2em;
    color: #fff;
}


.footer-content p {
    color: #ccc;
    line-height: 1.5;
}
.info-button {
    margin-top: 10px;
    background-color: #4CAF50;
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 2em;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    float: right;
}

.info-button:hover {
    background-color: #45a049; 
}

.info-button:focus {
    outline: none; 
}

.info-button:active {
    background-color: #3e8e41; 
}
#national-parks {
    margin-top: 2em;
    text-align: center;
}

#national-parks h2 {
    color: #4CAF50;
    margin-bottom: 1em;
}

#national-parks p {
    margin-bottom: 1.5em;
}

.park-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1em;
}

.park-logos img {
    
    height: 150px;
    object-fit: cover; 
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.park-logos img:hover {
    transform: scale(1.1);
}

@media (max-width: 760px) {
    header img {
        width: 50px;
        height: 50px;
    }

    header h1 {
        font-size: 1.5em;
    }

    nav ul {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    nav ul li {
        display: block;
        margin: 0.5em 0;
    }

    .raz {
        padding: 1em;
    }

    .info-button {
        width: 100%;
        padding: 1em;
        font-size: 1.2em;
    }

    footer {
        text-align: center;
    }

    .footer-kontakt nav {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer-kontakt nav a {
        margin: 0.5em 0;
    }
    .responsive-image {
        max-width: 100%;
        height: auto;
        display: block;
        margin: 1em 0;
    }
    .info-button {
       margin-right: 15px;
       .park-logos {
        flex-direction: column;
        align-items: center;
    }

    .park-logos img {
        max-width: 80%; 
        height: auto;  
    }
    }
}