html, body {
    max-width: 100%;
    overflow-x: hidden;
}



/* Resetiranje */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Cormorant Garamond', serif;
    background-color: #0e0e0e;
    color: #f2f2f2;
    line-height: 1.6;
}

/* Hero sekcija */
.hero {
    height: 35vh;
    background-color: #f7f9e9;
    /*background: url('../img/header.png') center/cover no-repeat;*/
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #f7f9e9;
    position: relative;
}
.hero-audio {
    height: 40vh;
    background: url('../img/boda_color paleta.png') center/contain no-repeat;
    display: flex;
    background-color: #f7f9e9;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    position: relative;
    margin-bottom: 0;
}
.hero-content {
    text-align: center;
    padding: 40px 20px;
    }
.hero-content img.hero-logo {
    width: 260%; /* Povećanje loga za 30% */
    max-width: 700px; /* Postavi maksimalnu širinu ako želiš kontrolu */
    height: auto;
    
    align-items: center;
    justify-content: center;
}

nav {
    position: absolute;
    top: 20px;
    display: flex;
    gap: 50px; /* veći razmak između gumba */
    justify-content: center;
    width: 100%;
    font-size: 18px;
}

nav a {
    display: inline-block;
    padding: 8px 18px; /* malo veći padding za bolji izgled */
    margin: 0 5px;
    color: black; /* black tekst */
    border: 2px solid black; /* black okvir */
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    background-color: transparent; /* transparentna pozadina */
    transition: all 0.3s ease; /* glatka animacija za hover */
}

nav a:hover {
    background-color: #aeb79d; /* Pozadina postaje crna */
    color: white; /* Tekst ostaje bijel */
}

/* Sekcije */
.section {
    padding: 60px 20px;
    background-color: #aeb79d;
}

.section:nth-child(even) {
    background-color: #121212;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Galerija */

#galerija {
    background-color: #f7f9e9; /* ili što god želiš */
    padding: 60px 20px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
   
    justify-content: center; /* Dodaj ovo da centriramo stavke */
}



.gallery-item {
    text-align: center;
}

.gallery-image-wrapper {
    width: 350px;
    height: 350px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 20px;
    background-color: #111; /* tamna pozadina ako slika ne ispuni sve */
}

.gallery-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    
    border-radius: 20px;
    transition: transform 0.4s ease;
}

.gallery-image-wrapper img:hover {
    transform: scale(1.05);
}


.gallery-title {
    margin: 15px 0 10px;
    font-size: 22px;
    font-weight: 600;
    color: #ffffff;
    font-family: 'League Spartan', sans-serif;
}

.img-pomak-dolje {
    object-position: center 85%; /* default je center 50%, pa ga pomaknemo dolje */
}
.gallery-image-wrapper img.img-pomak-dolje {
    object-position: center 25% !important;
}
.img-pomak-gore {
    object-position: center 30%; /* default je center 50%, pa ga pomaknemo dolje */
}
.gallery-image-wrapper img.img-pomak-gore {
    object-position: center 30% !important;
}

/* Responsive dodatno */
@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-image-wrapper {
        width: 300px;
        height: 300px;
    }
}

@media (max-width: 480px) {
    .gallery-image-wrapper {
        width: 250px;
        height: 250px;
    }
}

/* AUDIO GUEST BOOK GALERIJA */

.image-gallery {
    display: flex;
    gap: 30px;
    justify-content: center;
    margin-top: 40px;
    flex-wrap: nowrap;
}

.image-gallery div {
    text-align: center;
    max-width: 450px;
}

.image-gallery img {
    width: 100%;
    max-width: 450px;
    height: auto;
    aspect-ratio: 4/3;
    object-fit: cover;
    cursor: pointer;
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.image-gallery img:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(0,0,0,0.5);
}

.image-caption {
    margin-top: 15px;
    font-size: 17px;
    line-height: 1.5;
    color: #ddd;
}

.image-caption strong {
    display: block;
    margin-bottom: 8px;
    font-size: 18px;
    color: #fff;
}

