@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700;900&family=Poppins:wght@300;400;600;700&display=swap');

.serif { font-family: 'Playfair Display', serif; }
.sans { font-family: 'Poppins', sans-serif; }

body { scroll-behavior: smooth; background-color: #050505; color: #e5e7eb; }

.neon-text {
    text-shadow: 0 0 15px rgba(22, 163, 74, 0.4);
}

.nav-link {
    position: relative;
    padding-bottom: 4px;
    cursor: pointer;
    transition: all 0.3s;
    color: #9ca3af;
}
.nav-link:hover { color: #16a34a; }
.nav-link::after {
    content: '';
    position: absolute;
    width: 0; height: 2px;
    bottom: 0; left: 0;
    background-color: #16a34a;
    transition: width 0.3s;
}
.nav-link:hover::after { width: 100%; }

.nav-link-special {
    background: #16a34a;
    color: white;
    padding: 8px 20px;
    border-radius: 99px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    cursor: pointer;
}
.nav-link-special:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(22, 163, 74, 0.3);
}

.lightbox-overlay {
    z-index: 9999;
    background-color: rgba(0, 0, 0, 0.95);
    display: none;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    backdrop-filter: blur(10px);
}

.lightbox-content { max-width: 100%; max-height: 75vh; object-fit: contain; }
body.modal-open { overflow: hidden; }

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
.animate-fadeIn { animation: fadeInUp 0.8s ease forwards; }