:root {
  --bg: #f5efe5;
  --surface: #fff8ec;
  --surface-strong: #fff2dc;
  --text: #16120d;
  --muted: #6c5c46;
  --primary: #d84c1b;
  --primary-2: #2d8f88;
  --ring: rgba(216, 76, 27, 0.3);
  --shadow: 0 20px 60px rgba(49, 25, 8, 0.16);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  background:
    radial-gradient(circle at 10% 10%, #ffdba2 0%, transparent 40%),
    radial-gradient(circle at 95% 15%, #ffd2c7 0%, transparent 35%),
    linear-gradient(170deg, #f7f1e7 0%, #f3e8d8 100%);
  font-family: "DM Sans", "Segoe UI", sans-serif;
  overflow-x: hidden;
}

.bg-orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(6px);
  z-index: -1;
  opacity: 0.45;
}

.orb-a {
  width: 260px;
  height: 260px;
  left: -60px;
  top: 90px;
  background: #ffb86a;
}

.orb-b {
  width: 340px;
  height: 340px;
  right: -80px;
  bottom: -60px;
  background: #7fcfc9;
}

.orb-c {
  width: 320px;
  height: 320px;
  right: -90px;
  top: 60px;
  background: #f0b38c;
}

.site-header {
  width: min(1120px, 92vw);
  margin: 22px auto;
  padding: 14px 18px;
  border-radius: 16px;
  background: rgba(255, 248, 236, 0.72);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid rgba(108, 92, 70, 0.18);
}

.logo {
  font-family: "Bebas Neue", Impact, sans-serif;
  letter-spacing: 0.08em;
  font-size: 2rem;
}

nav {
  display: flex;
  gap: 16px;
}

nav a {
  color: var(--text);
  text-decoration: none;
  font-weight: 700;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid transparent;
}

nav a[aria-current="page"] {
  border-color: rgba(22, 18, 13, 0.16);
  background: rgba(255, 255, 255, 0.66);
}

.lang-switcher {
  display: flex;
  gap: 8px;
  align-items: center;
}

.lang-switcher a {
  text-decoration: none;
  color: inherit;
  font-weight: 700;
  font-size: 0.78rem;
  padding: 6px 9px;
  border-radius: 999px;
  border: 1px solid rgba(217, 186, 115, 0.38);
  display: flex;
  align-items: center;
  gap: 5px;
}

.lang-switcher a img {
  width: 20px;
  height: 14px;
  object-fit: cover;
  border-radius: 2px;
  vertical-align: middle;
  display: inline-block;
}

.lang-switcher a[aria-current="true"] {
  background: rgba(217, 186, 115, 0.2);
}

main {
  width: min(1120px, 92vw);
  margin: 28px auto 64px;
}

.hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 30px;
  align-items: center;
}

.kicker {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
}

h1,
h2 {
  font-family: "Bebas Neue", Impact, sans-serif;
  letter-spacing: 0.03em;
  margin: 0 0 14px;
}

h1 {
  font-size: clamp(2.2rem, 5vw, 4.2rem);
  line-height: 0.94;
}

h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
}

.hero-copy p,
.about p,
.support-card p,
.tiny-note {
  font-size: 1rem;
  line-height: 1.68;
  color: #30261b;
}

.hero-media img {
  width: 100%;
  max-height: 480px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: var(--shadow);
}

.hero-media-bw img {
  filter: grayscale(1) contrast(1.08);
}

.btn {
  border: none;
  text-decoration: none;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: 12px;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn:focus-visible,
input:focus-visible {
  outline: none;
  box-shadow: 0 0 0 4px var(--ring);
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, #f0652f 100%);
  color: #fff;
  box-shadow: 0 12px 24px rgba(216, 76, 27, 0.33);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.7);
  color: var(--text);
  border: 1px solid rgba(22, 18, 13, 0.2);
}

