
@font-face {
  font-family: "marathon";
  src: url("/fonts/body.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

body {
  font-family: "marathon";
  margin: 0;
  background: #111;
  color: white;
}

/* Hotbar / Tabs */
.tabs {
  display: flex;
  gap: 12px;
  padding: 14px 20px;

  /* gradient background */
  background: linear-gradient(
    135deg,
    #0f0f0f,
    #1a1a1a,
    #0f0f0f
  );

  /* neon top border accent */
  border-bottom: 2px solid #c3ff0b;

  /* glow */
  box-shadow: 0 0 20px rgba(195,255,11,0.15);
}

/* Individual tab */
.tab {
  padding: 10px 22px;
  cursor: pointer;
  border-radius: 5px;

  background: rgba(255,255,255,0.05);
  color: #ddd;

  transition: all 0.25s ease;
  border: 1px solid transparent;
  text-align: center;
}

/* Hover effect */
.tab:hover {
  border-color: #c3ff0b;
  color: white;
  box-shadow: 0 0 12px rgba(195,255,11,0.4);
}

/* Active tab */
.tab.active {
  color: black;

  /* neon gradient button */
  background: linear-gradient(
    135deg,
    #c3ff0b,
    #8fd400
  );



  border-color: #c3ff0b;
}

/* Make tabs layout left + right */
.tabs {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

/* Center title */
.page-title {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  font-size: 22px;
  color: #c3ff0b;
  letter-spacing: 1px;
  text-shadow: 0 0 10px rgba(195,255,11,0.5);
  pointer-events: none; /* prevents blocking clicks */
}

/* Left side tabs */
.tab-group {
  display: flex;
  gap: 12px;
}

/* Logo container */
.logo-container {
  display: flex;
  align-items: center;
}

/* Logo image styling */
.logo-container img {
  height: 40px; /* change size here */
  width: auto;

  transition: transform 0.2s ease, filter 0.2s ease;

  /* subtle glow to match neon theme */
}


/* Gallery grid */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 12px;
  padding: 20px;
}

.gallery img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  cursor: pointer;
  border-radius: 8px;
  transition: transform 0.2s;
}

.gallery img:hover {
  transform: scale(1.05);
}

/* Fullscreen viewer */
.viewer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.9);
  display: none;
  align-items: center;
  justify-content: center;
}

.viewer img {
  max-width: 90%;
  max-height: 90%;
}

/* Bottom credits bar */
.credits {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;

  padding: 10px 20px;
  text-align: center;

  font-size: 14px;
  color: #aaa;

  background: linear-gradient(
    135deg,
    #0f0f0f,
    #1a1a1a
  );

  border-top: 2px solid #c3ff0b;

  box-shadow: 0 -4px 20px rgba(195,255,11,0.15);
}

.home {
  padding: 60px 40px;
  max-width: 900px;
  margin: auto;
  line-height: 1.6;
}

.home h1 {
  color: #c3ff0b;
}

.home p {
  color: #ddd;
  font-size: 18px;
}

.dropdown-container select {
  background: rgba(255,255,255,0.05);
  color: white;
  border: 1px solid #c3ff0b;
  padding: 10px 20px;
  border-radius: 6px;
  font-family: "marathon";
  font-size: 16px;
  cursor: pointer;
  outline: none;
}

/* Hamburger button */
.hamburger {
  font-size: 28px;
  cursor: pointer;
  color: #c3ff0b;
  padding: 6px 12px;
  user-select: none;
}

.hamburger:hover {
  text-shadow: 0 0 10px rgba(195,255,11,0.7);
}

/* Dropdown menu */
.menu {
  position: absolute;
  top: 60px;
  left: 20px;
  width: 250px;

  background: linear-gradient(135deg, #0f0f0f, #1a1a1a);
  border: 1px solid #c3ff0b;
  border-radius: 8px;

  box-shadow: 0 0 20px rgba(195,255,11,0.15);

  display: none;
  flex-direction: column;
  overflow: hidden;
  z-index: 1000;
}

/* Individual menu items */
.menu-item {
  padding: 14px 18px;
  cursor: pointer;
  color: #ddd;
  transition: 0.2s;
}

.menu-item:hover {
  background: rgba(195,255,11,0.1);
  color: #c3ff0b;
}
