/* OSNOVNO */
html, body {
    height: 100%;
    margin: 0;
    padding: 0;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    display: flex;
    flex-direction: column;
}

main {
    flex: 1;
}

/* ZGORNJA VRSTICA */
.topbar {
    background-color: #FCEFB4;
    border-bottom: 2px solid #F9DC5C;
    display: flex;
    justify-content: center;
}

.topbar-card {
    margin: 1rem 0;

    width: 90%;

    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logotip img {
    width: 200px;
    padding: 0;
    max-width: 88vw;
    height: auto;
    display: block;
}

nav {
    display: flex;
    align-items: center;
}

.povezave {
    display: flex;
    gap: 3rem;
}

.povezave a {
    font-family: 'Poppins', sans-serif;

    text-decoration: none;
    color: #666;
    font-weight: bold;
    transition: all 0.3s ease;
    font-size: 1rem;
    margin-left: clamp(0, 3vw, 3);
    -webkit-tap-highlight-color: transparent;
}

.povezave a.aktiven {
    border-bottom: 2px solid black;
    color: black;
    pointer-events: none;
}

.povezave a:hover {
    color: #a8a07a;
    /*transform: scale(1.05);*/
}

.meni {
    display: none;
    cursor: pointer;
    font-size: 1.5rem;
}

/* FOOTER */
footer {
    background-color: #FCEFB4;
    width: 100%;
    border-top: 2px solid #F9DC5C;
}

.logo-footer {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 1rem 0 1rem 0;
}

.logo-footer img {
    margin-left: 1rem;
    height: 50px;
    width: auto;
    display: block;
    padding-right: 2rem;
    border-right: 0.1px solid #a8a07a;
}

.text-footer {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.text-footer p {
    font-weight: bold;
    font-size: 10px;
    margin: 0;
}

.copyright {
    margin-left: 1rem;
    font-size: 10px;
    color: #a8a07a;
}

/* DOMOV */

.dom {
    background-image: url("/img/soncnica-kontakt.jpg");
    background-size: cover;
    background-position: 10% 40%;
    background-repeat: no-repeat;
    background-attachment: fixed;

    
}

.dom .mid {
    padding: 2rem;
    margin: 1rem 2rem;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;

    margin: 0 2rem;
    text-align: center;
}

.dom .mid h1 {
    margin: 0 0 1rem 0;
}

.dom .mid p {
    margin: 0;
}

.domov-karta {
    width: 100%;
    min-height: 400px;
    display: flex;
    justify-content: center;
}

.domov {
    width: 90%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.link-soncnica {
    display: inline-block;
    text-decoration: none;
    color: #333;
}

.soncnica {
    position: relative;
    display: inline-block;
}

.soncnica img {
    display: block;
    width: 214px;
    height: auto;
    transform-origin: center;
    transition: transform 2s ease-out;
}

.soncnica:hover img {
    transform: rotate(360deg) scale(1.1);
}

.text-soncnica {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #ffffff;
    -webkit-text-stroke: 2px black;
    font-weight: bold;
    font-size: 2.5rem;
    text-align: center;
    pointer-events: none;

    width: 100%;
}

.glavni-text {
    font-family: 'Playfair Display', sans-serif;
}

.glavni-text h1 {
    margin: 0;
    font-size: 4rem;
    color: #333;
}

.glavni-text h2 {
    color: #333;
    font-style: italic;
    margin: 0;
}

.glavni-text h3 {
    color: #333;
}

.uvod {
    border-radius: 10px;
    padding: 2rem;
    margin: 1rem 2rem;
    background-color: rgba(255, 255, 255, 0.5);
    color: #dfdfdf;
    text-align: center;
}

.uvod h2 {
    color: #333;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.uvod p {
    color: #333;
    line-height: 1.8;
}

.pomoc {
    display: flex;
    justify-content: center;
    padding: 4rem;
}

.pomoc .kartica {

    flex: 1;
    background: rgba( 255, 255, 255, 0.5);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.40);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.pomoc .kartica:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.70);
}

.pomoc h3 {
    color: #333;

    margin-top: 0;
    margin-bottom: 0.8rem;
}

.pomoc p {
    color: #333;
    line-height: 1.6;
}

.o-meni-kratko {
    padding: 3rem 0;
    width: 70%;
    margin: 5rem auto;
    margin-top: 0;
    background-color: rgba( 255, 255, 255, 0.5);
    text-align: center;
    border-radius: 30px;
    display: flex;
    color: #333;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.o-meni-kratko p {
    padding: 0 3rem;
    margin: 0;
}

.o-meni-kratko a {
    margin-top: 1rem;
    text-decoration: none;
    color: #333;
}

.o-meni-kratko a:hover {
    text-decoration: underline;
}

.zakljucek {
    color: #ffffff;
    width: 90%;
    max-width: 900px;
    margin: 5rem auto;
    text-align: center;
    padding: 1rem;
    border-radius: 10px;
    background-color: rgba(0, 0, 0, 0.3);
}

.gumb {
    display: inline-block;
    margin-top: 1.5rem;
    padding: 0.8rem 2rem;
    background-color: #ffffff;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    color: #333;
    transition: all 0.5s ease;
}

.gumb:hover {
    transform: scale(1.05);
}

/* KONTAKT */
.kontakt {
    background-image: url("/img/soncnica-kontakt.jpg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;

    background-attachment: fixed;

    display: flex;
    justify-content: center;
}

.kontaktna-plosca {
    margin: 8rem 0 8rem 0;

    max-width: 1500px;
    width: 80%;
    height: auto;

    border-radius: 10px;
    /*background-color: rgba(255, 255, 255, 0.2);*/
}

.kontaktna-plosca h1 {
    margin: 1rem auto 0 auto;
    width: 60%;

    justify-self: center;

    text-align: center;
    font-family: Georgia, 'Times New Roman', Times, serif;
    border-bottom: #333 solid 1px;
}

.kontaktna-plosca .podatki {
    width: 70%;
    margin: 2rem 3rem 2rem 3rem;

    display: flex;
    justify-self: center;
    justify-content: space-between;
}

.kontaktna-plosca .podatki p, h3{
    margin: 0;
}

.kontaktna-plosca .podatki h3 {
    margin-bottom: 0.5rem;
    font-size: 25px;
}

.kontaktna-plosca .podatki .text {
    margin-right: 2rem;
}

.kontaktna-plosca .podatki .text a {
    text-decoration: none;
    color: rgb(102, 102, 102);
}

.kontaktna-plosca .podatki .text a:hover {
    color: #a8a07a;
    text-decoration: underline;
}

.kontaktna-plosca .podatki .mapa {
    width: 100%;
    height: 40%;
}

.razdelilec {
    border: none;
    border-top: #333 solid 1px;
}

/* OBRAZEC */

.kontakt-form {
    width: 700px;
}
.ime-priimek, .telefon, .mail, .sporocilo {
    display: flex;
    flex-direction: column;
    margin: 1rem 0;
    font-weight: bold;
    width: 100%;
}

.input-skatla {
    width: 100%;
    padding: 10px;
    border-radius: 10px;
    border: 2px solid #F9DC5C;
}

.input-skatla:focus {
    border: 2px solid #b89600;
    outline: none;
}

.sporocilo textarea {
    font-family: Arial, sans-serif;
    resize: none;
}

.poslji button {
    width: 30%;
    border-radius: 30px;
    padding: 0.5rem;
    border: 2px solid #F9DC5C;
    transition: all 0.2s ease;
}

.poslji button:hover {
    border: 2px solid #b89600;
}

/*storitve in o meni*/


.top-storitve {
    position: relative;
    background-color: #fffcef;
    padding: 6rem 2rem;
    display: flex;
    justify-content: center;
    overflow: hidden;
}

.top-storitve::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        url("/img/outline-soncnica-levo.png"),
        url("/img/outline-soncnica-desno.png");

    background-repeat: repeat-y, repeat-y;
    background-position: left center, right center;
    background-size: 140px auto, 140px auto;
    opacity: 0.25;
    pointer-events: none;
}

.top-storitve .text,
.top-storitve .o-meni {
    max-width: 950px;
    width: 100%;
    z-index: 2;
}

.top-storitve h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    margin-bottom: 3rem;
    text-align: center;
}

