@font-face {
    font-family: Ethnocentric;
    src: url("../../fonts/ethnocentric-rg.ttf");
}
html {
    overflow-y: scroll;
}
html, body {
    font-family: 'Ethnocentric', Verdana;
    font-style: normal;
    font-variant: small-caps;
    line-height: normal;
    font-size: 1em;
    color: #FFF;

    background: white url("../../../graphics/layout/background.jpg") repeat;


    padding: 0;
    margin: 0;


}

/* #contentbox{
    padding:10px;
}*/

#container {
    display: flex;
    min-height: 100vh; /* full viewport height */
    max-width: 1100px;margin:0 auto;
}



#main-container {

    margin: 0 auto;
    flex: 1; /* takes remaining space */
}



#left-container {
    
    width: 15px;min-height:100%;
    background: pink;
    background: url("../../../graphics/layout/main-shade-left.png") repeat-y;

}

#main-container {
    
    flex: 1;min-height:100%;
    background: white url("../../../graphics/layout/background-content.jpg") repeat;


}

#right-container {
    
    width: 15px;min-height:100%;
    background: pink;
    background: url("../../../graphics/layout/main-shade-right.png") repeat-y;

}

      img.shade-top{
            display:block;position:relative;
            top:0;
            margin:0 auto;padding:0;
            width:100%;height:auto;
            border:0;
      }

     img.shade-bottom{
            display:block;position:relative;
            top:0;
            margin:0 auto;padding:0;
            width:100%;height:auto;
            border:0;
      }      

img.splitter-shade {
            display:block;position:relative;
            top:0;
            margin:0 auto;padding:0;
            width:100%;max-height:11px;
            border:0;
      } 

/* MOTIVE BLOCK  */
    .motive-block {
        width: 100%;
        margin: 0 0 1rem;
    }

    .motive-picture {
        width: 100%;
        height: 372px;
        background-image: url("../../../graphics/motives/motive-singleman_available.jpg");
        background-repeat: no-repeat;
        background-position: center center;
        background-size: cover;
    }

/* BASIC ELEMENTS */

header {
    
}

nav {
    
}

nav a {
    
}

main {
    
}

section {
    
}

h1 { color:green;
    
}

h2 {
    
}

p {
    
}

button {
    
}

form {
    
}

input {
    
}

textarea {
    
}

ul {
    
}

li {
    
}

img {
    
}

footer {
    
}

/* =========================
   PRIME STATUS BAR
========================= */

.prime-status{
    display:inline-flex;
    align-items:center;
    gap:10px;

    margin:8px 10px 6px;
    padding:8px 14px 8px 16px;

    position:relative;
    overflow:hidden;

    background:linear-gradient(
        180deg,
        rgba(18,18,18,.96),
        rgba(10,10,10,.98),
        rgba(6,6,6,.99)
    );

    border:1px solid rgba(255,255,255,.10);
    border-radius:14px;

    color:#ffffff;
    font-weight:700;
    letter-spacing:.035em;
    line-height:1.15;

    text-shadow:
        0 1px 2px rgba(0,0,0,.85),
        0 0 8px rgba(0,0,0,.35);

    box-shadow:
        0 10px 24px rgba(0,0,0,.30),
        inset 0 1px 0 rgba(255,255,255,.02);

    transition:
        transform .22s ease,
        border-color .22s ease,
        box-shadow .22s ease;
}

/* gold accent line */
.prime-status::before{
    content:"";
    position:absolute;
    left:0;
    top:8px;
    bottom:8px;
    width:3px;
    border-radius:2px;

    background:linear-gradient(
        180deg,
        rgba(243,211,124,1),
        rgba(243,211,124,.22)
    );

    box-shadow:
        0 0 12px rgba(243,211,124,.35),
        0 0 22px rgba(243,211,124,.12);
}

/* subtle live pulse */
.prime-status::after{
    content:"●";
    color:#f3d37c;
    font-size:11px;
    margin-left:4px;

    animation:primePulse 2.2s infinite;
}

.prime-status:hover{
    transform:translateY(-1px);

    border-color:rgba(243,211,124,.28);

    box-shadow:
        0 16px 34px rgba(0,0,0,.34),
        0 0 14px rgba(243,211,124,.08);
}

/* status text helpers if later wrapped in spans */
.prime-status .highlight{
    color:#f3d37c;
}

.prime-status .muted{
    color:rgba(255,255,255,.72);
}

