html, body {
    margin: 0;
    background-color: rgb(0, 18, 33);
    color: white;
    font-family: 'Rubik', sans-serif;
}

.bg-image {
    position: absolute;
    background: url('../images/bg.jpg') center/cover no-repeat;
    height: 60vh;
    width: 100%;
    -webkit-mask-image: linear-gradient(to bottom, black 40%, transparent 100%);
    mask-image: linear-gradient(to bottom, black 40%, transparent 100%);
    opacity: 0.1;
}

.container {
    padding: 20px 18%;
    box-sizing: border-box;
    width: 100%;
}

.navbar::before {
    content: "";
    background: url('../images/logo.png') no-repeat center;
    background-size: contain;
    height: 40px;
    width: 40px;
    display: inline-block;
}

.navbar {
    z-index: 999;
    
    display: flex;
    align-items: center;
    gap: 20px;

    height: 50px;
    padding: 10px 20px;
    border-radius: 10px;

    background: rgba(255, 255, 255, 0.08);
    background-image: linear-gradient(rgba(255,255,255,0.05), rgba(255,255,255,0)); 

    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);

    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);

    transition: transform 0.5s ease;
}

.navbar ul {
    width: 100%;
    display: flex;
    list-style-type: none;
    text-decoration: none;
    justify-content: flex-end;

    gap: 0.8rem;
}

.divider {
  width: 1px;
  background-color: rgba(255, 255, 255, 0.1);
  /* stretch full height of container */
  align-self: stretch;
}

.navbar a {
    all: unset; /* resets almost all CSS properties */
    cursor: pointer; /* optional: keep pointer cursor */
    color: inherit; /* make sure color inherits from parent */
    text-decoration: none; /* no underline */
}

.navbar li {

    background-color: rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 10px;
    border-radius: 10px;
    font-size: 0.8rem;

    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);

}

.navbar li:hover {

    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);

    transition: 0.3s ease;
    cursor: pointer;

    opacity: 0.6;
}

.navbar li.disabled {
    cursor: not-allowed;
    opacity: 0.4;
}

.navbar .socials {

    height: 100%;
    display: flex;
    align-items: center;

    gap: 1rem;
}

.navbar .socials a {

    color: white;
    text-decoration: none;


}

.navbar .socials a:hover {

    opacity: 0.4;
    transition: 0.2s ease;
}

.vertical-divider {
    height: 1px;
    width: 10px;
    background-color: rgba(255, 255, 255, 0.1);
    /* stretch full height of container */
}

.content.visible {

    padding-top: 50px !important;

}

.navbar.visible {
    /* existing fixed + animation styles */
    position: fixed;
    top: 0;
    left: 18%;
    right: 18%;
    transform: translateY(-100%);
    animation: slideDown 0.5s forwards;

    /* remove rounding only on top corners */
    border-top-left-radius: 0;
    border-top-right-radius: 0;

    border-top: 0;
}

@keyframes slideDown {
    to {
        transform: translateY(0);
    }
}

.status::before {

    content: "";
    height: 10px;
    width: 10px;
    border-radius: 50%;
    background-color: orange;
    display: inline-block;
}

.status {

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;

    padding-bottom: 20px;
    font-size: 0.65rem;
    font-weight: bolder;
}

footer {

    height: 50px;
    font-size: 0.7rem;
    padding: 10px 0 0 0;
    margin: 20px;

    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.7;

}

