/* Full-page parchment background */
body {
  margin: 0;
  font-family: "Georgia", "Times New Roman", serif;
  background: url("../assets/img/parchment-background-canon.png") center/cover fixed no-repeat;
  color: #3b2b1a;
}

.page-wrap {
  min-height: 100vh;
  background: rgba(243, 224, 178, 0.9); /* subtle overlay for readability */
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2rem 1rem 3rem;
}

/* Header strip */
.cc-header {
  width: 100%;
  max-width: 1100px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.cc-logo img {
  max-width: 110px;
  height: auto;
}

/* Center title */
.cc-title-block {
  text-align: center;
  flex: 1;
}

.cc-title-block h1 {
  margin: 0;
  letter-spacing: 0.14em;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
}

.cc-motto {
  margin-top: 0.4rem;
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

/* Hero image */
.cc-main {
  width: 100%;
  max-width: 900px;
  text-align: center;
}

.cc-hero {
  margin: 0 auto 1.5rem;
  border: 4px solid rgba(87, 63, 34, 0.5);
  padding: 0.35rem;
  background: rgba(255, 245, 220, 0.9);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.cc-hero img {
  display: block;
  width: 100%;
  height: auto;
}

/* Tagline / question */
.cc-tagline p {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* Optional button */
.cc-button {
  margin-top: 0.75rem;
  padding: 0.5rem 1.4rem;
  border-radius: 999px;
  border: 1px solid #4b3621;
  background: rgba(255, 246, 220, 0.95);
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  cursor: pointer;
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .cc-header {
    flex-direction: column;
    align-items: center;
  }

  .cc-logo img {
    max-width: 80px;
  }

  .cc-title-block h1 {
    font-size: 1.7rem;
  }

  .page-wrap {
    padding: 1.2rem 0.6rem 2rem;
  }
}
