﻿/* GLOBAL */
body {
    margin: 0;
    font-family: Montserrat, sans-serif;
    color: #222;
    background: #fff;
}

/* HEADER */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 12px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(6px);
    z-index: 1000;
}

.logo {
    height: 30px;
}

/* HAMBURGER BUTTON */
.menu-btn {
    width: 42px;
    height: 32px;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 4px;
}

    .menu-btn span {
        height: 5px;
        background: #E93042;
        border-radius: 3px;
        transition: 0.3s ease;
    }

    /* HAMBURGER ANIMATION (open → X) */
    .menu-btn.active span:nth-child(1) {
        transform: rotate(45deg) translate(7px, 7px);
    }

    .menu-btn.active span:nth-child(2) {
        opacity: 0;
    }

    .menu-btn.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }

/* SIDE MENU */
.side-menu {
    position: fixed;
    right: -260px;
    top: 0;
    width: 260px;
    height: 100%;
    background: #E93042;
    padding-top: 80px;
    display: flex;
    flex-direction: column;
    transition: 0.3s ease;
    z-index: 999;
}

    .side-menu.open {
        right: 0;
    }

    .side-menu a {
        color: white;
        text-decoration: none;
        padding: 18px 30px;
        font-size: 20px;
        font-weight: 600;
    }

/* HERO FULLSCREEN BACKGROUND */
.hero {
    height: 100vh;
    background-image: url('images/RR_Naslovna_02.webp');
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    padding-top: 100px; /* prostor pod headerjem, brez rezanja slike */
    padding-bottom: 0 !important;
}

/* BREZ SIVINE / BREZ OVERLAYA */
.hero::before {
    content: none;
}

/* OVERLAY CONTENT (TEKST NA LEVI) */
.hero-overlay {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

/* LEFT TEXT BLOCK */
.hero-left {
    width: 60%;
    color: #000000; /* ČRNO */
    /* DVIG SAMO TEKSTA */
    margin-top: 0;
  margin-left: -20px; /* premik celotnega bloka levo */
}    


.hero-left .seo-text {
    font-size: 18px;
    line-height: 1.5;
    margin-bottom: 130px;
    color: #000000; /* ČRNO */
   margin-left: -20px; /* premik celotnega bloka levo */
}   

.hero-left h2 {
    font-size: 40px;
    margin-bottom: 20px;
    text-shadow: 0 3px 8px rgba(0,0,0,0.4);
    color: #000000;    
}


/* FOOTER */
.footer {
    text-align: center;
    position: relative;
    z-index: 3;    
    margin-top: 0;
    background: #222;
    color: #fff;
    font-size: 14px;
}
.footer a {
    color: #ffffff;      /* bela barva */
    text-decoration: none;
    font-weight: 600;

}

.footer a:hover {
    color: #cccccc;      /* rahlo svetlejša ob hoverju */
    text-decoration: underline;
}


/* BREADCRUMB (optional for subpages) */
.breadcrumb {
    margin-top: 80px;
    padding: 10px 24px;
    font-size: 14px;
    color: #666;
}

    .breadcrumb a {
        color: #E93042;
        text-decoration: none;
    }

/* MOBILNI PRIKAZ */
@media (max-width: 600px) {
    
.header {
        padding: 10px 16px;               /* manjši, kompaktnejši header */
        justify-content: space-between;
        background: rgba(255,255,255,0.95);
        backdrop-filter: blur(4px);
    }

    .logo {
        font-size: 18px;                  /* manjši, lepši font */
        font-weight: 600;
    }

    .nav a {
        font-size: 16px;                  /* večja berljivost na telefonu */
        margin-left: 12px;                /* manjši razmik */
        padding: 6px 0;                   /* večji tap-target */
    }

    .nav {
        display: flex;
        align-items: center;
    }    

    .hero {
        background-size: cover;
        background-position: center top;    
        height: auto;
        background-image: url('images/RR_Naslovna_03.webp');
        min-height: 95vh;                 /* PNG ostane velik */
        background-repeat: no-repeat;
        padding-top: 10px;
        padding-bottom: 10px;
    }


    .hero-left .seo-text {
        width: 100%;
        padding-left: 30px;
        padding-right: 30px;
        margin-left: 0;
        text-align: left;    
        font-size: 12px !important;
        line-height: 1.2;    
        color: #F71812 !important;
    }

    .hero-left h2 {
        font-size: 20px;
        padding-top: 10px;    
        padding-left: 30px;    
        color: #F71812 !important;
    }

    .footer {
        padding-top: 10px;
        padding-bottom: 10px;
    }
}