/* ZOOM OVERLAY */
.zoom-overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.9);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.zoom-overlay img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 15px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.8);
}

.zoom-overlay.show {
    display: flex;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .image-gallery {
        flex-wrap: wrap;
        gap: 20px;
    }

    .image-gallery img {
        max-width: 100%;
    }

    .image-caption {
        font-size: 16px;
    }
}

.gallery-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/*.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s;
}
*/
.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-title {
    font-family: 'League Spartan', sans-serif !important;
    color: black;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 10px;
    text-align: center;
}

.btn-saznaj-vise {
    font-family: 'Montserrat', sans-serif !important;
    display: inline-block;
    margin-top: 10px;
    padding: 10px 20px;
    background: none;
    color: black;
    font-weight: 600;
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s ease;
}

.btn-saznaj-vise:hover {
    font-size: 20px;
}

/* Kontakt sekcija */
#kontakt {
    background: url('../img/video.png') center/cover no-repeat;
    background-color: #aeb79d; /* fallback ako slika ne učita */
    padding: 60px 20px;
    position: relative;
    color: black;
}


.kontakt-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
    background: none;
    max-width: 1200px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
}

.kontakt-forma {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 40px;
    background: none;
}

.kontakt-form input,
.kontakt-form textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 15px;
    border: 2px solid #333;
    border-radius: 8px;
    background: #fff;
    color: #333;
    font-size: 16px;
    font-family: 'Cormorant Garamond', serif;

}

.kontakt-form button {
    padding: 12px 25px;
    font-size: 16px;
    font-weight: 600;
    color: #333;
    background: none;
    border: 2px solid #333;
    border-radius: 30px;
    cursor: pointer;
    transition: 0.3s;
}

.kontakt-form button:hover {
    background: #333;
    color: #fff;
}

.kontakt-slika {
    display: flex;
    align-items: center;
    justify-content: center;
}

.kontakt-slika img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Footer */
.footer {
    background: #aeb79d;
    color: black;
    padding: 7px 7px 7px;
    text-align: center;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-left, .footer-right {
    flex: 1;
    min-width: 250px;
    font-family: 'League Spartan', sans-serif;
    text-align: left;
}
.footer-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end; /* 🔥 Pomakni sadržaj skroz desno */
    text-align: right;     /* 🔥 Poravnaj tekst udesno */
}

.footer-left h3, .footer-right h3 {
    margin-top: 10px;
    margin-bottom: 10px;
    font-family: 'League Spartan', sans-serif;
    font-size: 18px;
}

.contact-item {
    display: flex;
    align-items: center;
    font-family: 'League Spartan', sans-serif;
    margin-bottom: 8px;
}

.contact-icon {
    width: 22px;
    height: 22px;
    margin-right: 10px;
}

.social-icons {
    display: flex;
    justify-content: flex-start; /* 🔥 Ikone idu ulijevo */
    gap: 20px;
    margin-top: 10px;
}


.social-icon {
    width: 32px;
    height: 32px;
    transition: transform 0.3s;
}

.social-icon:hover {
    transform: scale(1.2);
}

.footer-bottom {
    margin-top: 0px;
    font-size: 14px;
    color: #333;
}

@media (max-width: 768px) {
    nav {
        font-size: 16px;
    }

    .hero-content img.hero-logo {
        width: 100%;
    }

    .kontakt-wrapper {
        grid-template-columns: 1fr;
    }
}
.kontakt-tekst {
    text-align: center;
    margin-bottom: 40px;
    animation: fadeIn 2s ease-in-out forwards;
    font-family: 'League Spartan', sans-serif;
    opacity: 0;

}

.kontakt-tekst h2 {
    font-size: 32px;
    margin-bottom: 10px;
    color: #1a1a1a;
    font-weight: 700;
}

.kontakt-tekst p {
    font-size: 18px;
    color: #333;
    max-width: 600px;
    margin: 0 auto;
}

