/* ----------------------------------------
   UNIVERSAL HEADER / NAV FOR ALL PAGES
   ---------------------------------------- */

/* Align with index.html typography */
:root {
  --header-font: 'Raleway', sans-serif;
  --header-color: #ffffff;
  --header-hover: #e50914;
  --header-size: 0.95rem;
  --header-weight: 500;
}

/* Header container (in header.html) */
.header-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  padding: 20px;
  z-index: 3;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Home link (logo text) */
.home-link {
  font-family: var(--header-font);
  color: var(--header-color);
  font-size: var(--header-size);
  font-weight: var(--header-weight);
  text-decoration: none;
  letter-spacing: 0.3px;
}

/* Header right-side group (icons + links) */
.header-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

/* Link container */
.header-links {
  display: flex;
  gap: 20px;
}

/* Individual links */
.header-links a {
  color: var(--header-color);
  font-family: var(--header-font);
  font-size: var(--header-size);
  font-weight: var(--header-weight);
  text-decoration: none;
  letter-spacing: 0.3px;
  transition: color 0.2s ease;
}

.header-links a:hover {
  color: var(--header-hover);
}

/* Divider under banner */
.banner-divider {
  width: 100%;
  height: 1px;
  background-color: #e50914;
}

/* Shared banner image */
.banner-static {
  width: 100%;
  height: 400px;
  overflow: hidden;
}

.banner-static img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.banner-text {
  position: absolute;
  bottom: 30px;
  left: 30px;
  text-align: left;
  color: black;
  z-index: 3;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 8px;
}

.logout-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #ffffff !important;
    font-weight: bold;
    text-decoration: none;
    cursor: pointer;
}

.logout-link:hover {
    opacity: 0.75;
}

.logout-icon {
    width: 22px;
    height: 22px;
    stroke-width: 2.5;
    color: #ffffff;
}
