:root {
  --color-primary: #4b2e83;
  --color-secondary: #f5f3ff;
  --color-accent: #ffb347;
  --color-text: #222222;
  --color-text-muted: #555555;
  --color-bg: #ffffff;

  --radius-soft: 12px;
  --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.06);
}

*, *::before, *::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Roboto", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--color-text);
  background-image: url("images/castle-hero.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  line-height: 1.6;

  /* Prevent layout collapsing on small screens */
  min-width: 700px;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  width: min(1100px, 100% - 2rem);
  margin: 0 auto;
}
.site-header {
  background: #ffffff;
  border-bottom: 1px solid #e5e2f0;
  position: sticky;
  top: 0;
  z-index: 10;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 0;
  gap: 1rem;

  /* Keep header stable */
  flex-direction: row !important;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.brand-logo {
  height: 40px;
}

.brand-name {
  font-weight: 700;
  font-family: "Poppins", system-ui, sans-serif;
}

.brand-tagline {
  display: block;
  font-size: 0.8rem;
  color: var(--color-text-muted);
}

.main-nav {
  display: flex;
  gap: 1rem;
  flex-wrap: nowrap !important; /* Prevent wrapping */
}

.nav-link {
  text-decoration: none;
  color: var(--color-text-muted);
  font-size: 0.95rem;
  padding: 0.35rem 0.6rem;
  border-radius: 999px;
}

.nav-link:hover,
.nav-link.active {
  color: var(--color-primary);
  background: var(--color-secondary);
}
.hero {
  position: relative;
  color: #ffffff;
  min-height: 55vh;
  display: flex;
  align-items: center;

  /* Keep hero stable */
  background: none;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(16, 10, 40, 0.8),
    rgba(16, 10, 40, 0.4)
  );
}

.hero-content {
  position: relative;
  padding: 4rem 0;
  max-width: 600px;
}

.hero h1 {
  font-family: "Poppins", system-ui, sans-serif;
  font-size: 2.2rem;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1rem;
  margin-bottom: 1.5rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.4rem;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
}

.btn-primary {
  background: var(--color-accent);
  color: #3b2600;
}

.btn-primary:hover {
  filter: brightness(0.95);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.6);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
}
.section {
  padding: 3rem 0;
}

.section-light .container {
  background: rgba(255, 255, 255, 0.85);
  padding: 2rem;
  border-radius: var(--radius-soft);
  box-shadow: var(--shadow-soft);
}

.section h2 {
  font-family: "Poppins", system-ui, sans-serif;
  margin-bottom: 1rem;
}

.card {
  background: #ffffff;
  border-radius: var(--radius-soft);
  padding: 1.5rem;
  box-shadow: var(--shadow-soft);
}

.cards {
  display: grid;
  gap: 1.5rem;
}
.meeting-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 1rem;
}

.meeting-column h3 {
  font-family: "Poppins", system-ui, sans-serif;
  margin-bottom: 0.5rem;
  text-decoration: underline;
}

.meeting-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.meeting-column li {
  padding: 0.25rem 0;
  font-size: 1rem;
}
.highlight-contact {
  font-size: 1.05rem;
  font-weight: 600;
}

.highlight-contact a {
  color: var(--color-primary);
}
.site-footer {
  background: #120b2a;
  color: #d9d4f0;
  padding: 1.5rem 0;
  margin-top: 2rem;
}

.footer-inner {
  font-size: 0.9rem;
}