/* reset margin padding*/
ul {
    margin: 0;
    padding: 0;
}

/* navbar */
.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: var(--secondary-color);
    padding: 10px 0;
    font-family: var(--font-family);
    width: 80%;
    margin: 0 auto;
}

.nav-links {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links li {
    margin-left: 40px;
}

.nav-links a {
    text-decoration: none;
    color: #dbdadbe1;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0;
    transition: color 0.3s ease;
    font-family: var(--font-family);
}

.navbar .nav-links a#static {
    color: #fff;
    pointer-events: none;
}

.navbar .nav-links a:not(#static):hover {
    color: #fff;
}

.nav-links a:hover {
    color: #fff;
}

.nav-buttons {
    display: flex;
    align-items: center;
}

.signin {
    color: #DBDADB;
    text-decoration: none;
    font-weight: bold;
    margin-right: 5px;
    padding: 8px 15px;
    border: 1px solid transparent;
    border-radius: 5px;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.signin i {
    display: inline-block;
    transition: transform 0.3s ease;
    margin-right: 5px;
}

.signin:hover {
    color: #fff;
    transform: translateX(5px);
}

.signin:hover i {
    transform: translateX(-7px); 
}

.navbar-divider {
    margin: 0 auto;
    width: 80%;
    border: 0;
    height: 1px;
    background-color: #333;
    margin-top: 10px;
}

.content {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 80vh;
    color: #fff;
}

.intro h1 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.intro p {
    margin-bottom: 1.5rem;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.dropdown {
    position: relative;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: var(--secondary-color);
    box-shadow: 0 0 15px rgba(128, 0, 128, 0.082);
    z-index: 1;
    top: 100%;
    left: 0;
    width: 300px;
    border-radius: 5px;
    opacity: 1;
    padding: 10px 0;
    transform: translateY(-20px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.dropdown:hover .dropdown-content {
    display: block;
    animation: slideDown 0.3s forwards;
}

.dropdown-hero {
    text-decoration: none;
    margin-left: 15px;
    color: #DBDADB;
    display: block;
    padding: 20px 0;
    position: relative;
}

.dropdown-description {
    color: #dbdadb9f; 
    font-size: small;
    padding-left: 30px;
}

.dropdown-divider {
    height: 1px;
    background-color: #3F3D3F;
    box-shadow: 0 0 15px rgba(128, 0, 128, 0.082);
    width: 95%;
    margin-top: 3px;
    margin-bottom: 3px;
    margin-left: auto;
    margin-right: auto;
}

.dropdown-hero:hover {
    transition: transform 0.3s;
    transform: translateX(3px);
}