/* Animacija za fade-in efekt */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.faq-hover {
    margin-top: 0px;
    font-family: 'League Spartan', sans-serif;
}

.faq-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    margin-top: 30px;
}

.faq-kartica {
    background-color: #f7f9e9;
    border-radius: 14px;
    padding: 30px;
    max-width: 350px;
    width: 100%;
    text-align: center;
    transition: background-color 0.3s ease;
    cursor: pointer;
    position: relative;
}

.faq-naslov {
    font-size: 18px;
    font-weight: 600;
    font-family: 'League Spartan', sans-serif;
    color: #000; /* promijeni po želji */
}

.faq-odgovor {
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: opacity 0.4s ease, max-height 0.4s ease;
    margin-top: 15px;
    font-size: 13px;
    color: #000;
    font-family: 'Montserrat', sans-serif;

}

.faq-odgovor {
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: opacity 0.4s ease, max-height 0.4s ease;
    margin-top: 15px;
    font-size: 13px;
    color: #000;
    font-family: 'Montserrat', sans-serif;
}

/* Kad je kliknuto (dodana klasa) */
.faq-kartica.otvori .faq-odgovor {
    opacity: 1;
    max-height: 200px;
}
.audio-book {
    background-color: #f7f9e9 !important;;
    color: #1a1a1a; /* ako želiš da tekst bude taman uz svijetlu pozadinu */
}

.audio-book .gallery-title span {
    color: #333; /* lakša čitljivost unutar svijetle pozadine */
}