/* pulse anim */
@keyframes primePulse{
    0%,100%{
        opacity:.35;
        transform:scale(.9);
    }
    50%{
        opacity:1;
        transform:scale(1.15);
    }
}

/* mobile */
@media (max-width:768px){

    .prime-status{
        display:flex;
        width:calc(100% - 20px);
        margin:8px 10px 6px;
        font-size:.88rem;
        padding:8px 12px 8px 14px;
    }
}

/* CENTER PRIME STATUS BLOCK */

.prime-status{
    display:flex;
    justify-content:center;   /* center text inside */
    align-items:center;
    text-align:center;

    margin:12px auto 10px;    /* center whole block */
    width:fit-content;
    max-width:95%;

    padding:8px 18px;
}

/* mobile */
@media (max-width:768px){

    .prime-status{
        width:calc(100% - 20px);
        margin:10px auto 8px;
        justify-content:center;
        text-align:center;
    }
}

/* TOP UTILITY BAR - wrapper for homelink and language switcher */
.top-utility-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin:50px;
    gap: 16px;
    margin: 0px;
}
/* =========================
   HOME LINK
========================= */

/* =========================
   HOME BUTTON — PRIME
========================= */

.home-link-wrap a {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 9px 16px;
    margin: 0 5px;
    gap: 6px;

    overflow: hidden;

    background: linear-gradient(
        180deg,
        rgba(18,18,18,0.96),
        rgba(10,10,10,0.98),
        rgba(6,6,6,0.99)
    );

    color: #ffffff;
    text-decoration: none;

    border: 1px solid rgba(255,255,255,0.14);
    border-radius: 12px;

    font-weight: 600;
    letter-spacing: 0.02em;

    box-shadow: 0 8px 24px rgba(0,0,0,0.25);
    backdrop-filter: blur(4px);

    transition:
        transform 0.22s ease,
        box-shadow 0.22s ease,
        border-color 0.22s ease,
        color 0.22s ease;
}

/* GOLD LINE (same DNA as lang buttons) */
.home-link-wrap a::before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    bottom: 8px;
    width: 3px;
    border-radius: 2px;

    background: linear-gradient(
        180deg,
        rgba(243,211,124,0.9),
        rgba(243,211,124,0.2)
    );

    box-shadow: 0 0 10px rgba(243,211,124,0.25);
    opacity: 0.7;
}

/* HOVER */
.home-link-wrap a:hover {
    transform: translateY(-2px);

    border-color: rgba(243,211,124,0.34);

    box-shadow:
        0 16px 34px rgba(0,0,0,0.34),
        0 0 12px rgba(243,211,124,0.08);

    color: #ffffff;
}

/* HOVER — GOLD BOOST */
.home-link-wrap a.active::before {
    opacity: 1;
    box-shadow:
        0 0 12px rgba(243,211,124,0.35),
        0 0 22px rgba(243,211,124,0.14);
}

/* ACTIVE (optional if chceš zvýraznit homepage) */
.home-link-wrap a.active {
    color: #f3d37c;
    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);
}


/* =========================
   LANGUAGE SWITCHER — PRIME
========================= */

.lang-switcher {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    margin: 0 5px;
}

.lang-switcher-label {
    color: rgba(255,255,255,0.82);
    font-weight: 700;
    letter-spacing: 0.03em;
}

.lang {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 14px;
    margin: 0;

    overflow: hidden;

    background: linear-gradient(
        180deg,
        rgba(18,18,18,0.96),
        rgba(10,10,10,0.98),
        rgba(6,6,6,0.99)
    );

    color: #ffffff;
    text-decoration: none !important;

    border: 1px solid rgba(255,255,255,0.14);
    border-radius: 12px;

    line-height: 1;
    box-shadow: 0 8px 24px rgba(0,0,0,0.25);
    backdrop-filter: blur(4px);

    transition:
        transform 0.22s ease,
        box-shadow 0.22s ease,
        border-color 0.22s ease,
        color 0.22s ease,
        background 0.22s ease;
}

.lang::before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    bottom: 8px;
    width: 3px;
    border-radius: 2px;

    background: linear-gradient(
        180deg,
        rgba(243,211,124,0.9),
        rgba(243,211,124,0.2)
    );

    box-shadow: 0 0 10px rgba(243,211,124,0.25);
    opacity: 0.65;
}

.lang img {
    display: block;
    width: 18px;
    height: auto;
    flex: 0 0 auto;
    border-radius: 2px;
}

