@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;700;800&display=swap');

html {
    scroll-behavior: smooth;
}

body {
    transition: background-color 0.3s, color 0.3s;
}

.nav-link {
    font-size: 0.875rem;
    font-weight: 500;
    color: #4b5463;
    transition: color 0.2s;
}

.dark .nav-link {
    color: #f7f7f7;
}

.nav-link:hover {
    color: #968a73;
}

.mobile-link {
    display: block;
    padding: 0.75rem 0;
    font-size: 1rem;
    font-weight: 600;
    color: #4b5463;
    border-bottom: 1px solid #e5e7eb;
    transition: all 0.3s;
}

.dark .mobile-link {
    color: #f7f7f7;
    border-bottom-color: rgba(255, 255, 255, 0.1);
}

.mobile-link:hover {
    color: #968a73;
    padding-left: 0.5rem;
}

.btn-primary {
    display: inline-flex;
    height: 2.5rem;
    align-items: center;
    justify-content: center;
    border-radius: 0.5rem;
    background-color: #4b5463;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    font-size: 0.875rem;
    font-weight: 700;
    color: white;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    transition: all 0.2s;
}

.dark .btn-primary {
    background-color: #968a73;
    color: #18191a;
}

.btn-primary:hover {
    background-color: rgba(75, 84, 99, 0.9);
}

.dark .btn-primary:hover {
    background-color: rgba(150, 138, 115, 0.9);
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in-down {
    animation: fadeInDown 0.3s ease-out forwards;
}

@media (min-width: 1024px) {
    body {
        zoom: 0.9;
        width: 100%;
        overflow-x: hidden;
    }
}