/* Perfect header + body spacing – content never hides under header */

.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(12,10,9,0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid #ea580c33;
  padding: 0.6rem 4vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 10vh;
  min-height: 52px;
  max-height: 72px;
}

.site-header .title {
  display: flex;
  align-items: baseline;
  gap: 1.2vw;
  font-family: 'Cinzel', serif;
  font-weight: 900;
  white-space: nowrap;
}

.title-main {
  font-size: clamp(1.6rem, 6vw, 2.5rem);
  background: linear-gradient(90deg, #f59e0b, #ea580c, #dc2626);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 0 2.5vw rgba(234,88,12,0.6);
}

.title-sub {
  font-size: clamp(0.9rem, 3vw, 1.3rem);
  color: #fbbf24;
  opacity: 0.9;
  letter-spacing: 0.15em;
}

.header-actions {
  display: flex;
  gap: clamp(0.8rem, 3.5vw, 1.8rem);
  align-items: center;
}

.header-actions a {
  color: #fbbf24;
  font-size: clamp(1.5rem, 5vw, 2rem);
  transition: all .3s ease;
  text-decoration: none;
}

.header-actions a:hover {
  color: #ea580c;
  transform: scale(1.3);
}

/* Body starts exactly below the header – no overlap ever */
body {
  padding-top: 10vh !important;   /* matches header height */
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: #0c0a09;
}

main {
  flex: 1;
  padding: 4vh 5vw;
}

/* Footer */
.site-footer {
  margin-top: auto;
  padding: 2vh 4vw;
  text-align: center;
  background: rgba(12,10,9,0.9);
  border-top: 1px solid #ea580c22;
  font-size: clamp(0.75rem, 2.2vw, 0.95rem);
  color: #fbbf2460;
}
.site-footer a { color: #ea580c; text-decoration: none; }
.site-footer a:hover { text-decoration: underline; }