.lang span {
    display: inline-block;
    line-height: 1;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.lang:hover {
    transform: translateY(-2px);
    border-color: rgba(243,211,124,0.34);
    box-shadow:
        0 16px 34px rgba(0,0,0,0.34),
        0 0 12px rgba(243,211,124,0.08);
    color: #ffffff;
    text-decoration: none !important;
}

.lang:hover::before {
    opacity: 1;
    box-shadow:
        0 0 12px rgba(243,211,124,0.32),
        0 0 20px rgba(243,211,124,0.10);
}

/* ACTIVE LANGUAGE */
.lang.active {
    color: #f3d37c;
    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);
}

.lang.active::before {
    opacity: 1;
    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);
}

@media (max-width: 575.98px) {
    .lang-switcher {
        gap: 8px;
    }

    .lang {
        padding: 8px 12px;
    }

    .lang span {
        font-size: 0.9rem;
    }
}

/* MOBILE: push language switcher to right */

.top-utility-bar{
    display:flex;
    align-items:flex-start;
    margin:10px 0px;
    gap:16px;
    flex-wrap:wrap;
}

.top-utility-bar .home-link-wrap{
    margin:5px;
    flex:0 0 auto;
}

.top-utility-bar .lang-switcher{
    margin-left:auto;      /* pushes languages to right */
    display:flex;
    margin:0 10px;
    flex-direction:column;
    align-items:flex-end;  /* right align buttons */
    gap:10px;
}

/* stronger mobile behavior */
@media (max-width:768px){

    .top-utility-bar{
        align-items:flex-start;
        margin:10px 0;
    }

    .top-utility-bar .lang-switcher{
        margin-left:auto;
        min-width:max-content;
    }
}

@media (min-width: 769px){

    .top-utility-bar{
        display:flex;
        align-items:center;
        justify-content:space-between;
        gap:16px;padding:0;margin:0px;
        flex-wrap:nowrap;
    }

    .top-utility-bar .lang-switcher{
        margin-left:auto;

        display:flex;
        flex-direction:row;     /* horizontal */
        align-items:center;
        justify-content:flex-end;

        gap:10px;
    }
}
/* =========================
   MAIN / WIDGETS SWITCHER
   same style as PRIME menu
========================= */

.menu-bar {
    display: flex;
    gap: 12px;
    margin: 5px 10px 5px 10px;
}

.menu-btn {
    flex: 1;
    display: block;
    padding: 12px 18px;
    text-align: center;

    border: 1px solid rgba(255,255,255,0.14);
    border-radius: 14px;

    background: linear-gradient(
        180deg,
        rgba(18,18,18,0.96),
        rgba(10,10,10,0.98),
        rgba(6,6,6,0.99)
    );

    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.02em;
    text-decoration: none;

    cursor: pointer;

    box-shadow: 0 8px 24px rgba(0,0,0,0.25);
    backdrop-filter: blur(4px);

    transition:
        transform 0.22s ease,
        box-shadow 0.22s ease,
        border-color 0.22s ease,
        color 0.22s ease;
}

.menu-btn:hover {
    transform: translateY(-2px);
    border-color: rgba(243,211,124,0.34);
    box-shadow:
        0 16px 34px rgba(0,0,0,0.34),
        0 0 12px rgba(243,211,124,0.08);
    color: #ffffff;
}

.menu-btn:active {
    transform: translateY(0);
}

.menu-btn.active {
    position: relative;
    color: #f3d37c;
    border-color: rgba(243,211,124,0.34);
    box-shadow:
        0 16px 34px rgba(0,0,0,0.34),
        0 0 16px rgba(243,211,124,0.12);
}

.menu-btn.active::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);
}


.menu-display{
    margin:0px;
}

.menu-display:empty::before {
    content: "Select a menu";
    display: block;
    padding: 20px;
    text-align: center;
    color: #888;
}

/* PANEL SWITCHING — keep existing logic */
.menu-panel {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.35s ease, opacity 0.25s ease;
}

.menu-panel.active {
    max-height: 1000px;
    opacity: 1;
}

/* =========================
   TREE MENU (MAIN + WIDGETS)
========================= */

/* LEVEL 1 */
.menu-display ul.level-1 {
    list-style: none;
    margin: 0;
    padding: 5px 25px;
}

.menu-display ul.level-1 > li {
    margin-bottom: 10px;
}

