  body {
      background-color: #121212;
      color: #f5f5f5;
      font-family: 'Inter', sans-serif;
    }
    
    .logo-text {
      font-family: 'Montserrat', sans-serif;
    }

    html {
      scroll-behavior: smooth;
    }
    
    .fade-out {
      opacity: 0;
    }
    /* ======= GLOBAL ======= */
body {
  background-color: #121212;
  color: #f5f5f5;
  font-family: 'Inter', sans-serif;
}

html {
  scroll-behavior: smooth;
}

.fade-out {
  opacity: 0;
}

.logo-text {
  font-family: 'Montserrat', sans-serif;
}

/* ======= HEADER ======= */
header {
  background-color: #1f2937;
  padding: 1rem;
}

nav a:hover {
  color: #facc15;
}

#menu-toggle {
  color: #facc15;
  font-size: 1.5rem;
}

/* ======= MOBILE MENU ======= */
#mobile-menu {
  transition: all 0.3s ease-in-out;
  transform-origin: top;
}

#mobile-menu a {
  display: block;
}

#mobile-menu.show {
  display: block;
  transform: scaleY(1);
}

/* ======= TOAST ======= */
#toast {
  position: fixed;
  bottom: 1rem;
  right: 1rem;
  background-color: #22c55e;
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 0.375rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  z-index: 50;
}

/* ======= GALLERY CARD HOVER ======= */
.hover\:scale-105:hover {
  transform: scale(1.05);
  transition: transform 0.2s ease-in-out;
}

#toast {
  position: fixed;
  bottom: 1rem;
  right: 1rem;
  background-color: #22c55e;
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 0.375rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  z-index: 50;
}