.hero-actions,
.actions {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.about,
.gallery,
.support-card,
.qr-panel {
  margin-top: 42px;
  padding: 26px;
  border-radius: 20px;
  background: rgba(255, 248, 236, 0.76);
  border: 1px solid rgba(108, 92, 70, 0.2);
  box-shadow: var(--shadow);
}

.gallery-grid {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.gallery-grid img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 12px;
}

.site-footer {
  width: min(1120px, 92vw);
  margin: 34px auto 26px;
  display: flex;
  justify-content: space-between;
  gap: 10px;
  font-size: 0.95rem;
}

.site-footer a {
  color: var(--primary);
  font-weight: 700;
}

.site-copyright {
  margin: 0;
  font-size: 0.9rem;
  color: #e8d7b0;
  opacity: 0.9;
}

.support-layout {
  display: grid;
  grid-template-columns: minmax(320px, 1.1fr) minmax(280px, 0.9fr);
  gap: 22px;
  align-items: start;
}

.support-card label {
  display: block;
  margin-top: 12px;
  margin-bottom: 6px;
  font-weight: 700;
}

.support-card input {
  width: 100%;
  padding: 12px;
  border-radius: 10px;
  border: 1px solid rgba(22, 18, 13, 0.25);
  background: rgba(255, 255, 255, 0.82);
  font: inherit;
}

.tiny-note {
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.88rem;
}

.qr-panel {
  text-align: center;
}

.qr-image {
  margin-top: 8px;
  width: min(100%, 320px);
  background: #fff;
  border-radius: 16px;
  padding: 12px;
  border: 1px solid rgba(22, 18, 13, 0.2);
}

.link-preview {
  margin-top: 14px;
  font-size: 0.9rem;
  color: #4a3b2a;
  overflow-wrap: anywhere;
}

.reveal {
  animation: riseIn 0.8s ease both;
}

.reveal-stagger .gallery-grid figure {
  opacity: 0;
  transform: translateY(14px);
  animation: riseIn 0.62s ease forwards;
}

.reveal-stagger .gallery-grid figure:nth-child(2) {
  animation-delay: 0.12s;
}

.reveal-stagger .gallery-grid figure:nth-child(3) {
  animation-delay: 0.24s;
}

@keyframes riseIn {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 920px) {
  .hero,
  .support-layout {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 620px) {
  .site-header {
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }

  .site-header nav {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .site-header nav a {
    text-align: center;
    justify-content: center;
    width: 100%;
  }

  .lang-switcher {
    justify-content: center;
    flex-wrap: wrap;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .site-footer {
    flex-direction: column;
  }
}

.page-home {
  background:
    linear-gradient(145deg, #0b0a0a 0%, #15120f 44%, #20180f 100%);
  color: #efe1bd;
}

.page-home .bg-orb {
  opacity: 0.14;
}

.page-home .kicker {
  color: #d9ba73;
}

.page-home .site-header {
  background: rgba(20, 16, 12, 0.78);
  border: 1px solid rgba(217, 186, 115, 0.4);
}

.page-home .logo {
  color: #f0da9d;
  font-family: "Cinzel", "Times New Roman", serif;
  letter-spacing: 0.15em;
}

.page-home nav a {
  color: #f0e6cf;
}

.page-home nav a[aria-current="page"] {
  border-color: rgba(217, 186, 115, 0.58);
  background: rgba(217, 186, 115, 0.13);
}

.page-home h1,
.page-home h2 {
  font-family: "Cinzel", "Times New Roman", serif;
  color: #f2dfad;
  letter-spacing: 0.06em;
}

.page-home .hero {
  background: linear-gradient(160deg, #18130f 0%, #0e0b09 100%);
  border: 2px solid #b9964f;
  border-radius: 22px;
  padding: 18px;
  position: relative;
}

.page-home .hero::before,
.page-home .hero::after {
  content: "";
  position: absolute;
  width: 24px;
  height: 24px;
  border: 2px solid #b9964f;
}

.page-home .hero::before {
  top: 10px;
  left: 10px;
  border-right: none;
  border-bottom: none;
}

.page-home .hero::after {
  right: 10px;
  bottom: 10px;
  border-left: none;
  border-top: none;
}

.page-home .hero-copy p,
.page-home .about p,
.page-home .site-footer {
  color: #e8d7b0;
}

.page-home .hero-media img {
  border-radius: 14px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.42);
  filter: grayscale(1) contrast(1.18);
}

.page-home .btn-primary {
  background: linear-gradient(135deg, #b9964f 0%, #d8b56f 100%);
  color: #18120a;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.35);
}

.page-home .btn-ghost {
  background: rgba(217, 186, 115, 0.13);
  border: 1px solid rgba(217, 186, 115, 0.45);
  color: #f0e6cf;
}

.page-home .about,
.page-home .gallery {
  background:
    linear-gradient(165deg, rgba(183, 144, 67, 0.14) 0%, rgba(11, 10, 10, 0.76) 60%),
    #12100d;
  border: 1px solid rgba(217, 186, 115, 0.45);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.42);
}

.page-home .support-teaser {
  margin-top: 42px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 22px;
  align-items: center;
  background:
    linear-gradient(165deg, rgba(183, 144, 67, 0.14) 0%, rgba(11, 10, 10, 0.76) 60%),
    #12100d;
  border: 1px solid rgba(217, 186, 115, 0.45);
  border-radius: 20px;
  padding: 26px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.42);
}

.page-home .support-teaser-copy p {
  color: #e8d7b0;
}

.page-home .support-teaser-qr {
  display: flex;
  justify-content: center;
}

.home-support-qr {
  width: min(100%, 240px);
  background: #f6ead0;
  border-radius: 18px;
  padding: 12px;
  border: 1px solid rgba(217, 186, 115, 0.45);
}

.page-home .gallery-grid img {
  filter: grayscale(1) contrast(1.12);
}

.page-home .site-footer a {
  color: #f2d281;
}

.social-links {
  display: flex;
  gap: 12px;
}

.btn-social {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  border: 1px solid rgba(217, 186, 115, 0.45);
  background: rgba(217, 186, 115, 0.12);
  color: #f0e6cf;
  transition: background 0.2s ease, transform 0.2s ease;
}

.btn-social:hover {
  background: rgba(217, 186, 115, 0.24);
  transform: translateY(-2px);
}

.footer-links {
  display: flex;
  gap: 18px;
  align-items: center;
}

.page-support {
  background:
    linear-gradient(145deg, #0b0a0a 0%, #15120f 44%, #20180f 100%);
  color: #efe1bd;
}

.page-support .bg-orb {
  opacity: 0.14;
}

.page-support .kicker {
  color: #d9ba73;
}

.page-support .site-header {
  background: rgba(20, 16, 12, 0.78);
  border: 1px solid rgba(217, 186, 115, 0.4);
}

.page-support .logo {
  color: #f0da9d;
  font-family: "Cinzel", "Times New Roman", serif;
  letter-spacing: 0.15em;
}

.page-support nav a {
  color: #f0e6cf;
}

.page-support nav a[aria-current="page"] {
  border-color: rgba(217, 186, 115, 0.58);
  background: rgba(217, 186, 115, 0.13);
}

.page-support h1,
.page-support h2 {
  font-family: "Cinzel", "Times New Roman", serif;
  color: #f2dfad;
  letter-spacing: 0.06em;
}

.page-support .support-card,
.page-support .qr-panel {
  background:
    linear-gradient(165deg, rgba(183, 144, 67, 0.14) 0%, rgba(11, 10, 10, 0.76) 60%),
    #12100d;
  border: 1px solid rgba(217, 186, 115, 0.45);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.42);
}

.page-support .support-card p,
.page-support .tiny-note,
.page-support .link-preview {
  color: #e8d7b0;
}

.page-support .support-card label {
  color: #f0dfb3;
}

.page-support .support-card input {
  background: rgba(21, 17, 13, 0.9);
  color: #f6ead0;
  border: 1px solid rgba(217, 186, 115, 0.42);
}

.page-support .support-card input::placeholder {
  color: rgba(240, 223, 179, 0.68);
}

.page-support .btn-primary {
  background: linear-gradient(135deg, #b9964f 0%, #d8b56f 100%);
  color: #18120a;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.35);
}

.page-support .btn-ghost {
  background: rgba(217, 186, 115, 0.13);
  border: 1px solid rgba(217, 186, 115, 0.45);
  color: #f0e6cf;
}

.page-support .qr-image {
  background: #0f0c09;
  border: 1px solid rgba(217, 186, 115, 0.45);
}

.page-support .support-layout {
  grid-template-columns: 1fr;
}

.page-support .payment-methods,
.page-support .iban-panel {
  margin-top: 26px;
  padding: 24px;
  border-radius: 18px;
  background:
    linear-gradient(165deg, rgba(183, 144, 67, 0.14) 0%, rgba(11, 10, 10, 0.76) 60%),
    #12100d;
  border: 1px solid rgba(217, 186, 115, 0.45);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.42);
}

.payment-grid {
  margin-top: 14px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.payment-method-card {
  display: block;
  border: 1px solid rgba(217, 186, 115, 0.3);
  background: rgba(15, 12, 9, 0.6);
  border-radius: 12px;
  padding: 12px;
  text-align: center;
  text-decoration: none;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.payment-method-card:hover {
  transform: translateY(-2px);
  border-color: rgba(217, 186, 115, 0.6);
  background: rgba(41, 31, 20, 0.7);
}

.payment-method-card img {
  width: 100%;
  height: 64px;
  object-fit: contain;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.96);
  padding: 6px;
}

.payment-method-card p {
  margin: 8px 0 0;
  color: #e8d7b0;
  font-size: 0.92rem;
}

.iban-panel p {
  color: #e8d7b0;
}

.iban-copy-row {
  margin-top: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.iban-copy-row code {
  font-size: 1rem;
  color: #f6ead0;
  background: rgba(17, 14, 10, 0.9);
  border: 1px solid rgba(217, 186, 115, 0.35);
  border-radius: 10px;
  padding: 10px 12px;
}

.iban-copy-row .btn {
  min-width: 128px;
}

@media (max-width: 920px) {
  .payment-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .page-home .support-teaser {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .payment-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.page-events {
  background:
    linear-gradient(145deg, #0b0a0a 0%, #15120f 44%, #20180f 100%);
  color: #efe1bd;
}

.page-events .kicker {
  color: #d9ba73;
}

.page-events .site-header {
  background: rgba(20, 16, 12, 0.78);
  border: 1px solid rgba(217, 186, 115, 0.4);
}

.page-events .logo {
  color: #f0da9d;
  font-family: "Cinzel", "Times New Roman", serif;
  letter-spacing: 0.15em;
}

.page-events nav a {
  color: #f0e6cf;
}

.page-events nav a[aria-current="page"] {
  border-color: rgba(217, 186, 115, 0.58);
  background: rgba(217, 186, 115, 0.13);
}

.events-main {
  width: min(1120px, 92vw);
  margin: 30px auto 64px;
}

.events-hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 22px;
  align-items: stretch;
  background: linear-gradient(160deg, #18130f 0%, #0e0b09 100%);
  border: 2px solid #b9964f;
  border-radius: 22px;
  padding: 18px;
  position: relative;
}

.events-hero::before,
.events-hero::after {
  content: "";
  position: absolute;
  width: 24px;
  height: 24px;
  border: 2px solid #b9964f;
}

.events-hero::before {
  top: 10px;
  left: 10px;
  border-right: none;
  border-bottom: none;
}

.events-hero::after {
  right: 10px;
  bottom: 10px;
  border-left: none;
  border-top: none;
}

.events-hero-media img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  border-radius: 14px;
  filter: grayscale(1) contrast(1.2);
}

.events-hero-copy {
  display: grid;
  align-content: center;
  padding: 12px;
}

.events-hero-copy h1,
.events-grid h2,
.event-list h3 {
  font-family: "Cinzel", "Times New Roman", serif;
  letter-spacing: 0.06em;
}

.events-hero-copy p,
.event-list p,
.event-date {
  color: #e8d7b0;
}

.events-grid {
  margin-top: 28px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.deco-card {
  background:
    linear-gradient(165deg, rgba(183, 144, 67, 0.14) 0%, rgba(11, 10, 10, 0.76) 60%),
    #12100d;
  border-radius: 18px;
  border: 1px solid rgba(217, 186, 115, 0.45);
  padding: 22px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.42);
}

.events-column h2 {
  color: #f2dfad;
}

.event-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
}

.event-list li {
  border: 1px solid rgba(217, 186, 115, 0.28);
  border-radius: 12px;
  padding: 14px;
  background: rgba(15, 12, 9, 0.6);
}

.event-date {
  display: inline-block;
  margin-bottom: 6px;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.event-list h3 {
  margin: 0 0 6px;
  font-size: 1.16rem;
  color: #f4e4bb;
}

.event-list p {
  margin: 0;
  line-height: 1.5;
}

.event-list p + p {
  margin-top: 6px;
}

.event-item-with-thumb {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 14px;
  align-items: start;
  border: 1px solid rgba(217, 186, 115, 0.28);
  border-radius: 12px;
  padding: 12px;
  background: rgba(15, 12, 9, 0.6);
}

.event-thumb {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 8px;
  filter: grayscale(1) contrast(1.1);
}

.event-content {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.event-actions {
  margin-top: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.event-ticket-link {
  min-width: 160px;
  background: linear-gradient(135deg, #c9a84c 0%, #f0da9d 100%);
  color: #17120c;
  box-shadow: 0 12px 24px rgba(201, 168, 76, 0.24);
}

.event-ticket-link:hover {
  box-shadow: 0 16px 30px rgba(201, 168, 76, 0.3);
}

.event-content h3 {
  margin: 0;
}

.event-content h3 a {
  color: #f4e4bb;
  text-decoration: none;
}

.event-content h3 a:hover {
  text-decoration: underline;
}

.event-thumb {
  cursor: pointer;
  transition: transform 0.2s ease, filter 0.2s ease;
}

.event-thumb:hover {
  transform: scale(1.06);
  filter: grayscale(0.8) contrast(1.15);
}

/* Thumb stack: poster + playlist stacked vertically on left */
.event-thumb-stack {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

/* Concert playlist / kava thumbnail */
.event-playlist {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.playlist-label {
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #c9a84c;
  opacity: 0.82;
  margin: 0;
  text-align: center;
}

.event-kava-thumb {
  width: 90px;
  height: 120px;
  object-fit: cover;
  border-radius: 4px;
  border: 1px solid rgba(217, 186, 115, 0.4);
  filter: grayscale(1) contrast(1.08);
}

/* Lightbox Modal */
.lightbox-modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.88);
  align-items: center;
  justify-content: center;
}

.lightbox-modal.show {
  display: flex;
}

.lightbox-image {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 12px;
  animation: slideIn 0.3s ease;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 30px;
  color: #f2d281;
  font-size: 2.2rem;
  font-weight: bold;
  cursor: pointer;
  transition: color 0.2s ease;
}

.lightbox-close:hover {
  color: #fff;
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(217, 186, 115, 0.15);
  border: 1px solid rgba(217, 186, 115, 0.3);
  color: #f2d281;
  width: 50px;
  height: 50px;
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  z-index: 1001;
}

.lightbox-nav:hover {
  background-color: rgba(217, 186, 115, 0.25);
  color: #fff;
  border-color: rgba(217, 186, 115, 0.5);
}

.lightbox-nav:active {
  transform: translateY(-50%) scale(0.95);
}

.lightbox-prev {
  left: 20px;
}

.lightbox-next {
  right: 20px;
}

@media (max-width: 768px) {
  .lightbox-nav {
    width: 40px;
    height: 40px;
  }

  .lightbox-nav svg {
    width: 24px;
    height: 24px;
  }

  .lightbox-prev {
    left: 12px;
  }

  .lightbox-next {
    right: 12px;
  }
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.events-footer {
  color: #e8d7b0;
}

.events-footer a {
  color: #f2d281;
}

@media (max-width: 920px) {
  .events-hero,
  .events-grid {
    grid-template-columns: 1fr;
  }
}

/* Gallery Page */
.page-gallery {
  background:
    linear-gradient(145deg, #0b0a0a 0%, #15120f 44%, #20180f 100%);
  color: #efe1bd;
}

.page-gallery .kicker {
  color: #d9ba73;
}

.page-gallery .site-header {
  background: rgba(20, 16, 12, 0.78);
  border: 1px solid rgba(217, 186, 115, 0.4);
}

.page-gallery .logo {
  color: #f0da9d;
  font-family: "Cinzel", "Times New Roman", serif;
  letter-spacing: 0.15em;
}

.page-gallery nav a {
  color: #f0e6cf;
}

.page-gallery nav a[aria-current="page"] {
  border-color: rgba(217, 186, 115, 0.58);
  background: rgba(217, 186, 115, 0.13);
}

.gallery-main {
  width: min(1120px, 92vw);
  margin: 30px auto 64px;
}

.gallery-hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 22px;
  align-items: center;
  background: linear-gradient(160deg, #18130f 0%, #0e0b09 100%);
  border: 2px solid #b9964f;
  border-radius: 22px;
  padding: 18px;
  position: relative;
}

.gallery-hero::before,
.gallery-hero::after {
  content: "";
  position: absolute;
  width: 24px;
  height: 24px;
  border: 2px solid #b9964f;
}

.gallery-hero::before {
  top: 10px;
  left: 10px;
  border-right: none;
  border-bottom: none;
}

.gallery-hero::after {
  right: 10px;
  bottom: 10px;
  border-left: none;
  border-top: none;
}

.gallery-hero-copy p {
  color: #e8d7b0;
}

.gallery-hero-copy h1,
.gallery-hero-copy h2 {
  font-family: "Cinzel", "Times New Roman", serif;
  color: #f2dfad;
  letter-spacing: 0.06em;
}

.page-gallery h1,
.page-gallery h2 {
  font-family: "Cinzel", "Times New Roman", serif;
  color: #f2dfad;
  letter-spacing: 0.06em;
}

.gallery-grid-section {
  margin-top: 28px;
  padding: 26px;
  border-radius: 20px;
  background:
    linear-gradient(165deg, rgba(183, 144, 67, 0.14) 0%, rgba(11, 10, 10, 0.76) 60%),
    #12100d;
  border: 1px solid rgba(217, 186, 115, 0.45);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.42);
}

.gallery-grid {
  margin: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.gallery-grid figure {
  margin: 0;
  padding: 0;
}

.gallery-thumb {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 14px;
  filter: grayscale(1) contrast(1.12);
  cursor: pointer;
  transition: transform 0.2s ease, filter 0.2s ease;
  border: 1px solid rgba(217, 186, 115, 0.3);
}

.gallery-thumb:hover {
  transform: scale(1.03);
  filter: grayscale(0.7) contrast(1.15);
}

.gallery-footer {
  background: rgba(20, 16, 12, 0.78);
  border-top: 1px solid rgba(217, 186, 115, 0.4);
  margin-top: 42px;
}

.page-gallery .site-footer a {
  color: #f2d281;
}

@media (max-width: 920px) {
  .gallery-hero {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-thumb {
    height: 250px;
  }
}

/* Payment toast notification */
.pay-toast {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(16px);
  background: rgba(20, 15, 9, 0.96);
  color: #f2dfad;
  border: 1px solid rgba(217, 186, 115, 0.5);
  border-radius: 12px;
  padding: 14px 22px;
  font-size: 0.95rem;
  font-family: "DM Sans", "Segoe UI", sans-serif;
  max-width: 88vw;
  text-align: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.28s ease, transform 0.28s ease;
  z-index: 2000;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.55);
}

.pay-toast--visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.pay-choice-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 2100;
  padding: 16px;
}

.pay-choice-modal--visible {
  display: flex;
}

.pay-choice-card {
  width: min(420px, 100%);
  background:
    linear-gradient(165deg, rgba(183, 144, 67, 0.18) 0%, rgba(11, 10, 10, 0.9) 60%),
    #12100d;
  border: 1px solid rgba(217, 186, 115, 0.45);
  border-radius: 18px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.6);
  padding: 20px;
  color: #f2dfad;
}

.pay-choice-card h3 {
  margin: 0 0 8px;
  font-family: "Cinzel", "Times New Roman", serif;
  letter-spacing: 0.04em;
}

.pay-choice-card p {
  margin: 0;
  color: #e8d7b0;
}

.pay-choice-actions {
  margin-top: 14px;
  display: grid;
  gap: 10px;
  grid-template-columns: 1fr;
}

.pay-choice-cancel {
  margin-top: 10px;
  width: 100%;
}
