/*
Theme Name: Licilac Blank
Description: Minimalna prazna tema bez stilova koji overridaju plugine. Kompatibilna s Elementorom.
Version: 1.0.0
Author: Licilac
Requires at least: 6.0
Requires PHP: 7.4
Text Domain: licilac-blank
*/

/* Reset - samo osnove */
*, *::before, *::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #222;
    background: #fff;
    -webkit-font-smoothing: antialiased;
}

a {
    color: #1a3c5e;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

h1, h2, h3, h4, h5, h6 {
    margin: 0 0 0.5em;
    line-height: 1.3;
}

p {
    margin: 0 0 1em;
}

button, input, select, textarea {
    font-family: inherit;
    font-size: inherit;
}

/* --- Scroll to Top --- */
.lbl-scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #1a3c5e;
    color: #fff;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9990;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s, background 0.2s;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    border: 2px solid #FFD700;
}

.lbl-scroll-top.lbl-scroll-visible {
    opacity: 1;
    visibility: visible;
}

.lbl-scroll-top:hover {
    background: #FFD700;
}

@media (max-width: 768px) {
    .lbl-scroll-top {
        width: 38px;
        height: 38px;
        bottom: 20px;
        right: 20px;
    }
}
