/* Minimal personal header */
.site-header {
  width: 100%;
  background: rgba(20, 20, 20, 0.85);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid rgba(255, 204, 0, 0.15);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 28px;
}

.site-title {
  font-size: 1.4em;
  color: #ffcc00;
  text-decoration: none;
  text-shadow: 0 0 6px rgba(255, 204, 0, 0.4);
}

.nav-right .nav-link {
  margin-left: 22px;
  color: #ddd;
  text-decoration: none;
  font-size: 1em;
  transition: 0.2s;
}

.nav-right .nav-link:hover {
  color: #ffcc00;
  text-shadow: 0 0 6px rgba(255, 204, 0, 0.4);
}

/* Minimal footer styling */
.site-footer {
  width: 100%;
  background: rgba(20, 20, 20, 0.85);
  border-top: 1px solid rgba(255, 204, 0, 0.15);
  padding: 20px 28px;
  text-align: center;
  font-size: 0.9em;
  color: #aaa;
  margin-top: 60px;
}

.site-footer p {
  margin: 6px 0;
  line-height: 1.4;
}

/* Glyph container */
.glyphs {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
}

/* Individual glyphs */
.glyph {
  position: absolute;
  top: 20%;
  font-size: 0.9em;
  color: rgba(255, 204, 0, 0.35);
  text-shadow: 0 0 8px rgba(255, 204, 0, 0.25);
  animation: floatGlyphs 8s linear infinite;
  white-space: nowrap;
}

/* Floating animation */
@keyframes floatGlyphs {
  0% { transform: translateY(0px); opacity: 0.4; }
  50% { opacity: 0.7; }
  100% { transform: translateY(-40px); opacity: 0.4; }
}

/* Ensure hero section is the anchor for glyphs */
.projects-hero {
  position: relative;
  height: 260px; /* adjust if you want a taller hero */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: #111; /* or whatever your hero background is */
}

/* Container for floating glyphs */
.glyphs {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
}

/* Individual glyph styling */
.glyph {
  position: absolute;
  top: 30%;
  font-size: 0.9em;
  color: rgba(255, 204, 0, 0.35);
  text-shadow: 0 0 8px rgba(255, 204, 0, 0.25);
  white-space: nowrap;
  animation: floatGlyphs 8s linear infinite;
}

/* Floating animation */
@keyframes floatGlyphs {
  0% { transform: translateY(0px); opacity: 0.4; }
  50% { opacity: 0.7; }
  100% { transform: translateY(-40px); opacity: 0.4; }
}

/* Overlay text */
.overlay {
  position: relative;
  z-index: 10;
}

/* Ensure hero section anchors glyphs */
.projects-hero {
  position: relative;
  height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: #111;
}

/* Glyph container */
.glyphs {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
  z-index: 1;
}

/* Individual glyphs */
.glyph {
  position: absolute;
  top: 30%;
  font-size: 0.9em;
  color: rgba(255, 204, 0, 0.35);
  text-shadow: 0 0 8px rgba(255, 204, 0, 0.25);
  white-space: nowrap;
  animation: floatGlyphs 8s linear infinite;
}

/* Floating animation */
@keyframes floatGlyphs {
  0% { transform: translateY(0px); opacity: 0.4; }
  50% { opacity: 0.7; }
  100% { transform: translateY(-40px); opacity: 0.4; }
}

/* Overlay text stays on top */
.overlay {
  position: relative;
  z-index: 10;
}

/* Bright glowing title */
.glow-title {
  font-size: 2.4em;
  color: #ffcc00;
  text-shadow: 0 0 12px rgba(255, 204, 0, 0.6);
  font-weight: bold;
  margin-bottom: 12px;
}

/* Bright glowing subtitle */
.glow-sub {
  font-size: 1.2em;
  color: #eee;
  text-shadow: 0 0 8px rgba(255, 255, 255, 0.4);
  font-weight: 500;
}