/* Mobile nav styles inspired by fourplaydanceband.com header rules */
.mc-mobile-nav {
  position: fixed;
  inset: 0;
  /* slide in from the right */
  transform: translateX(100%);
  transition: transform 320ms cubic-bezier(.2,.9,.2,1);
  background: rgba(0,0,0,0.28); /* dim backdrop */
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 900;
  display: flex;
  align-items: stretch;
  justify-content: flex-end; /* put panel on right */
}
.mc-mobile-nav.open { transform: translateX(0); }

.mc-mobile-nav .mc-nav-inner {
  height: 100vh;
  width: 100%;
  max-width: 360px; /* narrower panel */
  margin: 0;
  background: rgba(75,50,35,0.96);
  border-radius: 12px 0 0 12px; /* rounded left side */
  padding: 28px 18px;
  box-shadow: -8px 0 40px rgba(0,0,0,0.6);
  border-left: 1px solid rgba(255,255,255,0.04);
}

.mc-mobile-nav a {
  display: block;
  color: #f7eadb;
  padding: 14px 12px;
  margin: 6px 0;
  font-weight: 800;
  text-align: left;
  border-radius: 8px;
  font-size: 1.15rem; /* slightly larger */
  padding-left: 18px;
}
.mc-mobile-nav a:hover { background: rgba(139,74,47,0.18); }

.mc-nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  padding: 8px;
  background: linear-gradient(90deg,#8b4a2f,#6f3722);
  color: #f7eadb;
  box-shadow: 0 8px 22px rgba(0,0,0,0.5);
  border: 1px solid rgba(0,0,0,0.25);
}
.mc-nav-toggle svg { width: 20px; height: 20px; }

.no-scroll { overflow: hidden; height: 100vh; }

/* Switch to mobile menu earlier to avoid desktop nav wrapping and overlap */
/* hide toggle by default; show by breakpoint */
#nav-toggle { display: none; }

@media (max-width: 1280px) {
  #desktop-nav { display: none !important; }
  #nav-toggle { display: inline-flex !important; }
}

/* make toggle clickable above header and ensure overlay accepts pointer events */
.mc-nav-toggle { position: relative; z-index: 1100; cursor: pointer; pointer-events: auto; }

.mc-nav-toggle.mc-toggle-active { box-shadow: 0 6px 18px rgba(0,0,0,0.45) inset, 0 6px 18px rgba(255,255,255,0.06); transform: translateY(-1px); }

/* Photos page cover/frame */
.photo-cover {
  max-width: 1100px;
  margin: 18px auto 36px;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 18px 48px rgba(0,0,0,0.55);
  border: 1px solid rgba(255,255,255,0.06);
}
.photo-cover img{ display:block; width:100%; height:auto; }
.photo-frame { padding: 18px; background: linear-gradient(180deg, rgba(0,0,0,0.04), rgba(0,0,0,0.06)); }
.photo-cover .caption { padding: 12px 18px; color: #f7eadb; font-weight:700; font-size:1.05rem; text-align:left; }

/* Mobile nav hidden by default to avoid capturing clicks; only active when `.open` */
.mc-mobile-nav { pointer-events: none; display: none; }
.mc-mobile-nav.open { display: flex; pointer-events: auto; }
