* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

body {
    background-color: #ffffff;
    color: #333;
}


.header {
    background-color: #ffffff;
    border-bottom: 3px solid #c60000;
}

.naslov {
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.ime h1 {
    font-size: 34px;
    font-weight: 800;
    color: transparent;
    -webkit-text-stroke: 2px #c60000;
    letter-spacing: 2px;
}

.ime small {
    font-size: 12px;
    color: #555;
}


.nav ul {
    list-style: none;
    display: flex;
    gap: 25px;
}

.nav a {
    text-decoration: none;
    color: #2b2b2b;
    font-weight: 600;
    position: relative;
    transition: color 0.25s ease;
}

.nav a:hover {
    color: #c60000;
}

.nav a.active {
    color: #c60000;
}


.nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 2px;
    background: #c60000;
    transition: width 0.3s ease;
}

.nav a:hover::after,
.nav a.active::after {
    width: 100%;
}



.o-nas-simple {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 20px;
}

.uvod h2 {
    font-size: 36px;
    margin-bottom: 10px;
}

.poudarek {
    color: #c60000;
    font-weight: 600;
    margin-bottom: 20px;
}

.uvod p {
    color: #555;
    line-height: 1.7;
    margin-bottom: 20px;
}

.vsebina h3 {
    margin-top: 30px;
    margin-bottom: 10px;
    font-size: 20px;
}

.vsebina p {
    color: #555;
    line-height: 1.7;
}

.vsebina ul {
    margin-left: 20px;
    margin-bottom: 20px;
}

.vsebina li {
    margin-bottom: 6px;
    color: #555;
}





@media (max-width: 768px) {
    .o-nas-simple {
        padding: 40px 15px;
    }

    .uvod h2 {
        font-size: 30px;
    }
}












.noga-strani {
    position: relative;
    background: linear-gradient(180deg, #f7f7f7 0%, #eeeeee 100%);
    border-top: 4px solid #c60000;
    margin-top: 80px;
}

.vsebina-noge {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px 50px;
    display: flex;
    gap: 40px;
}

.stolpec-noge {
    flex: 1;
}

.stolpec-noge h3 {
    font-size: 26px;
    color: #c60000;
    margin-bottom: 10px;
}

.stolpec-noge h4 {
    font-size: 18px;
    margin-bottom: 12px;
    position: relative;
}

.stolpec-noge h4::after {
    content: "";
    display: block;
    width: 40px;
    height: 2px;
    background: #c60000;
    margin-top: 8px;
}

.stolpec-noge p {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
}

.slogan {
    font-style: italic;
    color: #777;
    margin-bottom: 12px;
}

.povezave-noge {
    list-style: none;
}

.povezave-noge li {
    margin-bottom: 10px;
}

.povezave-noge a {
    text-decoration: none;
    color: #555;
}

.povezave-noge a:hover {
    color: #c60000;
}


.kontakt-vrstica {
    display: flex;
    gap: 8px;
    margin-bottom: 6px;
}

.spodnji-del-noge {
    background-color: #e5e5e5;
    text-align: center;
    padding: 15px 20px;
    font-size: 13px;
    color: #666;
}


.gumb-na-vrh {
    position: absolute;
    right: 25px;
    top: -22px;
    background: #c60000;
    color: #ffffff;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
    font-size: 18px;
    box-shadow: 0 6px 15px rgba(0,0,0,0.15);
}

.gumb-na-vrh:hover {
    background: #a80000;
}


@media (max-width: 768px) {

    .naslov {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .nav ul {
        flex-direction: column;
        gap: 12px;
    }

    .proizvajalec {
        flex-direction: column;
        text-align: center;
    }

    .proizvajalec .slika {
        width: 180px;
        height: 110px;
        margin-bottom: 20px;
    }

    .vsebina-noge {
        flex-direction: column;
        gap: 35px;
    }
}
