/*Write your Own Css Here*/

.hero-content-text{
    position: relative;
    z-index: 2;
    padding: 40px;
}

/* ZLATNI TRANSPARENTNI BACKDROP */
.hero-content-text::before{
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(201, 168, 106, 0.25),
        rgba(212, 176, 106, 0.15),
        rgba(0, 0, 0, 0.35)
    );
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border-radius: 18px;
    z-index: -1;

    /* zlatni glow ivica */
    box-shadow: 0 0 35px rgba(201, 168, 106, 0.25);
}

/* =========================================
ULTRA LUXURY LEVIGATO PRELOADER
========================================= */

#lux-loader{
    position:fixed;
    inset:0;
    width:100%;
    height:100%;
    background:#000;
    z-index:999999;
    display:flex;
    align-items:center;
    justify-content:center;
    overflow:hidden;

    transition:
        opacity .9s ease,
        visibility .9s ease;
}

#lux-loader.hide{
    opacity:0;
    visibility:hidden;
}


/* =========================================
BACKGROUND GLOW
========================================= */

#lux-loader::before{
    content:'';
    position:absolute;

    width:900px;
    height:900px;
    border-radius:50%;

    background:radial-gradient(
        circle,
        rgba(201,168,106,0.18) 0%,
        rgba(201,168,106,0.08) 30%,
        rgba(201,168,106,0.02) 55%,
        transparent 75%
    );

    animation:pulseGlow 5s ease-in-out infinite;
}


/* =========================================
PARTICLES
========================================= */

.gold-particles{
    position:absolute;
    inset:0;
    overflow:hidden;
}

.gold-particles span{
    position:absolute;
    display:block;
    border-radius:50%;

    background:radial-gradient(
        circle,
        rgba(255,230,170,1) 0%,
        rgba(212,176,106,.8) 40%,
        rgba(212,176,106,0) 75%
    );

    animation:floatParticle linear infinite;
    opacity:.7;
}

/* različite veličine */

.gold-particles span:nth-child(1){
    width:6px;
    height:6px;
    left:10%;
    animation-duration:10s;
    animation-delay:0s;
}

.gold-particles span:nth-child(2){
    width:10px;
    height:10px;
    left:25%;
    animation-duration:14s;
    animation-delay:2s;
}

.gold-particles span:nth-child(3){
    width:4px;
    height:4px;
    left:40%;
    animation-duration:9s;
    animation-delay:1s;
}

.gold-particles span:nth-child(4){
    width:8px;
    height:8px;
    left:58%;
    animation-duration:16s;
    animation-delay:3s;
}

.gold-particles span:nth-child(5){
    width:5px;
    height:5px;
    left:72%;
    animation-duration:12s;
    animation-delay:1s;
}

.gold-particles span:nth-child(6){
    width:9px;
    height:9px;
    left:85%;
    animation-duration:18s;
    animation-delay:4s;
}


/* =========================================
LOGO WRAP
========================================= */

.lux-loader-inner{
    position:relative;
    display:flex;
    align-items:center;
    justify-content:center;

    padding:80px 100px;

    border-radius:40px;

    background:rgba(255,255,255,0.03);

    backdrop-filter:blur(18px);
    -webkit-backdrop-filter:blur(18px);

    border:1px solid rgba(255,255,255,0.08);

    box-shadow:
        0 0 60px rgba(201,168,106,0.08),
        inset 0 0 30px rgba(255,255,255,0.02);

    overflow:hidden;

    animation:cinematicZoom 2.5s ease-out forwards;
}


/* =========================================
LOGO
========================================= */

.lux-loader-inner img{
   width: 260px;
    max-width: 60vw;
    display: block;
    position: relative;
    z-index: 5;
    animation: logoFloat 4s ease-in-out infinite;
}


/* =========================================
GOLD SHINE
========================================= */

.gold-shine{
    position:absolute;

    top:-20%;
    left:-40%;

    width:25%;
    height:160%;

    z-index:10;

    background:linear-gradient(
        90deg,
        rgba(255,255,255,0) 0%,
        rgba(255,255,255,0.04) 15%,
        rgba(212,176,106,0.15) 35%,
        rgba(255,240,190,1) 50%,
        rgba(212,176,106,0.18) 65%,
        rgba(255,255,255,0.04) 85%,
        rgba(255,255,255,0) 100%
    );

    filter:blur(2px);

    transform:skewX(-25deg);

    animation:goldSweep 3s ease-in-out infinite;
}