@font-face {
    font-family: 'Giaza';
    src: url('assets/fonts/Giaza.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Dream Avenue'; /* ime koje ti koristiš u CSS-u */
    src: url('../fonts/Dream-Avenue.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}


.momento-logo {
    font-family: 'Giaza', serif;
    font-size: 48px;
    letter-spacing: -0.107em;
    color: black;
    text-align: center;
    margin-top: 20px;
}


.audio-nav a {
    color: black !important;
    border-color: black !important;
}

.audio-nav a:hover {
    background-color: #ddd;
    color: black !important;
}


.uspomene-sekcija {
    background: url('../img/video.png') center/cover no-repeat;
    color: white;
    padding: 100px 20px;
    min-height: 600px;
    position: relative;
    text-align: center;
}

.uspomene-sekcija h2 {
    font-size: 36px;
    font-family: 'Cormorant Garamond', sans-serif;
    font-weight: 700;
    text-shadow: 1px 1px 5px rgba(0,0,0,0.7);
}


.uspomene-sekcija .container {
    position: relative;
    z-index: 2;
}

.kontakt-opis {
    font-family: 'Montserrat', sans-serif !important;
    font-size: 10px;
    color: #333;
}
.section1 {
    padding: 60px 20px;
    background-color: #f7f9e9;
}




.qr-hero {
    height: 40vh;
    background: url('../img/qrcode.png') center/contain no-repeat;
    display: flex;
    background-color: #f7f9e9;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    position: relative;
    margin-bottom: 0;
}


.qr-hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.qr-logo {
    max-width: 600px;
    width: 100%;
    height: 40vh;
    margin-bottom: 3.5cm; /* razmak koji želiš */
}

.momento-naslov {
    font-family: 'League Spartan', sans-serif;
    font-size: 26px;
    font-weight: 700;
    color: #aeb79d;
    margin: 0;
    text-align: center;
}

.momento-info-box {
    width: 580.1px;
    height: 78px;
    background-color: #aeb79d;
    color: white;
    border-radius: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    padding: 0 20px;
    margin-top: 30px;
}

.qr-nav a {
    color: black !important;
    border-color: black !important;
}

.qr-nav a:hover {
    background-color: #ddd;
    color: black !important;
}

.gallery-section {
    background-color: #f7f9e9;
    padding: 20px 20px 60px 20px;
}

.gallery-container {
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    align-items: flex-start;
}

.gallery-item {
    text-align: center;
    max-width: 350px;
    width: 100%;
}

.gallery-image-wrapper {
    width: 100%;
    aspect-ratio: 4/3;
    overflow: hidden;
    border-radius: 12px;
    background-color: #ddd;
}

.gallery-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.gallery-image-wrapper img:hover {
    transform: scale(1.05);
}

.gallery-title {
    margin-top: 15px;
    font-family: 'League Spartan', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
}

.gallery-title span {
    display: block;
    font-weight: 400;
    font-size: 16px;
    margin-top: 5px;
}
.momento-extra-text {
    text-align: center;
    margin-top: 60px;
    margin-bottom: 40px;
}

.momento-title-with-line {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.momento-spartan {
    font-family: 'League Spartan', sans-serif;
    font-size: 26px;
    font-weight: 700;
    color: #222;
    white-space: nowrap;

}
.line {
    flex: 1;
    height: 2px;
    background-color: #222;
    max-width: 120px;
}

.momento-benefits-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    margin-top: 40px;
    padding: 0 20px;
}

.benefit-box {
    flex: 1 1 250px;
    max-width: 300px;
    text-align: center;
}

.benefit-title {
    font-family: 'League Spartan', sans-serif;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #222;
    text-transform: uppercase;
}

.benefit-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    line-height: 1.5;
    color: #555;
}
.momento-akril {
    padding: 60px 20px;
    background: url('../img/gosti.png') center/cover no-repeat;
    background-color: #aeb79d; /* fallback ako slika ne učita */
    color: #fff;
}

.momento-akril-naslov {
    font-family: 'League Spartan', sans-serif;
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    color: #222;
    text-align: left;
}

.momento-akril-tekst {
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    line-height: 1;
    color: #444;
    margin-bottom: 40px;
    text-align: left;
    max-width: 800px;
}

.momento-akril-slike {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: flex-start;
}

.momento-akril-slike div {
    width: 350px;
    height: 350px;
    overflow: hidden;
    border-radius: 12px;
}

.momento-akril-slike img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    transition: transform 0.4s ease;
}

/* Hover zoom efekt */
.momento-akril-slike a:hover img {
    transform: scale(1.1);
    cursor: zoom-in;
}

@media (max-width: 768px) {
    nav {
        flex-direction: row;
        gap: 15px;
        top: 10px;
        font-size: 14px;
        justify-content: center;
        flex-wrap: wrap;
        padding: 0 10px;
    }

    nav a {
        padding: 6px 12px;
        font-size: 13px;
        border-width: 1px;
    }
}

@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 30px;
    }

    .footer-left, .footer-right {
        align-items: center;
        text-align: center;
    }

    .footer-right {
        align-items: center;
    }

    .social-icons {
        justify-content: center;
    }
}


@media (max-width: 768px) {
    .footer-content {
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
    }

    .footer-left, .footer-right {
        width: 100% !important;
        text-align: center !important;
        align-items: center !important;
        display: flex !important;
        flex-direction: column !important;
        margin-bottom: 20px;
    }

    .social-icons {
        justify-content: center !important;
    }

    .contact-item {
        justify-content: center !important;
    }
}

