html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; }

/* Navbar: slide down entrance */
#navbar {
    transform: translateY(-100%);
    animation: navDown 0.5s ease-out 0.1s forwards;
    transition: top 0.3s ease;
}
@keyframes navDown {
    to { transform: translateY(0); }
}

/* Logo: drop + bounce */
#navbar .nav-logo {
    opacity: 0;
    animation: logoDrop 0.6s ease-out 0.7s forwards;
}
@keyframes logoDrop {
    0% { opacity: 0; transform: translateY(-200px) rotate(-5deg); }
    50% { opacity: 1; transform: translateY(8px) rotate(1deg); }
    70% { transform: translateY(-4px) rotate(0); }
    85% { transform: translateY(2px); }
    100% { opacity: 1; transform: translateY(0) rotate(0); }
}

.nav-link {
    position: relative;
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: #F4A300;
    transition: width 0.3s ease;
}
.nav-link:hover::after {
    width: 100%;
}

.mobile-menu {
    transform: translateX(100%);
    transition: transform 0.3s ease;
    background: rgba(28, 20, 18, 0.98);
}
.mobile-menu.open {
    transform: translateX(0);
}

.photo-card {
    overflow: hidden;
    border-radius: 8px;
}
.photo-card img {
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.photo-card:hover img {
    transform: scale(1.05);
}

.section-divider {
    width: 60px;
    height: 2px;
    background: linear-gradient(to right, #D4930D, #F4A300);
}

.quote-mark {
    font-family: 'Cormorant Garamond', serif;
    font-size: 6rem;
    line-height: 1;
    color: #D4930D;
    opacity: 0.3;
}

.stat-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 50;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
}
.whatsapp-float svg {
    width: 32px;
    height: 32px;
    fill: white;
}

/* Lightbox */
.lightbox-overlay {
    position: fixed;
    inset: 0;
    z-index: 100;
    background: rgba(0,0,0,0.92);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}
.lightbox-overlay.active {
    opacity: 1;
    pointer-events: all;
}
.lightbox-overlay img {
    max-width: 90vw;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
    transform: scale(0.9);
    transition: transform 0.3s ease;
}
.lightbox-overlay.active img {
    transform: scale(1);
}
.lightbox-close {
    position: absolute;
    top: 20px;
    right: 24px;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    transition: background 0.2s;
}
.lightbox-close:hover {
    background: rgba(255,255,255,0.2);
}
.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: white;
    font-size: 2.5rem;
    cursor: pointer;
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    transition: background 0.2s;
    user-select: none;
}
.lightbox-nav:hover {
    background: rgba(255,255,255,0.25);
}
.lightbox-prev { left: 16px; }
.lightbox-next { right: 16px; }
.lightbox-counter {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255,255,255,0.6);
    font-size: 0.85rem;
    font-family: 'Inter', sans-serif;
}