@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600;700&family=Lora:ital,wght@0,400;0,500;1,400&display=swap');

/* ── St. Bishoy Shared Styles ── */
* { box-sizing: border-box; margin: 0; padding: 0; }
html, body { overflow-x: hidden; }
:root { color-scheme: light only; }

:root {
  --gold: #C8973A;
  --gold-light: #E8C97A;
  --gold-dark: #8B6520;
  --deep: #2C1A0E;
  --warm: #6B3A1F;
  --cream: #FAF6EE;
  --cream2: #F2EAD8;
  --text: #2C1A0E;
  --muted: #7A5C3A;
  --border: rgba(200,151,58,0.25);
}

body {
  font-family: 'Lora', Georgia, serif;
  background: var(--cream);
  color: var(--text);
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* ── NAV ── */
.c-nav {
  background: var(--deep);
  padding: 0 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  position: sticky;
  top: 0;
  z-index: 200;
}
@media (min-width: 769px) {
  .c-nav { height: 110px; }
  #nav-logo-img { height: 100px !important; width: 100px !important; }
}
.c-nav-logo {
  font-family: 'Cinzel', serif;
  color: var(--gold);
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.25;
  cursor: pointer;
  white-space: nowrap;
  background: var(--deep);
  display: flex;
  align-items: center;
  height: 100%;
  flex-shrink: 0;
  text-decoration: none;
}
.c-nav-logo span { display: block; font-size: 17px; color: var(--gold-light); font-weight: 600; letter-spacing: 0.14em; }
.c-nav-logo .nav-location { font-size: 17px; color: var(--gold-light); font-weight: 600; letter-spacing: 0.14em; margin-top: 0; }

@media (max-width: 768px) {
  .c-nav-logo { font-size: 16px; letter-spacing: 0.04em; }
  .c-nav-logo span { font-size: 12px; letter-spacing: 0.08em; }
  .c-nav-logo .nav-location { font-size: 12px; letter-spacing: 0.08em; }
  #nav-logo-img { height: 48px !important; width: 48px !important; }
}

.c-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  background: none;
  border: 1px solid rgba(200,151,58,0.35);
  border-radius: 6px;
  cursor: pointer;
  padding: 8px;
  flex-shrink: 0;
  -webkit-tap-highlight-color: transparent;
  outline: none;
}
.c-hamburger span {
  display: block;
  height: 2px;
  background: var(--gold) !important;
  border-radius: 2px;
  transition: all 0.3s ease;
  transform-origin: center;
}
.c-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.c-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.c-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.c-nav-links {
  display: flex !important;
  flex-direction: row;
  gap: 0;
  position: static;
  background: var(--deep);
  border: none;
  box-shadow: none;
  z-index: 190;
  padding: 0;
  margin-left: auto;
}
.c-nav-links a {
  background: none;
  color: rgba(255,255,255,0.92);
  font-family: 'Cinzel', serif; font-size: 13px; font-weight: 600; letter-spacing: 0.05em;
  padding: 0 0.45rem; cursor: pointer;
  transition: color 0.2s, border-bottom-color 0.2s;
  text-transform: uppercase;
  text-align: center;
  border: none;
  border-bottom: 2px solid transparent;
  white-space: nowrap;
  height: 68px;
  display: flex;
  align-items: center;
  text-decoration: none;
}
.c-nav-links a:hover { color: var(--gold); border-bottom-color: var(--gold); }
.c-nav-links a.active { color: var(--gold); border-bottom-color: var(--gold); }
.c-nav-links a.festival-link { color: var(--gold-light); font-weight: 700; border-bottom-color: transparent !important; }

@media (max-width: 768px) {
  .c-hamburger { display: flex; }
  .c-nav-links {
    display: none !important;
    flex-direction: column;
    position: fixed;
    top: 68px;
    left: 0; right: 0;
    background: var(--deep);
    border-bottom: 2px solid var(--gold);
    box-shadow: 0 12px 40px rgba(0,0,0,0.4);
    z-index: 190;
    padding: 0.5rem 0;
    margin-left: 0;
  }
  .c-nav-links.open { display: flex !important; animation: slideDown 0.22s ease; }
  @keyframes slideDown { from { opacity: 0; transform: translateY(-10px); } to { opacity: 1; transform: none; } }
  .c-nav-links a {
    padding: 14px 2rem;
    height: auto;
    font-size: 17px;
    letter-spacing: 0.08em;
    border-bottom: 1px solid rgba(200,151,58,0.1);
    text-align: left;
  }
  .c-nav-links a:last-child { border-bottom: none; }
}

/* ── BUTTONS ── */
.btn-gold {
  background: var(--gold); color: var(--deep); border: none;
  font-family: 'Cinzel', serif; font-size: 15px; letter-spacing: 0.1em;
  padding: 12px 24px; border-radius: 4px; cursor: pointer; font-weight: 700;
  text-transform: uppercase; transition: background 0.2s; text-decoration: none; display: inline-block;
}
.btn-gold:hover { background: var(--gold-light); }
.btn-outline {
  background: none; color: var(--gold); border: 1px solid var(--gold);
  font-family: 'Cinzel', serif; font-size: 15px; letter-spacing: 0.1em;
  padding: 12px 24px; border-radius: 4px; cursor: pointer; font-weight: 700;
  text-transform: uppercase; transition: all 0.2s; text-decoration: none; display: inline-block;
}
.btn-outline:hover { background: rgba(200,151,58,0.15); }

/* ── PAGE INNER ── */
.page-inner { padding: 2rem; max-width: 900px; margin: 0 auto; width: 100%; overflow-x: hidden; }
.page-header { margin-bottom: 2rem; overflow: hidden; }
.page-header h2 {
  font-family: 'Cinzel', serif; font-size: 30px; color: var(--warm);
  border-bottom: 2px solid var(--gold); padding-bottom: 0.5rem;
  display: inline-block;
}
.page-header p { color: var(--muted); font-size: 17px; margin-top: 0.5rem; font-style: italic; }
.page-location { font-family: 'Cinzel', serif !important; font-size: 11px !important; color: var(--gold) !important; letter-spacing: 0.2em !important; text-transform: uppercase !important; font-style: normal !important; margin-top: 0.4rem !important; opacity: 0.75; }

/* ── SECTION DIVIDER ── */
.section-divider {
  text-align: center; padding: 0.5rem 2rem 0;
  font-family: 'Cinzel', serif; font-size: 17px; font-weight: 700; letter-spacing: 0.2em;
  color: var(--warm); text-transform: uppercase;
  display: flex; align-items: center; gap: 16px;
}
.section-divider::before, .section-divider::after {
  content: ''; flex: 1; height: 0.5px; background: var(--border);
}

/* ── FOOTER ── */
.c-footer { background: var(--deep); padding: 1.5rem 2rem; text-align: center; border-top: 1px solid rgba(200,151,58,0.2); }
.c-footer p { font-family: 'Cinzel', serif; font-size: 13px; color: rgba(255,255,255,0.35); letter-spacing: 0.1em; }
.c-footer .gold { color: var(--gold); }

/* ── ANIMATIONS ── */
@keyframes fadeIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
.fade-in { animation: fadeIn 0.3s ease; }

/* ── RESPONSIVE ── */
@media (max-width: 700px) {
  .page-inner { padding: 1.25rem; }
}