.menu-display ul.level-1 > li > a {
    position: relative;
    display: block;
    padding: 12px 16px;
    overflow: hidden;

    background: linear-gradient(
        180deg,
        rgba(18,18,18,0.96),
        rgba(10,10,10,0.98),
        rgba(6,6,6,0.99)
    );

    border: 1px solid rgba(255,255,255,0.14);
    border-radius: 14px;

    color: #ffffff;
    text-decoration: none;
    font-weight: 600;

    box-shadow: 0 8px 24px rgba(0,0,0,0.25);

    transition:
        transform 0.22s ease,
        box-shadow 0.22s ease,
        border-color 0.22s ease,
        color 0.22s ease;
}

/* LEFT GOLD LINE */
.menu-display ul.level-1 > li > a::before {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    bottom: 10px;
    width: 3px;
    border-radius: 2px;

    background: linear-gradient(
        180deg,
        rgba(243,211,124,0.9),
        rgba(243,211,124,0.2)
    );

    box-shadow: 0 0 10px rgba(243,211,124,0.25);
}

.menu-display ul.level-1 > li > a:hover {
    transform: translateY(-2px);
    border-color: rgba(243,211,124,0.34);
    box-shadow: 0 16px 34px rgba(0,0,0,0.34);
    color: #ffffff;
}

/* active parent / active item */
.menu-display ul.level-1 > li.active-parent > a,
.menu-display ul.level-1 > li.active > a {
    color: #f3d37c;
    border-color: rgba(243,211,124,0.34);
    box-shadow:
        0 16px 34px rgba(0,0,0,0.34),
        0 0 16px rgba(243,211,124,0.14);
}

.menu-display ul.level-1 > li.active-parent > a::before,
.menu-display ul.level-1 > li.active > a::before {
    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);
}

/* LEVEL 2 */
.menu-display ul.level-2 {
    list-style: none;
    margin: 0;
    padding: 0px 0 0 14px;
    border-left: 1px solid rgba(255,255,255,0.08);
}

.menu-display ul.level-2 > li {
    margin-bottom: 10px;
    margin-top:10px;
}

.menu-display ul.level-2 > li:last-child {
    margin-bottom: 0;
}



.menu-display ul.level-2 > li > a {
    display: block;
    padding: 9px 12px;

    border-radius: 10px;
    border: 1px solid transparent;

    color: rgba(255,255,255,0.88);
    text-decoration: none;

    transition:
        transform 0.2s ease,
        background 0.2s ease,
        color 0.2s ease,
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

.menu-display ul.level-2 > li > a:hover {
    background: rgba(255,255,255,0.05);
    border-color: rgba(255,255,255,0.08);
    color: #ffffff;
    transform: translateX(3px);
}

/* ARROWS */
.menu-display li.has-children > a::after {
    content: "▸";
    float: right;
    transition: transform 0.2s ease, opacity 0.2s ease;
    opacity: 0.6;
}

.menu-display li.active-parent > a::after {
    transform: rotate(90deg);
    opacity: 1;
}

/* collapse tweak */
.menu-display .collapse {
    transition: all 0.25s ease;
}


/* =========================
   FINAL PRIME MENU POLISH
========================= */

/* whole menu box spacing */
.menu-display {
    margin: 0 20px 6px 20px;
}

/* LEVEL 1 polish */
.menu-display ul.level-1 > li > a {
    letter-spacing: 0.015em;
    backdrop-filter: blur(4px);
}

.menu-display ul.level-1 > li > a:hover {
    transform: translateY(-2px);
    border-color: rgba(243,211,124,0.34);
    box-shadow:
        0 16px 34px rgba(0,0,0,0.34),
        0 0 12px rgba(243,211,124,0.08);
}

/* active path glow */
.menu-display ul.level-1 > li.active-parent > a,
.menu-display ul.level-1 > li.active > a {
    color: #f3d37c;
    border-color: rgba(243,211,124,0.34);
    box-shadow:
        0 16px 34px rgba(0,0,0,0.34),
        0 0 16px rgba(243,211,124,0.14);
}

.menu-display ul.level-1 > li.active-parent > a::before,
.menu-display ul.level-1 > li.active > a::before {
    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);
}

/* LEVEL 2 polish */
.menu-display ul.level-2 {
    margin-top: 0px;
    margin-left: 10px;
    padding-left: 14px;
    border-left: 1px solid rgba(255,255,255,0.08);
}

