@keyframes fadeInSoft {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes glowEffect {
    0% { box-shadow: 0 0 5px rgba(201, 169, 89, 0.3); }
    50% { box-shadow: 0 0 15px rgba(201, 169, 89, 0.6); }
    100% { box-shadow: 0 0 5px rgba(201, 169, 89, 0.3); }
}

@keyframes subtleHover {
    0% { transform: scale(1); }
    50% { transform: scale(1.02); }
    100% { transform: scale(1); }
}

body {
    animation: fadeInSoft 1s ease-out;
}

header {
    transition: background-color 0.5s ease;
}

.nav-links a {
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.nav-links a:hover {
    animation: subtleHover 0.5s ease;
}

.logo-container img {
    transition: transform 0.4s ease;
}

.logo-container img:hover {
    animation: glowEffect 2s infinite;
    transform: scale(1.05);
}

section {
    opacity: 0;
    transform: translateY(20px);
    transition: all 1s ease;
}

section.active {
    opacity: 1;
    transform: translateY(0);
}

.btn {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(201, 169, 89, 0.3), transparent);
    transition: all 0.5s ease;
}

.btn:hover::before {
    left: 100%;
}

html {
    scroll-behavior: smooth;
}