/* =========================================
   MNCVCDII TENZA II - Clean Glass Styles
   ========================================= */

html { scroll-behavior: smooth; }
body { margin: 0; font-family: 'Inter', sans-serif; background-color: #000; }

/* Navbar Base */
nav {
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-brand-group:hover span {
    color: #facc15 !important;
}

/* Mobile Menu Links - Clean List Style */
#mobile-menu a {
    padding-top: 1rem;
    padding-bottom: 1rem;
}

/* Transitions */
nav a, nav span, nav img, #mobile-menu-btn i {
  transition: all 0.3s ease;
}

/* Scrollbar & Portfolio */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #1a1a1a; }
::-webkit-scrollbar-thumb { background: #eab308; border-radius: 10px; }
.portfolio-item img { transition: transform 0.5s ease; }
.portfolio-item:hover img { transform: scale(1.05); }

/* Initial state: Hidden and slightly shifted down */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out;
}

/* Active state: Visible and in original position */
.reveal.active {
  opacity: 1;
  transform: translateY(0);
}