* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

body {
    background-color: #ffffff;
}


.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;
    width: 200;
    
}

.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%;
}



.main-content {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 20px;
}


.intro {
    text-align: center;
    margin-bottom: 60px;
}

.intro h2 {
    font-size: 28px;
    margin-bottom: 15px;
    color: #c60000;
}

.intro p {
    max-width: 700px;
    margin: auto;
    color: #555;
    line-height: 1.6;
}


.services {
    display: flex;
    gap: 40px;
}

.service-box {
    flex: 1;
    padding: 35px;
    border: 1px solid #eee;
    border-top: 5px solid #c60000;
    background: #fff;
}


.service-slider {
    width: 100%;
    height: 220px;
    margin-bottom: 20px;
    background-size: cover;
    background-position: center;
    border-radius: 4px;
    transition: transform 0.4s ease;
}

.service-box:hover .service-slider {
    transform: scale(1.05);
}


.slider-meh {
    background-image: url("slike_test/3.jpg");
}

.slider-konji {
    background-image: url("slike_test/foran.webp");
}

.service-box h3 {
    font-size: 22px;
    margin-bottom: 15px;
}

.service-box p {
    color: #555;
    line-height: 1.5;
    margin-bottom: 20px;
}


.btn {
    display: inline-block;
    padding: 10px 22px;
    border: 2px solid #c60000;
    color: #c60000;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s ease;
}

.btn:hover {
    background: #c60000;
    color: #fff;
}


@media (max-width: 480px) {

    .naslov {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .nav ul {
        flex-direction: column;
        gap: 12px;
    }

    .services {
        flex-direction: column;
    }

    .service-slider {
        height: 180px;
    }
}





.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;
    color: #333;
    margin-bottom: 12px;
    position: relative;
}

.stolpec-noge h4::after {
    content: "";
    display: block;
    width: 40px;
    height: 2px;
    background: #c60000;
    margin-top: 8px;
}

.stolpec-noge p {
    color: #555;
    font-size: 14px;
    line-height: 1.6;
}


.slogan {
    font-style: italic;
    color: #777;
    margin-bottom: 12px;
}


.povezave-noge {
    list-style: none;
    padding: 0;
}

.povezave-noge li {
    margin-bottom: 10px;
}

.povezave-noge a {
    text-decoration: none;
    color: #555;
    font-size: 14px;
    transition: color 0.3s ease;
}

.povezave-noge a:hover {
    color: #c60000;
}


.kontakt-vrstica {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 6px;
}

.ikona {
    font-size: 14px;
}

.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: #fff;
    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);
    transition: transform 0.3s ease, background 0.3s ease;
}

.gumb-na-vrh:hover {
    transform: translateY(-4px);
    background: #a80000;
}


@media (max-width: 480px) {

    .vsebina-noge {
        flex-direction: column;
        gap: 35px;
    }

    .gumb-na-vrh {
        right: 15px;
    }
}


