.fade-in {
    animation: fadeIn 0.6s ease-out forwards;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.navbar-home {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
    color: white;
    background: transparent;
    border-bottom: 1px solid transparent;
    transition: all 0.5s ease;
}

.navbar-home .navbar-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 9999px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: all 0.5s ease;
}

.navbar-home.scrolled {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    background: rgba(245, 245, 240, 0.98);
    border-bottom: 1px solid transparent;
    transition: all 0.5s ease, border-bottom 0.5s ease 0.3s;
}

.navbar-home.scrolled .navbar-inner {
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border: none;
    box-shadow: none;
    color: #1A1A1A;
    border-radius: 0;
    max-width: 100%;
    padding: 0.5rem 2rem;
}

.navbar-solid {
    background-color: #F5F5F0;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    color: #1A1A1A;
    border-bottom: 1px solid #e5e5e5;
}

.navbar-solid .navbar-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0.5rem 1.5rem;
}

.navbar-solid .nav-link:hover {
    background: rgba(0, 0, 0, 0.05);
}

.img-zoom-container {
    overflow: hidden;
}
.img-zoom-container img {
    transition: transform 0.7s ease;
}
.img-zoom-container:hover img {
    transform: scale(1.05);
}

::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #F5F5F0;
}
::-webkit-scrollbar-thumb {
    background: #C4B29F;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #1A1A1A;
}

.nav-link.active {
    color: #C4B29F;
}

.hero-overlay {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.7) 0%, rgba(26, 26, 26, 0.4) 50%, rgba(26, 26, 26, 0.6) 100%);
}

@keyframes borderGlow {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

@keyframes slideUp {
    from { 
        opacity: 0; 
        transform: translateY(30px); 
    }
    to { 
        opacity: 1; 
        transform: translateY(0); 
    }
}

.animate-slide-up {
    animation: slideUp 0.8s ease-out forwards;
}

.animation-delay-200 { animation-delay: 0.2s; }
.animation-delay-400 { animation-delay: 0.4s; }
.animation-delay-600 { animation-delay: 0.6s; }