/* ============================================================
   CROWN CREATIVES — HEADER v6.3
   Center crown, corner toggles, nav below, transparent buttons
============================================================ */

.cc-header {
  width: 100%;
  padding: 20px 0 10px;
  position: relative;
  z-index: 1000;
  background: transparent;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* ------------------------------------------------------------
   CORNER TOGGLES (same row as crown)
------------------------------------------------------------ */

.cc-header-left,
.cc-header-right {
  position: absolute;
  top: 20px;
}

.cc-header-left { left: 20px; }
.cc-header-right { right: 20px; }

/* Transparent, clean buttons */
.cc-toggle {
  background: none !important;
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
  padding: 0;
  cursor: pointer;
}

.cc-toggle img {
  width: 48px;   /* 100% larger */
  height: 48px;
  object-fit: contain;
  filter: drop-shadow(0 0 6px rgba(255,255,255,0.6));
  transition: transform 0.2s ease, filter 0.2s ease;
}

.cc-toggle:hover img {
  transform: scale(1.15);
  filter: drop-shadow(0 0 10px rgba(255,255,255,1));
}

/* Active sound state */
.cc-toggle-active img {
  filter: drop-shadow(0 0 12px rgba(0,255,180,1));
}

/* ------------------------------------------------------------
   CENTER BLOCK — CROWN + TITLE + TAGLINE
------------------------------------------------------------ */

.cc-header-center {
  text-align: center;
  margin-top: 0;
}

.cc-header-crown {
  width: 90px;
  height: auto;
  margin-bottom: 6px;
}

.cc-header-title {
  font-family: 'Cinzel Decorative', serif;
  font-size: 34px;
  color: #fff;
  margin: 0;
  text-shadow: 0 0 8px rgba(255,255,255,0.9);
}

.cc-header-tagline {
  font-family: 'Cinzel Decorative', serif;
  font-size: 15px;
  color: #fff;
  opacity: 0.9;
  margin-top: 4px;
  margin-bottom: 14px;
  text-shadow: 0 0 6px rgba(255,255,255,0.8);
}

/* ------------------------------------------------------------
   NAVIGATION
------------------------------------------------------------ */

.cc-header-nav {
  display: flex;
  gap: 28px;
  justify-content: center;
}

.cc-header-nav a {
  font-family: 'Cinzel Decorative', serif;
  text-decoration: none;
  font-size: 17px;
  color: #fff;
  text-shadow: 0 0 8px rgba(255,255,255,0.9);
  transition: opacity 0.3s ease;
}

.cc-header-nav a:hover {
  opacity: 0.7;
}

/* ------------------------------------------------------------
   MOBILE
------------------------------------------------------------ */

@media (max-width: 768px) {

  .cc-toggle img {
    width: 40px;
    height: 40px;
  }

  .cc-header-left { left: 12px; }
  .cc-header-right { right: 12px; }

  .cc-header-crown {
    width: 70px;
  }

  .cc-header-title {
    font-size: 26px;
  }

  .cc-header-tagline {
    font-size: 13px;
  }

  .cc-header-nav {
    flex-wrap: wrap;
    gap: 18px;
  }
}
