/* ============================================================
   HEADER — MAJESTIC CENTRED BRAND BLOCK (TRANSPARENT VERSION)
   ============================================================ */

.cc-header {
  width: 100%;
  padding: 20px 0 10px;
  background: transparent !important;
  backdrop-filter: none !important;
  border-bottom: none !important;
  box-shadow: none !important;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.cc-header-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  padding: 0 40px;
  background: transparent !important;
}

/* ============================================================
   HEADER TEXT — VIBRANT + GLOWING FOR MAGICAL BACKGROUNDS
   ============================================================ */

.cc-header *,
.cc-nav a {
  color: #ffffff !important;
  text-shadow: 0 0 8px rgba(255,255,255,0.9);
  font-weight: 600;
}

/* ============================================================
   BRAND BLOCK — CENTRED CROWN + TITLE + TAGLINE
   ============================================================ */

.cc-title-block {
  text-align: center;
  margin: 0 auto;
}

.cc-logo {
  width: 90px;
  height: auto;
  display: block;
  margin: 0 auto 5px;
}

.cc-site-title {
  font-family: 'Cinzel Decorative', serif;
  font-size: 34px;
  margin: 0;
  letter-spacing: 2px;
}

.cc-tagline {
  font-family: 'Cinzel Decorative', serif;
  font-size: 15px;
  opacity: 0.95;
  margin-top: 4px;
  text-shadow: 0 0 6px rgba(255,255,255,0.8);
}

/* ============================================================
   THEME TOGGLE — MAGICAL GLOW + SHIMMER + PERFECT SIZE
   ============================================================ */

.cc-theme-toggle {
  position: absolute;
  right: 40px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  pointer-events: auto;
  z-index: 2000;
}

.cc-theme-icon {
  width: 54px !important;
  height: 54px !important;
  transition: transform 0.35s ease, filter 0.6s ease, opacity 0.6s ease;
  filter: drop-shadow(0 0 12px rgba(255,255,255,0.75));
}

/* Hover pulse */
.cc-theme-toggle:hover .cc-theme-icon {
  transform: scale(1.12);
  filter: drop-shadow(0 0 20px rgba(255,255,255,1));
}

/* Night mode shimmer */
body.dark-mode .cc-theme-icon {
  filter: drop-shadow(0 0 18px rgba(255,255,255,1));
  animation: toggleShimmer 5s ease-in-out infinite;
}

@keyframes toggleShimmer {
  0%   { filter: drop-shadow(0 0 14px rgba(255,255,255,0.9)); }
  50%  { filter: drop-shadow(0 0 28px rgba(255,255,255,1)); }
  100% { filter: drop-shadow(0 0 14px rgba(255,255,255,0.9)); }
}

/* ============================================================
   NAVIGATION — CENTRED + GLOWING
   ============================================================ */

.cc-nav {
  background: transparent !important;
  border-bottom: none !important;
}

.cc-nav ul {
  display: flex;
  justify-content: center;
  gap: 28px;
  padding: 15px 0;
  list-style: none;
  margin: 0;
}

.cc-nav a {
  font-family: 'Cinzel Decorative', serif;
  text-decoration: none;
  font-size: 17px;
  transition: color 0.3s ease, text-shadow 0.3s ease;
}

body.dark-mode .cc-nav a {
  color: #fff;
  text-shadow: 0 0 8px rgba(255,255,255,0.8);
}