.menu-display ul.level-2 > li > a:hover {
    color: #ffffff;

    background: rgba(0,0,0,1);

    border-color: rgba(243,211,124,0.25);

    transform: translateX(4px);

    box-shadow:
        0 0 8px rgba(243,211,124,0.06);
}

.menu-display ul.level-2 > li > a {
    position: relative; /* 🔥 důležité */
        background: rgba(0,0,0,1);
}

.menu-display ul.level-2 > li.active > a {
    color: #f3d37c;



    border: 1px solid rgba(243,211,124,0.28);

    font-weight: 700;

    box-shadow:
        0 0 10px rgba(243,211,124,0.10),
        0 0 20px rgba(243,211,124,0.06);

    text-shadow:
        0 0 6px rgba(243,211,124,0.35);
}

.menu-display ul.level-2 > li.active > a::before {
    content: "";
    position: absolute;

    left: 0;
    top: 6px;
    bottom: 6px;

    width: 3px;

    border-radius: 2px;

    background: linear-gradient(
        180deg,
        rgba(243,211,124,1),
        rgba(243,211,124,0.35)
    );

    box-shadow:
        0 0 10px rgba(243,211,124,0.45);

    pointer-events: none;
}

/* MAIN / WIDGETS SWITCHER */
.menu-btn {
    backdrop-filter: blur(4px);
}

.menu-btn:hover {
    transform: translateY(-2px);
    border-color: rgba(243,211,124,0.34);
    box-shadow:
        0 16px 34px rgba(0,0,0,0.34),
        0 0 12px rgba(243,211,124,0.08);
    color: #ffffff;
}

.menu-btn.active {
    color: #f3d37c;
    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);
}






/* =========================
   PRIME MENU (3 QUICK BUTTONS)
========================= */

.prime-menu {
    margin: 5px 10px;
}

.prime-menu > ul.level-1 {
    display: flex;
    gap: 12px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.prime-menu > ul.level-1 > li {
    flex: 1;
    margin: 0;
    padding: 0;
}

.prime-menu > ul.level-1 > li > a {
    display: block;
    padding: 12px 18px;
    text-align: center;

    border: 1px solid rgba(255,255,255,0.14);
    border-radius: 14px;

    background: linear-gradient(
        180deg,
        rgba(18,18,18,0.96),
        rgba(10,10,10,0.98),
        rgba(6,6,6,0.99)
    );

    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 0.02em;

    box-shadow: 0 8px 24px rgba(0,0,0,0.25);
    backdrop-filter: blur(4px);

    transition:
        transform 0.22s ease,
        box-shadow 0.22s ease,
        border-color 0.22s ease,
        color 0.22s ease;
}

.prime-menu > ul.level-1 > li > a:hover {
    transform: translateY(-2px);
    border-color: rgba(243,211,124,0.34);
    box-shadow:
        0 16px 34px rgba(0,0,0,0.34),
        0 0 12px rgba(243,211,124,0.08);
    color: #ffffff;
}

.prime-menu > ul.level-1 > li.active > a,
.prime-menu > ul.level-1 > li.active-parent > a {
    color: #f3d37c;
    border-color: rgba(243,211,124,0.34);
    box-shadow:
        0 16px 34px rgba(0,0,0,0.34),
        0 0 16px rgba(243,211,124,0.12);
}

@media (max-width: 767px) {
    .prime-menu > ul.level-1 {
        flex-direction: column;
    }
}


/* PRIME MENU — ACTIVE / CURRENT STATE */

.prime-menu > ul.level-1 > li.active > a,
.prime-menu > ul.level-1 > li.active-parent > a {
    position: relative;
    color: #f3d37c;
    border-color: rgba(243,211,124,0.34);

    box-shadow:
        0 16px 34px rgba(0,0,0,0.34),
        0 0 16px rgba(243,211,124,0.12);
}

.prime-menu > ul.level-1 > li.active > a::before,
.prime-menu > ul.level-1 > li.active-parent > a::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);
}


/* =========================
   BREADCRUMBS
========================= */

.breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 4px;
    margin: 10px 10px;
    padding: 0px 0px;
    font-size: 0.9rem;
    line-height: 1.35;
    color: rgba(255,255,255,0.72);
    background: rgba(255,255,255,0);
    border: 1px solid rgba(255,255,255,0);
    border-radius: 10px;
}

.breadcrumbs a {
    color: rgba(255,255,255,0.82);
    text-decoration: none;
    transition: color 0.2s ease, opacity 0.2s ease;
}