@media (max-width: 768px) {
    .qr-hero-content img.qr-logo {
        max-width: 250px;
        margin-bottom: 2rem;
    }

    .momento-naslov {
        font-size: 18px;
        padding: 0 10px;
        text-align: center;
    }

    .momento-info-box {
        width: 90%;
        height: auto;
        font-size: 14px;
        padding: 15px 20px;
        border-radius: 40px;
        margin-top: 20px;
        line-height: 1.5;
        text-align: center;
    }
}
.kontakt-radio-box {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.kontakt-radio-naslov {
    font-weight: 600;
    font-family: 'League Spartan', sans-serif;
    font-size: 16px;
    margin-bottom: 20px;
    text-align: center;
    padding-top: 15px; /* <<< ovo spusti tekst niže */
}


.radio-label {
    display: inline-block;
    padding: 8px 16px;
    margin: 5px;
    border: 2px solid #333;
    border-radius: 6px;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    background-color: #fff;
    color: #333;
    transition: 0.3s ease;
}

.radio-label:hover {
    background-color: #eee;
}

.radio-label input[type="radio"] {
    margin-right: 8px;
    transform: scale(1.1);
}

.kontakt-proizvod-wrapper {
    margin-bottom: 20px;
}

.kontakt-label {
    display: block;
    font-family: 'League Spartan', sans-serif;
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 16px;
    color: #1a1a1a;
}

.proizvod-izbori {
    display: flex;
    gap: 10px;
     justify-content: flex-start; /* drži ih jedan pored drugoga */
    flex-wrap: wrap;
}

.proizvod-option {
    background-color: #fff;
    border: 2px solid #333;
    border-radius: 6px;
    padding: 422px 8px;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    color: #333;
    cursor: pointer;
    display: flex;
    align-items: center;
    min-width: auto; /* uklanja širenje */
    gap: 8px;
    transition: 0.3s ease;
}

.proizvod-option:hover {
    background-color: #f0f0f0;
}

.proizvod-option input[type="radio"] {
    accent-color: #333;
    width: 18px;
    height: 18px;
}
.kontakt-radio-red {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.kontakt-radio-naslov {
    font-family: 'League Spartan', sans-serif;
    font-weight: 600;
    font-size: 16px;
    white-space: nowrap;
    margin: 0;
}

.radio-opcije {
    display: flex;
    gap: 10px;
}

.radio-kutija {
    width: 160px;
    height: 50px;
    border: 2px solid #333;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    color: #333;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    cursor: pointer;
    position: relative;
    transition: background-color 0.3s, color 0.3s;
}

/* sakrij radio gumb */
.radio-kutija input[type="radio"] {
    position: absolute;
    opacity: 0;
}

/* kad je selektirano, oboji cijeli label */
.radio-kutija input[type="radio"]:checked ~ * {
    background-color: #aeb79d;
    color: white;
}

/* ALTERNATIVNO (ako ne radi iznad) */
.radio-kutija input[type="radio"]:checked + label,
.radio-kutija:has(input[type="radio"]:checked) {
    background-color: #aeb79d;
    color: white;
}

.qr-informacija-sekcija {
    padding: 1px 20px;
    background-color: #f7f9e9; /* tvoja boja */

}

.qr-informacija-wrapper {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    gap: 40px;
}

.qr-informacija-text {
    flex: 1;
    min-width: 280px;
}

.qr-informacija-text .spartan-naslov {
    font-family: 'League Spartan', sans-serif;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #333;
    line-height: 1.0;
    margin-top: 40px; /* 👈 OVO DODAJ za razmak prije naslova */
}

.qr-informacija-text .montserrat-tekst {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    color: #555;
    line-height: 1.6;
}

.qr-informacija-slika {
    flex: 1;
    text-align: center;
    min-width: 280px;
}

.qr-informacija-slika img {
    max-width: 100%;
    max-width: 300px; /* smanji sliku vizualno */
    height: auto;
    border-radius: 12px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

/* Pomakni prvi gallery-item prema gore 
.gallery-item:first-child {
    margin-top: -20px; } ili -30px ako želiš više prema gore */


/* Smanji razmak između naslova i teksta */
.gallery-title {
    line-height: 1.3;
    margin-top: 10px;
    font-size: 18px;
}

.gallery-title span {
    display: block;
    font-size: 15px;
    margin-top: 4px; /* smanji ovaj razmak */
}


.combo-naslov {
    padding-top: 60px; /* ili više/manje ovisno o razmaku koji želiš */
}

.slika-pomakni {
    margin-top: 50px;
}

@media (max-width: 600px) {
.momento-spartan {
    font-size: 18px;
    color: #222;
    line-height: 1.3;
    text-align: center;
    padding: 0 10px;
    white-space: normal;
  }
  .line {
    flex: 1;
    height: 2px;
    background-color: #222;
    max-width: 120px;
}
}

#galerija.section {
        padding-top: 1px !important;
    }