/* =========================================
ANIMATIONS
========================================= */

@keyframes goldSweep{

    0%{
        left:-45%;
        opacity:0;
    }

    15%{
        opacity:1;
    }

    50%{
        opacity:1;
    }

    100%{
        left:140%;
        opacity:0;
    }
}

@keyframes pulseGlow{

    0%{
        transform:scale(.85);
        opacity:.4;
    }

    50%{
        transform:scale(1);
        opacity:1;
    }

    100%{
        transform:scale(.85);
        opacity:.4;
    }
}

@keyframes logoFloat{

    0%{
        transform:translateY(0px);
    }

    50%{
        transform:translateY(-6px);
    }

    100%{
        transform:translateY(0px);
    }
}

@keyframes cinematicZoom{

    0%{
        transform:scale(1.25);
        opacity:0;
        filter:blur(10px);
    }

    100%{
        transform:scale(1);
        opacity:1;
        filter:blur(0px);
    }
}

@keyframes floatParticle{

    0%{
        transform:
            translateY(100vh)
            translateX(0px)
            scale(.6);

        opacity:0;
    }

    10%{
        opacity:.7;
    }

    50%{
        transform:
            translateY(40vh)
            translateX(20px)
            scale(1);
    }

    100%{
        transform:
            translateY(-20vh)
            translateX(-30px)
            scale(.3);

        opacity:0;
    }
}

/* =========================================================
LUXURY MOBILE MENU – LEVIGATO
=/* =========================================================
LEVIGATO CUSTOM MOBILE MENU
NO BOOTSTRAP CONFLICT
========================================================= */

