/* ==========================
   RESET
========================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    text-align:center;
    background:#000407;
    font-family:Arial, Helvetica, sans-serif;
    color:white;
}


/* ==========================
   NAVBAR
========================== */

.navbar{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    padding:15px 35px;
    background:rgba(0,0,0,.65);
    backdrop-filter:blur(10px);
    display:flex;
    justify-content:space-between;
    align-items:center;
    z-index:1000;
}


/* ==========================
   BREADCRUMB NAVIGATION
========================== */

#breadcrumb{
    display:flex;
    list-style:none;
}

#breadcrumb li a{
    position:relative;
    display:flex;
    align-items:center;
    height:42px;
    padding:0 18px 0 12px;
    margin-right:26px;

    background:#d9b70b;
    color:white;
    text-decoration:none;
    font-size:17px;
    font-weight:600;

    transition:.3s ease;
}

#breadcrumb li a::before,
#breadcrumb li a::after{
    content:"";
    position:absolute;
    top:0;
    width:0;
    height:0;
    border-top:21px solid transparent;
    border-bottom:21px solid transparent;
}

#breadcrumb li a::before{
    left:-20px;
    border-right:10px solid #d9b70b;
}

#breadcrumb li a::after{
    left:100%;
    border-left:10px solid #d9b70b;
}

#breadcrumb li:first-child a{
    border-radius:5px 0 0 5px;
    padding-left:18px;
}

#breadcrumb li:first-child a::before{
    display:none;
}

#breadcrumb li:last-child a{
    border-radius:0 5px 5px 0;
}

#breadcrumb li:last-child a::after{
    display:none;
}

#breadcrumb li a:hover{
    background:#a60000;
}

#breadcrumb li a:hover::before{
    border-right-color:#a60000;
}

#breadcrumb li a:hover::after{
    border-left-color:#a60000;
}


/* ==========================
   FOOTER
========================== */

.footer{
    margin-top:5px;
    padding:50px 20px 25px;
    background:linear-gradient(to top,#020507,#08131b);
    border-top:3px solid #d9b70b;
}

.footer-content{
    max-width:900px;
    margin:auto;
}

.footer h3{
    color:#d9b70b;
    font-size:2rem;
    margin-bottom:15px;
    letter-spacing:1px;
}

.footer p{
    color:#d7d7d7;
    line-height:1.7;
    font-size:1rem;
    margin-bottom:15px;
}

.footer-links{
    display:flex;
    justify-content:center;
    gap:35px;
    flex-wrap:wrap;
    margin:25px 0;
}

.footer-links a{
    color:#f4d35e;
    text-decoration:none;
    font-weight:600;
    transition:.3s ease;
}

.footer-links a:hover{
    color:white;
}

.copyright{
    margin-top:30px;
    padding-top:18px;
    border-top:1px solid rgba(255,255,255,.15);
    color:#9ca3af;
    font-size:.9rem;
}