@import url("https://fonts.googleapis.com/css2?family=Cabin:wght@400;600;700&display=swap");

:root {
  --bg: #000000;
  --panel: #111216;
  --text: #ffffff;
  --muted: #b3b3b3;
  --brand: #3d00f5;
  --accent: #3d00f5;
  --font: "Cabin", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
}

a {
  color: var(--brand);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 24px;
}

.site-header {
  background: var(--panel);
  padding: 18px 0;
  border-bottom: 1px solid #1b1b1b;
}

.header-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.brand {
  color: var(--brand);
  font-weight: 800;
  font-size: 20px;
}

.nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.nav a {
  color: var(--text);
  padding: 10px 8px;
  border-radius: 8px;
  transition: 0.2s;
}

.nav a:hover {
  background: #191a22;
  box-shadow: 0 2px 0 rgba(61, 0, 245, 0.35);
}

main h1 {
  font-size: 32px;
  margin-bottom: 12px;
}

main p {
  font-size: 18px;
  color: var(--muted);
}

/* GALLERY STYLES */
.gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin-top: 24px;
}

.thumb {
  width: 180px;
  border: 2px solid #444;
  border-radius: 8px;
  overflow: hidden;
  background: #111;
}

.thumb img {
  width: 100%;
  height: 120px;
  object-fit: cover;
  display: block;
  transition: 0.2s ease-in-out;
}

.thumb img:hover {
  transform: scale(1.05);
}

/* PDF Viewer */
.pdf-frame {
  width: 100%;
  height: 85vh;
  border: none;
  margin: 24px 0;
  border-radius: 6px;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.4);
}

/* FOOTER */
.site-footer {
  text-align: center;
  padding: 24px;
  font-size: 14px;
  color: var(--muted);
  border-top: 1px solid #1b1b1b;
  background: var(--panel);
}

/* MOBILE FIXES */
@media (max-width: 768px) {
  .header-bar {
    flex-direction: column;
    align-items: center;
  }

  .nav {
    justify-content: center;
  }

  .thumb {
    width: 140px;
  }

  .thumb img {
    height: 100px;
  }
}