@media(max-width:991px){

    /* HIDE DESKTOP */
    .main-menu,
    .navbar,
    .desktop-menu{
        display:none !important;
    }

    /* TOP BAR */
    .lv-mobile-top{
        position:fixed;
        top:0;
        left:0;

        width:100%;
        height:80px;

        padding:0 20px;

        display:flex;
        align-items:center;
        justify-content:space-between;

        z-index:99990;

        background:rgba(0,0,0,0.75);

        backdrop-filter:blur(14px);
        -webkit-backdrop-filter:blur(14px);

        border-bottom:1px solid rgba(255,255,255,0.06);
    }

    /* LOGO */
    .lv-mobile-logo{
        color:#c9a86a;
        text-decoration:none;

        font-size:24px;
        font-weight:700;

        letter-spacing:4px;
    }

    /* TOGGLE */
    .lv-menu-toggle{
        width:58px;
        height:58px;

        border:none;
        outline:none;
        cursor:pointer;

        border-radius:18px;

        background:rgba(255,255,255,0.06);

        border:1px solid rgba(255,255,255,0.08);

        display:flex;
        flex-direction:column;
        align-items:center;
        justify-content:center;
        gap:6px;

        transition:.3s;
    }

    .lv-menu-toggle:hover{
        background:rgba(201,168,106,0.12);

        border-color:rgba(201,168,106,0.35);
    }

    .lv-menu-toggle span{
        width:24px;
        height:2px;

        background:#fff;

        border-radius:20px;
    }

    /* OVERLAY */
    .lv-mobile-overlay{
        position:fixed;
        inset:0;

        background:rgba(0,0,0,0.75);

        backdrop-filter:blur(5px);

        z-index:99991;

        opacity:0;
        visibility:hidden;

        transition:.4s;
    }

    .lv-mobile-overlay.active{
        opacity:1;
        visibility:visible;
    }

    /* MENU */
    .lv-mobile-menu{
        position:fixed;

        top:0;
        right:-340px;

        width:320px;
        height:100vh;

        z-index:99992;

        transition:.45s cubic-bezier(.77,0,.18,1);

        background:
        linear-gradient(
            180deg,
            #0f0f0f 0%,
            #171717 100%
        );

        box-shadow:
        -10px 0 40px rgba(0,0,0,0.55);

        border-left:
        1px solid rgba(255,255,255,0.06);
    }

    .lv-mobile-menu.active{
        right:0;
    }

    /* INNER */
    .lv-mobile-inner{
        padding:30px 22px;
        overflow-y:auto;
        height:100%;
    }

    /* HEAD */
    .lv-mobile-head{
        display:flex;
        align-items:center;
        justify-content:space-between;

        margin-bottom:30px;
        padding-bottom:20px;

        border-bottom:
        1px solid rgba(255,255,255,0.08);
    }

    .lv-mobile-head span{
        color:#c9a86a;

        font-size:28px;
        font-weight:700;

        letter-spacing:5px;
    }

    /* CLOSE */
    .lv-close{
        width:48px;
        height:48px;

        border:none;
        cursor:pointer;

        border-radius:14px;

        color:#fff;
        font-size:28px;

        background:rgba(255,255,255,0.05);

        transition:.3s;
    }

    .lv-close:hover{
        background:rgba(201,168,106,0.12);
    }

    /* NAV */
    .lv-mobile-nav{
        list-style:none;
        padding:0;
        margin:0;
    }

    .lv-mobile-nav li{
        margin-bottom:10px;
    }

    /* LINKS */
    .lv-mobile-nav a{
        display:flex;
        align-items:center;
        justify-content:space-between;

        width:100%;

        padding:16px 18px;

        border-radius:16px;

        text-decoration:none;

        color:#fff;

        font-size:14px;
        font-weight:600;

        letter-spacing:1px;
        text-transform:uppercase;

        background:rgba(255,255,255,0.03);

        border:1px solid rgba(255,255,255,0.05);

        transition:.3s;
    }

    .lv-mobile-nav a:hover{
        transform:translateX(4px);

        background:
        linear-gradient(
            135deg,
            rgba(201,168,106,0.18),
            rgba(201,168,106,0.06)
        );

        border-color:
        rgba(201,168,106,0.35);
    }

    .lv-mobile-nav a.active{
        background:
        linear-gradient(
            135deg,
            rgba(201,168,106,0.22),
            rgba(201,168,106,0.08)
        );

        border-color:
        rgba(201,168,106,0.40);
    }

    /* DROPDOWN */
    .lv-dropdown-head{
        display:flex;
        align-items:center;
        gap:10px;
    }

    .lv-dropdown-head a{
        flex:1;
    }

    .lv-dropdown-toggle{
        min-width:52px;
        height:52px;

        border:none;
        cursor:pointer;

        border-radius:16px;

        color:#c9a86a;
        font-size:22px;

        background:rgba(255,255,255,0.04);

        border:1px solid rgba(255,255,255,0.06);

        transition:.3s;
    }

    .lv-dropdown.open .lv-dropdown-toggle{
        transform:rotate(45deg);

        background:rgba(201,168,106,0.12);
    }

    /* SUBMENU */
    .lv-submenu{
        max-height:0;
        overflow:hidden;

        list-style:none;

        margin:10px 0 0;
        padding-left:14px;

        border-left:
        1px solid rgba(201,168,106,0.18);

        transition:max-height .4s ease;
    }

    .lv-dropdown.open .lv-submenu{
        max-height:500px;
    }

    .lv-submenu li{
        margin-bottom:8px;
    }

    .lv-submenu a{
        padding:13px 14px;

        font-size:13px;
        font-weight:500;

        text-transform:none;

        background:rgba(255,255,255,0.02);

        border-radius:12px;
    }

}


/* HIDE MOBILE ON DESKTOP */
@media(min-width:992px){

    .lv-mobile-top,
    .lv-mobile-menu,
    .lv-mobile-overlay{
        display:none !important;
    }

}
/*IKONICE MOBILNI MENI */
.lv-mobile-social{
    display:flex;
    justify-content:center;
    gap:18px;
    padding:20px 0;
    border-top:1px solid rgba(201,168,106,0.2);
    margin-top:20px;
}

.lv-mobile-social a{
    color:#c9a86a;
    font-size:18px;
    width:40px;
    height:40px;
    display:flex;
    align-items:center;
    justify-content:center;
    border:1px solid rgba(201,168,106,0.3);
    border-radius:50%;
    transition:0.3s;
}

.lv-mobile-social a:hover{
    background:#c9a86a;
    color:#000;
}


.lv-mobile-contact{
    padding:20px;
    border-top:1px solid rgba(201,168,106,0.2);
}

.lv-contact-btn{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    background:linear-gradient(135deg,#c9a86a,#d4b06a);
    color:#000;
    padding:14px;
    border-radius:12px;
    font-weight:600;
    margin-bottom:15px;
    text-decoration:none;
}

.lv-contact-links a{
    display:block;
    color:#fff;
    font-size:14px;
    margin-bottom:10px;
    text-decoration:none;
    opacity:0.85;
}

.lv-contact-links a i{
    color:#c9a86a;
    margin-right:8px;
}