/* Include modular CSS */
@import url('nav.css');
@import url('hero.css');
@import url('tray.css');

/* Hide scrollbar in WebKit browsers (Chrome, Safari, Edge) */
body::-webkit-scrollbar {
  width: 0px;
  background: transparent; /* optional: just makes scrollbar invisible */
}

/* Hide scrollbar in Firefox */
body {
  scrollbar-width: none; /* hides scrollbar */
  margin: 0;
  padding: 0;
  font-family: "Work Sans", sans-serif;
  background-color: #1c2c23;
}

.material-symbols-rounded.icon {
  font-variation-settings:
    "FILL" 0,
    "wght" 400,
    "GRAD" 0,
    "opsz" 36;
  font-size: 16px; /* matches small meta text */
  vertical-align: -2px; /* aligns perfectly with text */
  margin-right: 4px; /* spacing before word */
}

/* --------------------------
   Lightbox Container
--------------------------- */
.lightbox {
    display: none;               /* Start fully hidden */
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.92);
    z-index: 9999;
    justify-content: center;
    align-items: center;
    padding: 2rem;
}

/* When active, show the lightbox */
.lightbox.active {
    display: flex;
    animation: fadeIn 0.25s ease-out;
}

/* --------------------------
   Lightbox Image
--------------------------- */
.lightbox-image {
    max-width: 90%;
    max-height: 90%;
    border-radius: 6px;
    box-shadow: 0 0 25px rgba(0,0,0,0.6);
    object-fit: contain;
}

/* --------------------------
   Close Button
--------------------------- */
.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: #ffffff;
    font-size: 3rem;
    cursor: pointer;
    user-select: none;
    transition: opacity 0.2s ease;
}

.lightbox-close:hover {
    opacity: 1;
}

/* --------------------------
   Next / Prev Arrows
--------------------------- */
.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    font-size: 4rem;
    color: #ffffff;
    cursor: pointer;
    user-select: none;
    padding: 0 20px;
    transform: translateY(-50%);
    opacity: 0.7;
    transition: opacity 0.2s ease;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    opacity: 1;
}

.lightbox-prev { left: 10px; }
.lightbox-next { right: 10px; }

/* --------------------------
   Fade-in Animation
--------------------------- */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}