.breadcrumbs a:hover {
    color: #f3d37c;
}

.breadcrumbs a:first-child {
    color: #f3d37c;
    font-weight: bold;
}

.breadcrumbs .crumb-sep {
    margin: 0 4px;
    color: rgba(255,255,255,0.35);
}

.breadcrumbs .crumb-current {
    color: #ffffff;
    font-weight: 600;
}

@media (max-width: 575.98px) {
    .breadcrumbs {
        font-size: 0.82rem;
        padding: 6px 10px;
    }

    .breadcrumbs .crumb-sep {
        margin: 0 3px;
    }
}






/* PREV / NEXT  */
.profile-nav {
    margin: 30px 0 10px;
    padding: 18px 20px;
    background: rgba(20, 20, 20, 0.65);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 14px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}

/* =========================
   PREV / NEXT → PRIME BUTTON STYLE
========================= */

.prev-next {
    margin: 5px 10px;
    padding: 0;

    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;

    background: transparent;
    border: none;
    box-shadow: none;
}

/* BASE BUTTON STYLE (same as HOME) */
.prev-next a {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 10px 18px;
    gap: 6px;

    overflow: hidden;

    background: linear-gradient(
        180deg,
        rgba(18,18,18,0.96),
        rgba(10,10,10,0.98),
        rgba(6,6,6,0.99)
    );

    color: #ffffff;
    text-decoration: none;

    border: 1px solid rgba(255,255,255,0.14);
    border-radius: 12px;

    font-weight: 600;
    letter-spacing: 0.02em;

    box-shadow: 0 8px 24px rgba(0,0,0,0.25);
    backdrop-filter: blur(4px);

    transition:
        transform 0.22s ease,
        box-shadow 0.22s ease,
        border-color 0.22s ease,
        color 0.22s ease;
}

/* GOLD LINE */
.prev-next a::before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    bottom: 8px;
    width: 3px;
    border-radius: 2px;

    background: linear-gradient(
        180deg,
        rgba(243,211,124,0.9),
        rgba(243,211,124,0.2)
    );

    box-shadow: 0 0 10px rgba(243,211,124,0.25);
    opacity: 0.7;
}

/* HOVER */
.prev-next a:hover {
    transform: translateY(-2px);

    border-color: rgba(243,211,124,0.34);

    box-shadow:
        0 16px 34px rgba(0,0,0,0.34),
        0 0 12px rgba(243,211,124,0.08);

    color: #ffffff;
}

.prev-next a:hover::before {
    opacity: 1;
    box-shadow:
        0 0 12px rgba(243,211,124,0.35),
        0 0 20px rgba(243,211,124,0.10);
}

/* ALIGNMENT */
.prev-next a:first-child {
    margin-right: auto;
}

.prev-next a:last-child {
    margin-left: auto;
}

/* OPTIONAL: arrows tweak */
.prev-link::before {
    content: "← ";
}

.next-link::after {
    content: " →";
}



/*
    FOOTER
*/
#site-footer {
    text-align: center;
    margin: 0;
    padding: 0;
}

#site-footer .footer-menu-wrap {
    margin: 0;
    padding: 15px 10px 10px 10px;
    text-align: center;
}

#site-footer .footer-menu-title {
    display: none;
    margin: 0;
    padding: 0;
}

#site-footer .footer-menu-wrap > ul.level-1 {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 6px 12px;
    list-style: none;
    margin: 0;
    padding: 0;
}

#site-footer .footer-menu-wrap > ul.level-1 > li {
    margin: 0;
    padding: 0;
}

#site-footer .footer-menu-wrap > ul.level-1 > li > a {
    display: inline-block;
    color: #d8d8d8;
    text-decoration: none;
    padding: 2px 8px;
    margin: 0;
    border-bottom: 1px solid transparent;
    transition: all 0.2s ease;
    line-height: 1.2;
}

#site-footer .footer-menu-wrap > ul.level-1 > li > a:hover {
    color: #ffffff;
    border-bottom-color: #f3d37c;
}

#site-footer .site-footer-inner {
    text-align: center;
    margin: 0;
    padding: 6px 0 0;
}

#site-footer .footer-text {
    font-size: 0.9rem;
    color: #bfbfbf;
    margin: 10px;
    line-height: 1.2;
}

#site-footer .footer-tag {
    color: #f3d37c;
    font-style: italic;
}