/* Default (inactive flags) */
.lang img {
    opacity: 0.4;
    transition: opacity 0.2s ease;
}

.lang.active img {
    opacity: 1;
}

.lang:hover img {
    opacity: 1;
}

html{
  height:100%;width:100%;
}

body{
  overflow-y:visible;
  max-height:100%;
    }

header {
    
}

nav {
    
}

nav a {
    
}

main {
    
}

section {
    
}

h1 { 
    
}

h2 {
    
}

p {
    
}

button {
    
}

form {
    
}

input {
    
}

textarea {
    
}

ul {
    
}

li {
    
}

img {
    
}

footer {
    
}

/**/

.active > a {
    font-weight: bod;
}

.active-parent > a {
    color: orange;
}

.has-children > a::after {
    content: " ▼";
}

/**/
/* COOKIE BAR — PRIME STYLE */

.cookie-bar {
    position: fixed;
    left: 20px;
    right: 20px;
    bottom: 20px;
    z-index: 9999;

    display: none;
    opacity: 0;
    transform: translateY(16px) scale(0.985);
    pointer-events: none;

    transition:
        opacity 0.3s ease,
        transform 0.3s ease;
}

.cookie-bar.is-visible {
    display: block;
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

.cookie-bar__inner {
    position: relative;
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 18px;
    align-items: center;

    width: min(960px, 100%);
    margin: 0 auto;
    padding: 16px 18px;

    color: var(--prime-text-soft);
    background:
        linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.015)),
        rgba(10, 10, 10, 0.84);
    border: 1px solid rgba(243, 211, 124, 0.26);
    border-radius: 18px;
    box-shadow:
        0 18px 40px rgba(0, 0, 0, 0.36),
        0 0 0 1px rgba(255,255,255,0.02) inset,
        0 0 22px rgba(243, 211, 124, 0.08);
    backdrop-filter: blur(12px);
    overflow: hidden;
}

.cookie-bar__inner::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 4px;
    background: linear-gradient(
        180deg,
        rgba(243, 211, 124, 0.95),
        rgba(243, 211, 124, 0.18)
    );
    box-shadow: 0 0 18px rgba(243, 211, 124, 0.32);
}

.cookie-bar__inner::after {
    content: "";
    position: absolute;
    top: -40px;
    right: -40px;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: radial-gradient(
        circle,
        rgba(243, 211, 124, 0.14) 0%,
        rgba(243, 211, 124, 0.04) 42%,
        transparent 72%
    );
    pointer-events: none;
}

.cookie-bar__icon {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;

    font-size: 1.2rem;
    line-height: 1;

    border-radius: 14px;
    color: var(--prime-accent);
    background: rgba(243, 211, 124, 0.08);
    border: 1px solid rgba(243, 211, 124, 0.18);
    box-shadow:
        0 0 12px rgba(243, 211, 124, 0.10),
        inset 0 1px 0 rgba(255,255,255,0.05);
}

.cookie-bar__content {
    min-width: 0;
}

.cookie-bar__text {
    margin: 0;
    font-size: 0.98rem;
    line-height: 1.6;
    color: var(--prime-text-soft);
}

.cookie-bar__text a {
    display: inline-block;
    margin-left: 6px;
    color: var(--prime-link);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s ease, text-shadow 0.2s ease;
}

.cookie-bar__text a:hover {
    color: var(--prime-link-hover);
    text-shadow: 0 0 12px rgba(243, 211, 124, 0.22);
}

.cookie-bar__actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.cookie-bar__button {
    min-width: 132px;
    padding: 10px 18px !important;
    border: none;
    border-radius: 12px !important;
    font-weight: 700;
    letter-spacing: 0.02em;
    box-shadow:
        0 8px 20px rgba(0, 0, 0, 0.22),
        0 0 18px rgba(243, 211, 124, 0.12);
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        filter 0.2s ease;
}

.cookie-bar__button:hover {
    transform: translateY(-1px);
    box-shadow:
        0 14px 26px rgba(0, 0, 0, 0.28),
        0 0 24px rgba(243, 211, 124, 0.22);
    filter: brightness(1.02);
}

.cookie-bar__button:active {
    transform: translateY(0);
}



.cookie-link {
    color: var(--prime-link);
    text-decoration: none;
    transition: color 0.2s ease;
}

.cookie-link:hover {
    color: var(--prime-accent);
    text-decoration: underline;
    text-underline-offset: 3px;
}

@media (max-width: 767px) {
    .cookie-bar {
        left: 12px;
        right: 12px;
        bottom: 12px;
    }

    .cookie-bar__inner {
        grid-template-columns: 1fr;
        gap: 14px;
        padding: 16px;
    }

    .cookie-bar__icon {
        display: none;
    }

    .cookie-bar__actions {
        justify-content: stretch;
    }

    .cookie-bar__button {
        width: 100%;
        min-width: 0;
    }

    .cookie-bar__text {
        font-size: 0.95rem;
    }
}

