.cc-header {
  width: 100%;
  padding: 20px 0;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.cc-header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 40px;
}

.cc-title-block {
  text-align: center;
}

.cc-logo {
  width: 70px;
  height: auto;
  display: block;
  margin: 0 auto;
}

.cc-site-title {
  font-family: 'Cinzel Decorative', serif;
  font-size: 32px;
  margin: 5px 0 0;
  letter-spacing: 2px;
}

.cc-tagline {
  font-family: 'Cinzel Decorative', serif;
  font-size: 14px;
  opacity: 0.9;
  margin-top: -5px;
}

.cc-theme-toggle {
  background: none;
  border: none;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.cc-theme-toggle:hover {
  transform: scale(1.1);
}

.cc-nav ul {
  display: flex;
  justify-content: center;
  gap: 25px;
  padding: 15px 0;
  list-style: none;
  margin: 0;
}

.cc-nav a {
  font-family: 'Cinzel Decorative', serif;
  text-decoration: none;
  font-size: 16px;
  color: #222;
  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);
}
