html {
    scroll-behavior: smooth;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 4rem;
    background-color: transparent;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.logo a {
    color: #fff;
    text-decoration: none;
    font-weight: 550;
    letter-spacing: 2px;
    font-size: 1.5rem;
    font-weight: bold;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-weight: 550;
    letter-spacing: 2px;
    transition: color 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 550;
    letter-spacing: 2px;
}

.contact-info {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.contact-button {
    background-color: var(--primary-color);
    color: #fff;
    padding: 0.5rem 1.5rem;
    border-radius: 4px;
    font-weight: 500;
    letter-spacing: 2px;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.contact-button:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
}

.animate-logo {
    display: inline-block;
    transition: transform 0.3s ease;
}

.animate-nav {
    position: relative;
    transition: all 0.3s ease;
}

.animate-nav::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.animate-nav:hover::after {
    width: 100%;
}

.animate-button {
    transition: all 0.3s ease;
}

.animate-button:hover {
    box-shadow: 0 0 15px var(--primary-color);
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.navbar {
    animation: fadeInDown 0.5s ease-out;
}