/**/
/* SCROLL TO TOP BUTTON — PRIME STYLE */
.scroll-to-top-btn{
    position:fixed;
    right:16px;
    bottom:60px;
    z-index:9999;

    width:52px;
    height:52px;
    display:flex;
    align-items:center;
    justify-content:center;

    border:none;
    border-radius:50%;
    cursor:pointer;

    background:linear-gradient(
        180deg,
        rgba(18,18,18,0.96),
        rgba(10,10,10,0.98),
        rgba(6,6,6,0.99)
    );

    color:#f3d37c;
    font-size:24px;
    font-weight:700;
    line-height:1;

    border:1px solid rgba(243,211,124,0.24);

    box-shadow:
        0 10px 24px rgba(0,0,0,0.34),
        0 0 12px rgba(243,211,124,0.08),
        inset 0 1px 0 rgba(255,255,255,0.03);

    opacity:0;
    visibility:hidden;
    transform:translateY(10px);

    transition:
        opacity 0.22s ease,
        visibility 0.22s ease,
        transform 0.22s ease,
        box-shadow 0.22s ease,
        border-color 0.22s ease;
}

.scroll-to-top-btn::before{
    content:"";
    position:absolute;
    left:0;
    top:10px;
    bottom:10px;
    width:3px;
    border-radius:2px;

    background:linear-gradient(
        180deg,
        rgba(243,211,124,1),
        rgba(243,211,124,0.28)
    );

    box-shadow:
        0 0 12px rgba(243,211,124,0.35),
        0 0 22px rgba(243,211,124,0.14);
}

.scroll-to-top-btn.show{
    opacity:1;
    visibility:visible;
    transform:translateY(0);
}

.scroll-to-top-btn:hover{
    border-color:rgba(243,211,124,0.34);
    box-shadow:
        0 16px 34px rgba(0,0,0,0.34),
        0 0 14px rgba(243,211,124,0.12);
}

/* optional: only show this button on smaller screens */
@media (min-width: 992px){
    .scroll-to-top-btn{
        display:none;
    }
}



/* =========================
   MOTIVE SLIDER
========================= */

.motive-slider{
    position:relative;
    width:100%;
    overflow:hidden;
    touch-action:pan-y;
}

.motive-slider-track{
    position:relative;
    width:100%;
    height:372px;
    overflow:hidden;
}

.motive-slide{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    opacity:0;
    visibility:hidden;
    z-index:1;
    transform:translateX(0);
    transition:
        transform 0.46s ease,
        opacity 0.32s ease,
        visibility 0.32s ease;
}

.motive-slide.active{
    opacity:1;
    visibility:visible;
    z-index:3;
    transform:translateX(0);
}

/* incoming */
.motive-slide.enter-from-right{
    opacity:1;
    visibility:visible;
    z-index:4;
    transform:translateX(100%);
}

.motive-slide.enter-from-left{
    opacity:1;
    visibility:visible;
    z-index:4;
    transform:translateX(-100%);
}

/* outgoing */
.motive-slide.exit-to-left{
    opacity:1;
    visibility:visible;
    z-index:2;
    transform:translateX(-100%);
}

.motive-slide.exit-to-right{
    opacity:1;
    visibility:visible;
    z-index:2;
    transform:translateX(100%);
}

.motive-picture{
    width:100%;
    height:100%;
    background-repeat:no-repeat;
    background-position:center center;
    background-size:cover;
}

/* arrows */
.motive-nav{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    z-index:10;

    width:44px;
    height:44px;

    display:flex;
    align-items:center;
    justify-content:center;

    border:none;
    border-radius:50%;
    cursor:pointer;

    background:linear-gradient(
        180deg,
        rgba(18,18,18,0.92),
        rgba(10,10,10,0.96),
        rgba(6,6,6,0.98)
    );

    color:#f3d37c;
    font-size:28px;
    line-height:1;

    border:1px solid rgba(243,211,124,0.22);

    box-shadow:
        0 8px 20px rgba(0,0,0,0.28),
        0 0 10px rgba(243,211,124,0.06);

    transition:
        box-shadow 0.22s ease,
        border-color 0.22s ease,
        color 0.22s ease;
}

.motive-nav:hover{
    border-color:rgba(243,211,124,0.34);
    box-shadow:
        0 14px 28px rgba(0,0,0,0.34),
        0 0 12px rgba(243,211,124,0.10);
}

.motive-prev{
    left:14px;
}

.motive-next{
    right:14px;
}

/* dots */
.motive-dots{
    position:absolute;
    left:50%;
    bottom:14px;
    transform:translateX(-50%);
    z-index:10;

    display:flex;
    gap:8px;
}

.motive-dot{
    width:11px;
    height:11px;
    border:none;
    border-radius:50%;
    cursor:pointer;

    background:rgba(255,255,255,0.35);
    box-shadow:0 0 6px rgba(0,0,0,0.35);

    transition:
        transform 0.2s ease,
        background 0.2s ease,
        box-shadow 0.2s ease;
}

.motive-dot.active{
    background:#f3d37c;
    box-shadow:
        0 0 8px rgba(243,211,124,0.35),
        0 0 18px rgba(243,211,124,0.12);
}

.motive-dot:hover{
    transform:scale(1.1);
}

/* mobile */
@media (max-width: 767px){
    .motive-slider-track{
        height:372px;
    }

    .motive-nav{
        width:38px;
        height:38px;
        font-size:24px;
    }

    .motive-prev{
        left:8px;
    }

    .motive-next{
        right:8px;
    }
}