/* Splošni slog */
body, html {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    scroll-behavior: smooth;
}

/* Glavni del */
.hero {
    background-image: url('hero.jpg');
    height: 100vh;
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
}

.hero h1 {
    font-size: 4em;
    margin: 0;
}

.hero h2 {
    font-size: 2em;
    margin: 0;
}

/* Parallax sekcije */
.parallax {
    min-height: 400px;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.parallax1 { background-image: url('parallax1.jpg'); }
.parallax2 { background-image: url('parallax2.jpg'); }
.parallax3 { background-image: url('parallax3.jpg'); }
.parallax4 { background-image: url('parallax4.jpg'); }
.parallax5 { background-image: url('parallax5.jpg'); }

/* Vsebina sekcij */
.content {
    padding: 50px;
    text-align: center;
}

.content h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
}

.content p, .content ul {
    font-size: 1.2em;
    line-height: 1.6em;
    margin: 0 auto;
    max-width: 800px;
}

.gallery-images {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.gallery-images img {
    width: 30%;
    border-radius: 10px;
}
