/* src/styles.css */
* {
  box-sizing: border-box;
}
:root {
  --brand: #db1061;
  --brand-strong: #ff1b68;
  --nav-bg: rgb(232, 230, 255);
  --ink: #1f2933;
  --muted: #5f6b7a;
  --link: #0e4f1f;
  --paper: #fff;
  --page: #f7f8fb;
}
body {
  margin: 0;
  min-height: 100vh;
  background: var(--page);
  color: var(--ink);
  font-family:
    Arial,
    "Microsoft YaHei",
    "Noto Sans CJK SC",
    sans-serif;
  line-height: 1.65;
}
a {
  color: inherit;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  min-height: 4.25rem;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.6rem 1rem;
  background: var(--brand-strong);
  box-shadow: 0 2px 12px rgba(31, 41, 51, 0.15);
}
.brand img {
  width: 2.8rem;
  height: 2.8rem;
}
.mobile-nav {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.dropdown {
  position: relative;
}
.dropbtn {
  display: grid;
  width: 2.8rem;
  height: 2.8rem;
  place-items: center;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}
.dropbtn img {
  width: 2.4rem;
  height: 2.4rem;
}
.dropdown-content {
  position: absolute;
  top: 100%;
  left: 0;
  display: none;
  min-width: 12rem;
  padding: 0.35rem;
  background: var(--brand);
  box-shadow: 0 8px 20px rgba(31, 41, 51, 0.24);
}
.dropdown:hover .dropdown-content,
.dropdown:focus-within .dropdown-content {
  display: grid;
}
.desktop-nav {
  display: none;
  align-items: center;
  justify-content: flex-end;
  gap: 1rem;
}
.desktop-nav a,
.dropdown-content a,
.side-nav a,
.nav-submenu__trigger {
  border-radius: 4px;
  color: var(--link);
  font-weight: 700;
  text-decoration: none;
}
.desktop-nav a,
.dropdown-content a,
.nav-submenu__trigger {
  padding: 0.35rem 0.45rem;
}
.dropdown-content a {
  color: #fff;
}
.nav-submenu {
  position: relative;
}
.nav-submenu__trigger {
  border: 0;
  background: transparent;
  cursor: pointer;
  font-family: inherit;
  font-size: inherit;
  font-weight: 700;
  text-align: left;
}
.desktop-nav .nav-submenu__trigger {
  color: var(--link);
  width: auto;
}
.dropdown-content .nav-submenu__trigger {
  color: #fff;
  width: 100%;
}
.nav-submenu__trigger::after {
  content: " \25be";
}
.nav-submenu__items {
  display: grid;
  gap: 0.15rem;
  min-width: 9rem;
  padding: 0.35rem;
  border-radius: 6px;
  background: var(--brand);
  box-shadow: 0 8px 20px rgba(31, 41, 51, 0.2);
}
.desktop-nav .nav-submenu__items {
  position: absolute;
  top: calc(100% + 0.25rem);
  right: 0;
}
.side-nav .nav-submenu__items {
  margin: 0.2rem 0 0.5rem;
  box-shadow: none;
}
.side-nav .nav-submenu__trigger {
  width: 100%;
}
.nav-submenu__items a {
  color: #fff;
}
.nav-submenu__items .nav-submenu__trigger {
  width: 100%;
  color: #fff;
}
.nav-submenu__items .nav-submenu__items {
  position: static;
  margin-top: 0.15rem;
  padding-left: 0.75rem;
  box-shadow: none;
}
.desktop-nav a:hover,
.desktop-nav a.active,
.side-nav a:hover,
.side-nav a.active,
.nav-submenu__trigger:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.22);
}
.dropdown-content a:hover,
.dropdown-content a.active,
.dropdown-content .nav-submenu__trigger:hover {
  background: rgba(255, 255, 255, 0.18);
}
.shell {
  display: grid;
  grid-template-columns: 1fr;
  min-height: calc(100vh - 8.25rem);
}
.content {
  width: min(100%, 58rem);
  margin: 0 auto;
  padding: 1.25rem;
  background: var(--paper);
}
.side-nav {
  display: none;
  padding: 1rem 0.75rem;
  background: var(--nav-bg);
}
.side-nav a {
  display: block;
  padding: 0.35rem 0.45rem;
}
.side-nav a.active {
  background: var(--brand);
}
.side-nav--right {
  align-content: start;
}
.site-footer {
  display: flex;
  min-height: 4rem;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  background: var(--brand);
  color: #fff;
}
.site-footer a {
  text-decoration: none;
}
.page-title {
  margin: 0 0 1rem;
  font-size: clamp(1.6rem, 2vw, 2.2rem);
  line-height: 1.25;
}
.subtitle {
  margin: 0.3rem 0;
  color: var(--muted);
  font-size: 1rem;
  font-weight: 700;
}
.section-title {
  margin: 2rem 0 0.75rem;
  font-size: 1.35rem;
  line-height: 1.3;
}
.small-heading {
  margin: 1.25rem 0 0.45rem;
  font-size: 1rem;
}
.lead {
  color: var(--muted);
  font-size: 1.05rem;
}
.event-list,
.gallery {
  display: grid;
  gap: 1.25rem;
}
.event-card,
.photo-block {
  margin: 0;
}
.event-card img,
.photo-block img {
  width: 100%;
  border-radius: 6px;
}
.event-card figcaption,
.photo-block figcaption {
  padding-top: 0.45rem;
  color: var(--muted);
  font-weight: 700;
}
.info-panel {
  margin: 1.25rem 0;
  padding: 1rem;
  border-left: 4px solid var(--brand);
  background: #fff6fa;
}
.contact-list,
.plain-list {
  padding-left: 1.25rem;
}
@media (min-width: 48rem) {
  .dropdown {
    display: none;
  }
  .desktop-nav {
    display: flex;
  }
  .shell {
    grid-template-columns: minmax(9rem, 12vw) minmax(0, 1fr) minmax(9rem, 12vw);
  }
  .content {
    width: 100%;
    padding: 1.75rem 2rem 2.5rem;
  }
  .side-nav {
    display: block;
  }
}

/* angular:styles/global:styles */
/*# sourceMappingURL=styles.css.map */
