/* Glavni sadržaj */

h2 {
    text-align: center;
}

.content {
    padding: 20px;
    text-align: center;
    background-color: Cornsilk;
    margin-bottom: 20px;
}

.content h2 {
    font-family: 'Dancing Script', cursive;
    font-size: 2.5rem;
    color: firebrick;
    text-shadow: 2px 2px 2px lightgray;
    margin-bottom: 20px;
}

.content p {
    font-family: 'Gentium Basic', serif;
    font-size: 1.2rem;
    color: #333;
    line-height: 1.8;
}

/* Galerija */
.gallery-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 20px auto;
    padding: 10px;
    width: 90%;
}

.gallery {
    border: 1px solid #ddd;
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    text-align: center;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.gallery img {
    width: 100%;
    height: 430px;
    object-fit: cover;
    border-bottom: 1px solid #ddd;
}



.gallery .desc {
    padding: 10px;
    font-family: 'Marck Script', cursive;
    font-size: 1.2rem;
    color: firebrick;
    text-shadow: 1px 1px 1px lightgray;
}

/* Responzivnost */
@media screen and (max-width: 768px) {
    .content h2 {
        font-size: 2rem;
    }

    .content p {
        font-size: 1rem;
    }

    .gallery-container {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }

    .gallery img {
        height: auto;
    }
}