.o-meni-vsebina {
    line-height: 1.9;
    background: #fffcec;
    padding: 2rem;
    margin-bottom: 3rem;
    border-radius: 5px;
    border: #333 solid 1px;
}

.o-meni-vsebina p {
    margin-bottom: 1.6rem;
}

.biz-kartica {
    background: #fffcec;
    padding: 2rem;
    margin-bottom: 3rem;
    border-radius: 5px;
    border: #333 solid 1px;
}

.biz-kartica h2 {
    margin-top: 0;
    margin-bottom: 1rem;
}

.biz-kartica .vrste {
    display: flex;
    flex-direction: column;
    text-align: left;
    margin: 1rem 0;
}

.biz-kartica .vrste p {
    margin: 0.3rem 0;
}

.izbira {
    text-align: center;
    margin-top: 4rem;
}

.izbira a{
    text-decoration: none;
    color: #333;
    border-radius: 10px;
    border: #333 solid 2px;
    padding: 0.5rem;
}

.cene {
    font-weight: bold;
}

.kdosem {
    margin-bottom: 3rem;
}

/* TELEFON */
@media (max-width: 700px) {

    .topbar-card {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
    }

    .logotip img {
        height: 60px;
        margin: 0;
    }

    nav {
        width: 100%;
    }

    .meni {
        display: block;
    }

    .povezave {
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        width: 100%;
        flex-direction: column;
        gap: 1.2rem;
        margin-right: 0;
        text-align: center;
        transition: max-height 0.35s ease, opacity 0.25s ease;
    }

    .povezave.odprto {
        max-height: 320px;
        opacity: 1;
        margin-top: 1rem;
    }

    .povezave a.aktiven {
        border-bottom: none;
        text-decoration: underline;
        color: black;
    }





    .logo-footer {
    flex-direction: column;
    }

    .logo-footer img {
    margin: 0;
    padding: 0rem 1rem 1rem 1rem;
    border: none;
    border-bottom: 0.1px solid #a8a07a;
    }









    /* Kontakt telefon */
    .kontaktna-plosca {
        margin-top: 0rem;
        margin-bottom: 0rem;
        border-radius: 0;
        background-color: rgba(255, 255, 255, 0.5);
    }

    .podatki {
        width: 80%;
        margin-left: 2rem;
        flex-direction: column;
        justify-content: flex-start;
    }

    .mapa {
        width: 100%;
        height: 400px;
    }

    .text a { color: #333; }

    .kontakt-form {
        width: 100%;
    }

    .logotip img {
        width: auto;
        padding: 0;
    }

    .kontaktna-plosca .podatki .text {
        margin-right: 0rem;
    }

    .poslji button {
    background-color: white;
    color: #333;

    appearance: none;
    -webkit-appearance: none;
    }

    .poslji button:hover {
        border: 2px solid #F9DC5C;
    }

    .kontaktna-plosca h1 {
    width: 80%;
    }





    .domov {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        gap: 2rem;
    }

    .glavni-text {
        margin: 2rem 0;
        width: 100%;
    }

    .glavni-text h1 {
        font-size: 2rem;
    }

    .glavni-text h2 {
        font-size: 1.2rem;
        font-style: normal;
    }

    .glavni-text h3 {
        font-size: 1rem;
    }

    .soncnica img {
        width: 220px;
    }

    .text-soncnica {
        font-size: 1.6rem;
    }

    .pomoc {
        align-items: center;
        flex-direction: column;
        padding: 3rem 5%;
    }

    .pomoc div {
        width: 70%;
    }

    .o-meni-kratko {
        background-color: rgba( 255, 255, 255, 0.5);
        text-align: center;
        padding: 3rem 0;
        width: 80%;
        margin: 3rem auto;
    }

    .o-meni-kratko p {
        padding-left: 1rem;
        padding-right: 1rem;
    }


    .top-storitve .text h1 {
        font-size: 2rem;
    }

    .top-storitve .text .biz-kartica {
        width: 80%;
    }

    .uvod {
        padding: 2rem;

    }

    .uvod h2 {
        font-size: 1.3rem;
    }

    .top-storitve .text .biz-kartica .vrste2{
        text-align: left;
        padding: 0 0.4rem;
        margin: 0;
    }

    .zakljucek {
        width: 70%;
    }

    .dom .uvod .mid {
        padding: 0;
        margin: 0;
    }

    .dom .mid h1 {
        font-size: 1.3rem;
    }

    .dom {
        background-attachment: scroll;
        background-image: url("/img/soncnica-domov.jpg");
    }

    .kontakt {
        background-attachment: scroll;
    }
}
/* ANIMACIJA NAPAKE */
.shake {
    animation: shake 0.3s ease;
    border-color: red !important;
}

@keyframes shake {
    0% {transform: translateX(0);}
    25% {transform: translateX(-6px);}
    50% {transform: translateX(6px);}
    75% {transform: translateX(-6px);}
    100% {transform: translateX(0);}
}

@keyframes spin {
    0% {transform: rotate(0deg);}
    100% {transform: rotate(360deg);}
}