:root {
  --plum: #401A2F;
  --plum-dark: #2D1220;
  --plum-mid: #331525;
  --orange: #F29C50;
  --orange-light: #F5B97A;
  --dusty: #8C5479;
  --parchment: #F2F2F2;
  --parchment-dark: #E8E0D8;

  --shadow-orange: 0 0 15px rgba(242, 156, 80, 0.5);
  --shadow-orange-lg: 0 0 25px rgba(242, 156, 80, 0.7);
  --shadow-dusty: 0 0 15px rgba(140, 84, 121, 0.4);

  --container: 1200px;
  --radius: 14px;
  --transition: 0.3s ease;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background-color: var(--plum);
  color: var(--parchment);
  font-family: 'Crimson Text', serif;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

h1, h2, h3, h4, h5, h6,
.font-heading {
  font-family: 'Cinzel', serif;
}

.font-display {
  font-family: 'Cinzel Decorative', cursive;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
  cursor: pointer;
  border: none;
}

img {
  max-width: 100%;
  display: block;
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--plum-dark);
}
::-webkit-scrollbar-thumb {
  background: var(--dusty);
  border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--orange);
}

/* Texture backgrounds */
.bg-grain,
.grain-overlay {
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.05'/%3E%3C/svg%3E");
}

.bg-parchment-texture {
  background-color: var(--parchment);
  color: var(--plum-dark);
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.7' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.08'/%3E%3C/svg%3E");
}

.bg-parchment-dark-texture {
  background-color: var(--parchment-dark);
  color: var(--plum-dark);
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.7' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.12'/%3E%3C/svg%3E");
}

.radial-glow {
  background: radial-gradient(circle at center, rgba(242, 156, 80, 0.15) 0%, rgba(64, 26, 47, 0) 70%);
}

/* Layout */
.app-shell {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  position: relative;
}

main {
  flex: 1;
  padding-top: 0;
  position: relative;
  z-index: 10;
}

.container {
  width: min(var(--container), calc(100% - 2rem));
  margin: 0 auto;
}

.container-narrow {
  width: min(900px, calc(100% - 2rem));
  margin: 0 auto;
}

.section-padding {
  padding: 4rem 0;
}

.center {
  text-align: center;
}

.grid {
  display: grid;
  gap: 1.5rem;
}

.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

@media (max-width: 992px) {
  .grid-4, .grid-3, .grid-2 {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .grid-4, .grid-3, .grid-2 {
    grid-template-columns: 1fr;
  }
}

/* Overlay grain */
.grain-overlay {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 50;
  opacity: 0.2;
  mix-blend-mode: overlay;
}

/* ============================================================
   UTILITY CLASSES
   ============================================================ */
.hidden { display: none; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mt-auto { margin-top: auto; }
.mt-12 { margin-top: 3rem; }
.mb-12 { margin-bottom: 3rem; }
.p-2 { padding: 2rem; }
.pt-2 { padding-top: 2rem; }
.py-section { padding: 4rem 0; }
.text-center { text-align: center; }
.text-lg { font-size: 1.25rem; }
.text-2xl { font-size: 2rem; }
.w-full { width: 100%; }
.border-top { border-top: 1px solid rgba(140, 84, 121, 0.3); }
.empty-state { padding: 5rem 0; }
.success-text { color: #90EE90; }

/* ============================================================
   NAVBAR
   ============================================================ */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 40;
  transition: var(--transition);
  background: transparent;
}

.site-header.scrolled {
  background: rgba(45, 18, 32, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(242, 156, 80, 0.3);
  box-shadow: var(--shadow-dusty);
}

.nav-inner {
  min-height: 100px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding-bottom: 0.5rem;
}

/* Align nav links to center while logo hangs lower */
.desktop-nav,
.mobile-menu-toggle {
  align-self: center;
}

/* Logo */
.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
}

.logo-img {
  height: 70px;         
  width: auto;
  display: block;
  filter: drop-shadow(0 2px 12px rgba(0,0,0,0.85));
  transition: transform 0.3s ease, filter 0.3s ease;
}

.logo:hover .logo-img {
  transform: scale(1.04);
  filter: drop-shadow(0 4px 18px rgba(242,156,80,0.6));
}

/* Desktop nav */
.desktop-nav {
  display: flex;
  gap: 2rem;
}

.nav-link {
  position: relative;
  font-family: 'Cinzel', serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(242,242,242,0.9);
  text-shadow: 0 1px 6px rgba(0,0,0,0.8);
  transition: var(--transition);
}

.nav-link:hover {
  color: #fff;
}

.nav-link.active {
  color: #fff;
}

/* Mobile */
.mobile-menu-toggle {
  display: none;
  background: transparent;
  color: var(--parchment);
  font-size: 1.7rem;
}

.mobile-nav {
  display: none;
  background: var(--plum-dark);
  border-bottom: 1px solid rgba(242, 156, 80, 0.3);
  overflow: hidden;
}

.mobile-nav.open {
  display: block;
}

.mobile-nav-inner {
  padding: 0.5rem 1rem 1.25rem;
}

.mobile-nav a {
  display: block;
  padding: 0.95rem 1rem;
  border-radius: 10px;
  font-family: 'Cinzel', serif;
  font-size: 1.15rem;
  transition: var(--transition);
}

.mobile-nav a.active {
  background: var(--plum-mid);
  color: var(--orange);
  border-left: 4px solid var(--orange);
}

.mobile-nav a:not(.active):hover {
  background: var(--plum-mid);
  color: var(--orange-light);
}

@media (max-width: 768px) {
  .desktop-nav { display: none; }
  .mobile-menu-toggle { display: inline-block; }
}

/* ============================================================
   BUTTONS
   ============================================================ */
.glow-btn {
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  padding: 0.95rem 1.6rem;
  border-radius: 10px;
  font-family: 'Cinzel', serif;
  font-weight: 700;
  letter-spacing: 0.04em;
  transition: transform 0.2s ease, background 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
}

.glow-btn:hover { transform: translateY(-1px) scale(1.02); }
.glow-btn:active { transform: scale(0.98); }

.glow-btn.primary {
  background: var(--orange);
  color: var(--plum-dark);
}

.glow-btn.primary:hover {
  background: var(--orange-light);
  box-shadow: var(--shadow-orange);
}

.glow-btn.secondary {
  background: transparent;
  color: var(--orange);
  border: 2px solid var(--orange);
}

.glow-btn.secondary:hover {
  background: rgba(242, 156, 80, 0.08);
  box-shadow: var(--shadow-orange);
}

.glow-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

/* ============================================================
   CINEMATIC HERO SLIDESHOW
   ============================================================ */
.hero-cinematic {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 560px;
  max-height: 900px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* Slideshow container */
.hero-slides {
  position: absolute;
  inset: 0;
  z-index: 0;
}

/* Each slide — portrait art shown from top-center */
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.4s ease-in-out;
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
}

.hero-slide.active {
  opacity: 1;
}

/* Per-slide fine-tuning so each character's face/upper body stays visible */
.hero-slide-1 {
  background-image: url('Pic/hero-1.png');
  background-position: 58% top;
}

.hero-slide-2 {
  background-image: url('Pic/hero-2.png');
  background-position: center top;
}

.hero-slide-3 {
  background-image: url('Pic/hero-3.png');
  background-position: center top;
}

/* Vignette — left & bottom heavy so text stays readable */
.hero-cinematic .hero-vignette {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(to right,
      rgba(15,5,12,0.82) 0%,
      rgba(15,5,12,0.48) 36%,
      rgba(15,5,12,0.10) 58%,
      rgba(15,5,12,0.00) 72%),
    linear-gradient(to top,
      rgba(15,5,12,0.92) 0%,
      rgba(15,5,12,0.55) 22%,
      rgba(15,5,12,0.00) 48%),
    linear-gradient(to bottom,
      rgba(15,5,12,0.55) 0%,
      rgba(15,5,12,0.00) 16%);
}

/* Event card — bottom left, dark box matching reference */
.hero-event-card {
  position: absolute;
  bottom: 9rem;
  left: 0;
  z-index: 3;
  width: 520px;
  max-width: 45vw;
  padding: 1.8rem 2rem 2rem;
  background: transparent;
  border: 3px solid rgba(180, 60, 80, 0.45);
  border-radius: 0 12px 12px 0;
  border-left: none;
  backdrop-filter: blur(2px);
  text-align: center;
  animation: fadeUp 0.9s ease 0.3s both;
}

/* Sparkle icon — top left corner of the card */
.hero-event-sparkle {
  position: absolute;
  top: 1rem;
  left: 1rem;
  color: var(--orange);
  font-size: 1.1rem;
  opacity: 0.75;
  line-height: 1;
}

/* Bottom-left sparkle decoration */
.hero-event-sparkle-bl {
  position: absolute;
  bottom: 0.8rem;
  left: 0.8rem;
  color: rgba(180, 60, 80, 0.5);
  font-size: 1.4rem;
  line-height: 1;
  pointer-events: none;
}

.hero-event-title {
  font-family: 'Cinzel', serif;
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: #fff;
  text-shadow: 0 2px 10px rgba(0,0,0,0.8);
  margin: 0 0 0.5rem;
}

.hero-event-time {
  font-family: 'Cinzel', serif;
  font-size: 1rem;
  font-weight: 600;
  color: rgba(255, 200, 140, 0.95);
  margin-bottom: 0.75rem;
  letter-spacing: 0.03em;
}

.hero-event-desc {
  font-family: 'Crimson Text', serif;
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(242,242,242,0.82);
  margin-bottom: 1.3rem;
  text-align: center;
}

.hero-explore-btn {
  display: inline-block;
  padding: 0.65rem 2.5rem;
  background: var(--orange);
  color: var(--plum-dark);
  font-family: 'Cinzel', serif;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition: background 0.25s, box-shadow 0.25s, transform 0.15s;
  text-decoration: none;
}

.hero-explore-btn:hover {
  background: var(--orange-light);
  box-shadow: 0 0 24px rgba(242,156,80,0.65);
  transform: translateY(-2px);
}

/* Slide dot indicators — bottom right */
.hero-dots {
  position: absolute;
  bottom: 3.5rem;
  right: 2rem;
  z-index: 4;
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.hero-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  border: 1px solid rgba(255,255,255,0.5);
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
}

.hero-dot.active {
  background: var(--orange);
  border-color: var(--orange);
  transform: scale(1.35);
}

/* Decorative sparkle diamonds — top right */
.hero-sparkle-tr {
  position: absolute;
  top: 1.8rem;
  right: 2rem;
  z-index: 3;
  color: var(--orange);
  font-size: 1rem;
  opacity: 0.55;
  letter-spacing: 0.6rem;
  animation: pulse 2.8s infinite;
  pointer-events: none;
}

/* Bottom page-body fade */
.hero-cinematic .hero-bottom-fade {
  position: absolute;
  inset: auto 0 0 0;
  height: 80px;
  background: linear-gradient(to top, var(--plum), transparent);
  z-index: 2;
}

@media (max-width: 600px) {
  .hero-event-card {
    width: 100%;
    max-width: 100%;
    border-radius: 0;
    border-right: none;
  }
  .logo-img { height: 80px; }
  .hero-dots { right: 1rem; }

  .hero-event-card {
    bottom: 3rem;
    left: 0;
    width: 100%;
    padding: 1.2rem 1rem;
  }

  .hero-event-title {
    font-size: 1.2rem;
  }

  .hero-event-desc {
    font-size: 0.85rem;
  }

  .product-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  .event-grid.two-col,
  .event-grid.three-col {
    grid-template-columns: 1fr;
  }

  .about-philosophy-text {
    font-size: 1.1rem;
  }

  .product-detail-grid,
  .contact-grid,
  .event-detail-meta {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   TYPOGRAPHY / SECTIONS
   ============================================================ */
.page-intro {
  text-align: center;
  margin-bottom: 3rem;
  animation: fadeUp 0.6s ease;
}

.page-intro h1,
.section-title {
  font-family: 'Cinzel Decorative', cursive;
  color: var(--orange);
  margin-bottom: 1rem;
}

.page-intro h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
}

.page-intro p,
.section-subtitle {
  color: rgba(242, 242, 242, 0.8);
  font-size: 1.2rem;
  max-width: 760px;
  margin: 0 auto;
  line-height: 1.6;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  text-align: center;
}

.section-subtitle {
  text-align: center;
  margin-bottom: 2rem;
}

.fade-up { animation: fadeUp 0.6s ease; }
.fade-in { animation: fadeIn 0.8s ease; }

/* Fancy divider */
.fancy-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 3rem 0;
  opacity: 0.75;
}

.fancy-divider .line {
  height: 1px;
  flex: 1;
  max-width: 240px;
  background: linear-gradient(to right, transparent, var(--dusty), transparent);
}

.fancy-divider .icon {
  margin: 0 1rem;
  color: var(--orange);
  font-size: 1.2rem;
  animation: pulse 1.8s infinite;
}

/* ============================================================
   PRODUCT CARDS
   ============================================================ */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.5rem;
}

@media (max-width: 1100px) { .product-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
@media (max-width: 860px)  { .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 560px)  { .product-grid { grid-template-columns: 1fr; } }

.product-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: var(--parchment);
  color: var(--plum-dark);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(140, 84, 121, 0.3);
  transition: var(--transition);
}

.product-card:hover {
  border-color: var(--orange);
  box-shadow: var(--shadow-orange);
  transform: translateY(-4px);
}

.product-card-link {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.product-image-placeholder {
  position: relative;
  height: 220px;
  background: linear-gradient(135deg, var(--plum-dark), var(--dusty));
  overflow: hidden;
}

.product-image-placeholder::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.06'/%3E%3C/svg%3E");
  opacity: 0.3;
}

.product-image-placeholder::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 50%;
  background: linear-gradient(to top, rgba(45, 18, 32, 0.8), transparent);
}

.product-image-placeholder span {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: rgba(242, 242, 242, 0.3);
  font-family: 'Cinzel Decorative', cursive;
  font-size: 2.8rem;
  transform: rotate(-12deg);
}

.product-body {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.product-category {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--dusty);
  font-family: 'Cinzel', serif;
  font-weight: 700;
  margin-bottom: 0.6rem;
}

.product-name {
  font-size: 1.3rem;
  font-family: 'Cinzel', serif;
  font-weight: 700;
  color: var(--plum-dark);
  margin: 0 0 0.6rem;
  transition: var(--transition);
}

.product-card:hover .product-name { color: var(--orange); }

.product-description {
  color: var(--plum-mid);
  font-size: 0.98rem;
  line-height: 1.45;
  margin-bottom: 1rem;
  flex: 1;
}

.product-price {
  font-size: 1.7rem;
  font-family: 'Cinzel', serif;
  font-weight: 700;
  margin-top: auto;
}

/* ============================================================
   EVENT CARDS
   ============================================================ */
.event-grid { display: grid; gap: 1.5rem; }
.event-grid.two-col   { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.event-grid.three-col { grid-template-columns: repeat(3, minmax(0, 1fr)); }

@media (max-width: 992px) {
  .event-grid.two-col,
  .event-grid.three-col { grid-template-columns: 1fr; }
}

.event-card {
  display: flex;
  background: var(--plum-mid);
  border: 1px solid rgba(140, 84, 121, 0.5);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
}

.event-card:hover {
  transform: scale(1.015);
  border-color: var(--orange);
  box-shadow: var(--shadow-dusty);
}

.event-date-block {
  width: 96px;
  background: var(--plum-dark);
  border-right: 1px solid rgba(140, 84, 121, 0.3);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 1rem;
  flex-shrink: 0;
}

.event-month {
  color: var(--orange);
  text-transform: uppercase;
  font-family: 'Cinzel', serif;
  font-size: 0.8rem;
  letter-spacing: 0.14em;
}

.event-day {
  color: var(--parchment);
  font-family: 'Cinzel Decorative', cursive;
  font-size: 2rem;
}

.event-content {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.event-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 0.5rem;
}

.event-name {
  font-family: 'Cinzel', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--parchment);
  margin: 0;
}

.event-type {
  font-size: 0.78rem;
  font-family: 'Cinzel', serif;
  background: rgba(140, 84, 121, 0.2);
  color: var(--orange);
  padding: 0.35rem 0.6rem;
  border-radius: 999px;
  border: 1px solid rgba(140, 84, 121, 0.3);
  white-space: nowrap;
}

.event-time {
  font-family: 'Cinzel', serif;
  font-size: 0.9rem;
  color: rgba(242, 242, 242, 0.7);
  margin-bottom: 0.75rem;
}

.event-description {
  color: rgba(242, 242, 242, 0.8);
  font-size: 0.98rem;
  line-height: 1.5;
  margin-bottom: 1rem;
  flex: 1;
}

.event-link {
  color: var(--orange);
  font-family: 'Cinzel', serif;
  font-size: 0.95rem;
  font-weight: 700;
  margin-top: auto;
  transition: var(--transition);
}

.event-link:hover { color: var(--orange-light); }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  position: relative;
  overflow: hidden;
  background: var(--plum-dark);
  border-top: 1px solid rgba(140, 84, 121, 0.3);
  padding-top: 4rem;
  padding-bottom: 2rem;
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.05'/%3E%3C/svg%3E");
  opacity: 0.2;
  mix-blend-mode: overlay;
  pointer-events: none;
}

.footer-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  margin-bottom: 3rem;
}

@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr; } }

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1rem;
}

.footer-brand .icon  { color: var(--orange); }
.footer-brand .text  { font-family: 'Cinzel Decorative', cursive; font-size: 1.8rem; }
.footer-copy         { color: rgba(242, 242, 242, 0.7); line-height: 1.6; }

.footer-heading {
  font-family: 'Cinzel', serif;
  color: var(--orange);
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.footer-links,
.footer-contact { list-style: none; padding: 0; margin: 0; }

.footer-links li,
.footer-contact li { margin-bottom: 0.8rem; }

.footer-links a { color: rgba(242, 242, 242, 0.8); transition: var(--transition); }
.footer-links a:hover { color: var(--orange); }
.footer-contact li { color: rgba(242, 242, 242, 0.8); line-height: 1.6; }

.footer-bottom {
  position: relative;
  z-index: 1;
  border-top: 1px solid rgba(140, 84, 121, 0.3);
  padding-top: 1.5rem;
  text-align: center;
  color: rgba(242, 242, 242, 0.5);
  font-size: 0.95rem;
}

/* ============================================================
   BREADCRUMBS
   ============================================================ */
.breadcrumbs {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 2rem;
  font-family: 'Cinzel', serif;
  font-size: 0.9rem;
  color: var(--dusty);
}

.breadcrumbs a:hover { color: var(--orange); }
.breadcrumbs .current { color: var(--orange); }

/* ============================================================
   SHOP FILTERS
   ============================================================ */
.filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.filter-btn {
  padding: 0.75rem 1.4rem;
  border-radius: 999px;
  font-family: 'Cinzel', serif;
  font-size: 0.9rem;
  font-weight: 700;
  transition: var(--transition);
}

.filter-btn.active {
  background: var(--orange);
  color: var(--plum-dark);
  box-shadow: var(--shadow-orange);
}

.filter-btn:not(.active) {
  background: var(--plum-mid);
  color: var(--parchment);
  border: 1px solid rgba(140, 84, 121, 0.5);
}

.filter-btn:not(.active):hover {
  border-color: var(--orange);
  color: var(--orange);
}

/* ============================================================
   DETAIL PAGES
   ============================================================ */
.product-detail-grid,
.contact-grid,
.event-detail-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 3rem;
}

@media (max-width: 900px) {
  .product-detail-grid,
  .contact-grid,
  .event-detail-meta { grid-template-columns: 1fr; }
}

.product-detail-image {
  position: relative;
  min-height: 560px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 2px solid rgba(140, 84, 121, 0.3);
  background: linear-gradient(135deg, var(--plum-dark), var(--dusty));
  box-shadow: var(--shadow-dusty);
}

.product-detail-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.06'/%3E%3C/svg%3E");
  opacity: 0.3;
  mix-blend-mode: overlay;
}

.product-detail-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(242, 156, 80, 0.15), transparent 70%);
}

.product-detail-image span {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: rgba(242, 242, 242, 0.2);
  font-family: 'Cinzel Decorative', cursive;
  font-size: clamp(2.5rem, 4vw, 4rem);
  transform: rotate(-12deg);
  z-index: 1;
}

.product-category-detail {
  color: var(--orange);
  font-family: 'Cinzel', serif;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  margin-bottom: 0.6rem;
}

.product-title-detail,
.event-title-detail {
  font-family: 'Cinzel Decorative', cursive;
  margin: 0 0 1rem;
}

.product-title-detail {
  font-size: clamp(2.4rem, 4vw, 4rem);
  line-height: 1.15;
}

.product-price-detail {
  color: var(--orange);
  font-family: 'Cinzel', serif;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 2rem;
}

.info-box {
  background: rgba(51, 21, 37, 0.5);
  border: 1px solid rgba(140, 84, 121, 0.3);
  border-radius: var(--radius);
  padding: 1.5rem;
  margin-bottom: 2rem;
}

.info-box.light    { background: rgba(51, 21, 37, 0.1); }
.info-box.parchment { background: var(--parchment); color: var(--plum-dark); }

.info-box h3 { font-family: 'Cinzel', serif; margin-top: 0; margin-bottom: 1rem; }
.info-box p,
.info-box li { line-height: 1.7; font-size: 1.08rem; }

/* Event detail */
.event-detail-card {
  background: var(--parchment);
  color: var(--plum-dark);
  border-radius: var(--radius);
  overflow: hidden;
  border: 2px solid rgba(242, 156, 80, 0.5);
  box-shadow: var(--shadow-dusty);
}

.event-detail-header {
  position: relative;
  background: var(--plum-dark);
  padding: 2rem;
  border-bottom: 1px solid rgba(242, 156, 80, 0.3);
  overflow: hidden;
}

.event-detail-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(242, 156, 80, 0.15), transparent 70%);
  opacity: 0.5;
}

.event-detail-header > * { position: relative; z-index: 1; }

.event-badge {
  display: inline-block;
  background: var(--orange);
  color: var(--plum-dark);
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  font-family: 'Cinzel', serif;
  font-weight: 700;
  font-size: 0.85rem;
  margin-bottom: 1rem;
}

.event-title-detail {
  color: var(--parchment);
  font-size: clamp(2rem, 4vw, 3.4rem);
}

.meta-card { display: flex; gap: 1rem; align-items: flex-start; }

.meta-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--plum-mid);
  color: var(--orange);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.meta-title {
  font-family: 'Cinzel', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--plum-dark);
  margin-bottom: 0.3rem;
}

.meta-text { color: var(--plum-mid); line-height: 1.6; }

.reserve-box {
  background: rgba(51, 21, 37, 0.08);
  border: 1px solid rgba(140, 84, 121, 0.3);
  border-radius: var(--radius);
  padding: 1.5rem;
}

.reserve-box h3 { margin-top: 0; }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-card {
  background: rgba(51, 21, 37, 0.4);
  border: 1px solid rgba(140, 84, 121, 0.3);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow-dusty);
}

.contact-form-card {
  background: var(--parchment);
  color: var(--plum-dark);
  border-radius: var(--radius);
  padding: 2rem;
  border: 2px solid rgba(242, 156, 80, 0.2);
}

.contact-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 2rem;
}

.contact-icon {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--plum-dark);
  border: 1px solid rgba(140, 84, 121, 0.3);
  color: var(--orange);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  font-size: 1.2rem;
}

.contact-item h3 { margin: 0 0 0.4rem; font-family: 'Cinzel', serif; font-size: 1.25rem; }

.contact-item p,
.contact-item li { color: rgba(242, 242, 242, 0.7); font-size: 1.08rem; line-height: 1.6; }

.contact-form-card label {
  display: block;
  margin-bottom: 0.45rem;
  font-family: 'Cinzel', serif;
  font-weight: 700;
}

.contact-form-card input,
.contact-form-card textarea {
  width: 100%;
  padding: 0.9rem 1rem;
  border-radius: 10px;
  background: var(--parchment-dark);
  border: 1px solid rgba(140, 84, 121, 0.5);
  color: var(--plum-dark);
  font-family: inherit;
  font-size: 1rem;
  transition: var(--transition);
}

.contact-form-card input:focus,
.contact-form-card textarea:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 1px var(--orange);
}

.contact-form-card textarea { resize: none; }

/* =========================
   ABOUT PAGE - FANTASY STYLE
========================= */

.fantasy-about-page {
  position: relative;
  overflow: hidden;
  padding: 7rem 0 6rem;
  background:
    radial-gradient(circle at 50% 0%, rgba(120, 40, 70, 0.22), transparent 35%),
    linear-gradient(to bottom, #220510 0%, #3a0f25 18%, #4a1730 48%, #3a0f25 76%, #220510 100%);
}

.about-page-inner {
  position: relative;
  z-index: 2;
}

.about-main-title,
.about-card-title,
.about-team-title {
  font-family: 'Cinzel Decorative', cursive;
  color: var(--orange);
  text-transform: uppercase;
  text-align: center;
  letter-spacing: 0.03em;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.25);
}

.about-main-title {
  font-size: clamp(2.8rem, 5vw, 4.7rem);
  margin-bottom: 2rem;
}

.about-top-section {
  max-width: 1100px;
  margin: 0 auto 4rem;
  text-align: center;
}

.about-philosophy-text {
  max-width: 980px;
  margin: 0 auto 1.8rem;
  color: rgba(255, 242, 236, 0.92);
  font-size: 1.45rem;
  line-height: 1.65;
  text-align: center;
}

.about-tale-grid {
  display: flex;
  justify-content: center; /* Centers the card horizontally */
  margin: 4rem auto 5rem;
  max-width: 1200px;
  padding: 0 1.5rem; /* Adds breathing room on mobile screens */
}

.about-image-panel {
  position: relative;
  min-height: 850px;
  border-radius: 0;
  background: rgba(182, 125, 170, 0.5);
  box-shadow: 0 0 35px rgba(219, 117, 183, 0.22);
  border: 1px solid rgba(255, 220, 245, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 1100px) {
  .about-image-panel {
    min-height: 500px;
    max-width: 500px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .about-image-panel {
    min-height: 350px;
    max-width: 350px;
  }
}

.about-image-placeholder {
  color: rgba(255, 245, 250, 0.9);
  font-family: 'Cinzel', serif;
  font-size: 1.4rem;
  letter-spacing: 0.06em;
}

.about-image-star {
  position: absolute;
  top: 18px;
  left: 18px;
  color: #4f0f1c;
  font-size: 3rem;
  line-height: 1;
}

.about-tale-card {
  width: 100%;
  max-width: 850px; /* Adjust this number to make the card wider or narrower */
  
  /* Keep all your existing styles below: */
  background: linear-gradient(180deg, rgba(177, 113, 163, 0.85), rgba(150, 90, 137, 0.88));
  border-radius: 38px;
  box-shadow:
    0 0 35px rgba(219, 117, 183, 0.25),
    inset 0 0 0 1px rgba(255,255,255,0.08);
  padding: 18px;
  border: 1px solid rgba(255, 224, 242, 0.08);
}

.about-card-frame {
  position: relative;
  border-radius: 28px;
  min-height: 100%;
  padding: 3.5rem 3.5rem 3rem;
  color: #fff8fb;
  text-align: center;
}

/* decorative inner frame */
.about-card-frame::before,
.about-card-frame::after {
  content: "";
  position: absolute;
  inset: 18px;
  border: 4px solid rgba(255,255,255,0.92);
  border-radius: 22px;
  pointer-events: none;
}

.about-card-frame::after {
  inset: 30px;
  border-width: 2px;
  border-color: rgba(255,255,255,0.92);
  border-radius: 16px;
}

.about-card-title {
  font-size: clamp(2.6rem, 4vw, 4.5rem);
  margin-bottom: 2rem;
}

.about-card-quote {
  max-width: 760px;
  margin: 0 auto 1.8rem;
  font-size: 1.5rem;
  line-height: 1.6;
  color: rgba(255, 246, 250, 0.96);
}

.about-card-text {
  max-width: 760px;
  margin: 0 auto 1.6rem;
  font-size: 1.48rem;
  line-height: 1.65;
  color: rgba(255, 246, 250, 0.96);
}

@media (max-width: 768px) {
  .about-card-frame {
    padding: 2rem 1.5rem 2rem;
  }

  .about-card-title {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
  }

  .about-card-quote {
    font-size: 1.1rem;
    margin: 0 auto 1.4rem;
  }

  .about-card-text {
    font-size: 1.08rem;
    margin: 0 auto 1.2rem;
  }

  .about-card-frame::before {
    inset: 12px;
  }

  .about-card-frame::after {
    inset: 22px;
  }
}

@media (max-width: 480px) {
  .about-card-frame {
    padding: 1.5rem 1rem 1.5rem;
  }

  .about-card-title {
    font-size: 1.8rem;
    margin-bottom: 1rem;
  }

  .about-card-quote {
    font-size: 0.95rem;
    margin: 0 auto 1rem;
  }

  .about-card-text {
    font-size: 0.9rem;
    margin: 0 auto 1rem;
  }
}

.about-card-divider {
  margin-top: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  color: #d9b055;
  font-size: 1.3rem;
}

.about-card-line {
  width: 260px;
  max-width: 35%;
  height: 2px;
  background: #d9b055;
  opacity: 0.9;
}

@media (max-width: 768px) {
  .about-card-divider {
    margin-top: 1.8rem;
    gap: 0.8rem;
    font-size: 1rem;
  }

  .about-card-line {
    width: 180px;
  }
}

@media (max-width: 480px) {
  .about-card-divider {
    margin-top: 1.2rem;
    gap: 0.6rem;
    font-size: 0.9rem;
  }

  .about-card-line {
    width: 120px;
  }
}

.about-team-section {
  margin-top: 4rem;
}

.about-team-title {
  font-size: clamp(2.8rem, 5vw, 4.6rem);
  margin-bottom: 3.5rem;
}

.about-team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.5rem;
  max-width: 1000px;
  margin: 0 auto;
  justify-items: center;
}

/* Responsive adjustments for the Team Grid */
@media (max-width: 992px) {
  .about-team-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)); /* Switches to 2 columns */
    gap: 3rem; 
  }
}

@media (max-width: 600px) {
  .about-team-grid {
    grid-template-columns: 1fr; /* Switches to a single column stack */
    gap: 2.5rem; 
  }
  
  /* Give the text a bit more breathing room when stacked */
  .team-member-card p {
    max-width: 280px; 
  }
}

.team-member-card {
  text-align: center;
  padding: 0 1rem;
}

.team-member-image {
  width: 180px;
  height: 180px;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  background: rgba(182, 125, 170, 0.72);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 245, 250, 0.95);
  font-family: 'Cinzel', serif;
  font-size: 1.15rem;
  box-shadow: 0 0 32px rgba(219, 117, 183, 0.22);
  overflow: hidden;
}

.team-member-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
  display: block;
}

.team-member-card h3 {
  margin: 0 0 0.8rem;
  font-family: 'Cinzel', serif;
  color: #fff3f8;
  text-transform: uppercase;
  font-size: 1.4rem;
}

.team-member-card p {
  max-width: 200px;
  margin: 0 auto;
  color: rgba(255, 242, 236, 0.94);
  font-size: 0.95rem;
  line-height: 1.5;
}

/* decorative stars */
.about-star {
  position: absolute;
  color: rgba(255, 177, 77, 0.95);
  text-shadow: 0 0 18px rgba(255, 177, 77, 0.25);
  z-index: 1;
  pointer-events: none;
}

.star-1 { top: 180px; left: 80px; font-size: 3.2rem; color: #350511; }
.star-2 { top: 160px; right: 140px; font-size: 3.4rem; }
.star-3 { top: 470px; left: 90px; font-size: 2.6rem; color: #6e2230; }
.star-4 { top: 660px; right: 100px; font-size: 4rem; }
.star-5 { top: 1100px; left: 70px; font-size: 3rem; color: #6e2230; }
.star-6 { top: 1190px; right: 160px; font-size: 3rem; color: #9e4d59; }
.star-7 { top: 1350px; right: 40px; font-size: 4rem; }
.star-8 { top: 1700px; left: 40px; font-size: 3.5rem; color: #9e4d59; }

.about-bg-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.16;
  pointer-events: none;
}

.about-glow-1 {
  width: 420px;
  height: 420px;
  background: #ff7bc8;
  left: -80px;
  top: 520px;
}

.about-glow-2 {
  width: 500px;
  height: 500px;
  background: #ff7bc8;
  right: -120px;
  bottom: 180px;
}

/* footer should blend better with this page */
.fantasy-about-page + .site-footer,
.site-footer {
  background:
    radial-gradient(circle at 20% 40%, rgba(120, 40, 70, 0.18), transparent 30%),
    linear-gradient(to right, #220510, #3a0f25 40%, #2b0a19 100%);
}

/* responsive */
@media (max-width: 1100px) {
  .about-tale-grid {
    grid-template-columns: 1fr;
  }

  .about-image-panel {
    min-height: 420px;
    max-width: 420px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .fantasy-about-page {
    padding: 5rem 0 4rem;
  }

  .about-main-title,
  .about-team-title {
    font-size: 2.4rem;
  }

  .about-card-title {
    font-size: 2.3rem;
  }

  .about-philosophy-text,
  .about-card-text,
  .about-card-quote {
    font-size: 1.08rem;
    line-height: 1.7;
  }

  .about-card-frame {
    padding: 2rem 1.2rem 2rem;
  }

  .about-card-frame::before {
    inset: 12px;
  }

  .about-card-frame::after {
    inset: 22px;
  }

  .team-member-image {
    width: 120px;
    height: 120px;
    margin: 0 auto 1rem;
  }

  .team-member-card h3 {
    font-size: 1rem;
    margin: 0 0 0.5rem;
  }

  .team-member-card p {
    font-size: 0.75rem;
    max-width: 140px;
  }

  .about-star {
    opacity: 0.55;
  }
}

@media (max-width: 480px) {
  .team-member-image {
    width: 90px;
    height: 90px;
    margin: 0 auto 0.6rem;
  }

  .team-member-card h3 {
    font-size: 0.8rem;
    margin: 0 0 0.3rem;
  }

  .team-member-card p {
    font-size: 0.6rem;
    max-width: 100px;
  }

  .team-member-card {
    padding: 0 0.25rem;
  }
}
/* ============================================================
   POPUP
   ============================================================ */
.popup-overlay-wrap {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 1rem;
}

.popup-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(45, 18, 32, 0.8);
  backdrop-filter: blur(4px);
  animation: fadeIn 0.25s ease;
}

.popup-card {
  position: relative;
  width: 100%;
  max-width: 520px;
  background: var(--parchment);
  color: var(--plum-dark);
  border-radius: var(--radius);
  border: 2px solid var(--orange);
  padding: 2rem;
  text-align: center;
  box-shadow: var(--shadow-orange-lg);
  animation: popupIn 0.35s ease;
  z-index: 2;
}

.popup-close {
  position: absolute;
  top: 12px;
  right: 12px;
  background: transparent;
  color: var(--plum-mid);
  font-size: 1.3rem;
}

.popup-close:hover { color: var(--orange); }
.popup-icon { color: var(--orange); font-size: 2.4rem; margin-bottom: 1rem; }
.popup-title { font-family: 'Cinzel', serif; font-size: 1.8rem; font-weight: 700; margin: 0 0 1rem; }
.popup-text { font-size: 1.15rem; color: var(--plum-mid); line-height: 1.6; margin-bottom: 1.5rem; }
.popup-actions { display: flex; flex-direction: column; gap: 0.8rem; }

.dismiss-btn {
  background: transparent;
  color: var(--dusty);
  font-family: 'Cinzel', serif;
  font-size: 0.95rem;
}

.dismiss-btn:hover { color: var(--plum-dark); }

/* ============================================================
   UTILITY
   ============================================================ */
.mt-12 { margin-top: 3rem; }
.mt-8  { margin-top: 2rem; }
.mb-12 { margin-bottom: 3rem; }
.mb-8  { margin-bottom: 2rem; }
.text-center { text-align: center; }

.not-found {
  min-height: 60vh;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 2rem;
}

.not-found h1 {
  font-family: 'Cinzel Decorative', cursive;
  color: var(--orange);
  font-size: 3rem;
  margin-bottom: 1rem;
}

.not-found p {
  color: rgba(242, 242, 242, 0.8);
  font-size: 1.15rem;
  margin-bottom: 1.5rem;
}

.success-text {
  text-align: center;
  color: var(--orange);
  margin-top: 1rem;
  font-family: 'Cinzel', serif;
  animation: pulse 1.2s infinite;
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes popupIn {
  from { opacity: 0; transform: translateY(20px) scale(0.92); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes pulse {
  0%, 100% { opacity: 0.65; transform: scale(1); }
  50%       { opacity: 1;    transform: scale(1.06); }
}

/* ============================================================
   ADMIN PORTAL
   ============================================================ */
.admin-title {
  font-family: 'Cinzel Decorative', cursive;
  font-size: 2.5rem;
  color: var(--orange);
  margin-bottom: 1rem;
  text-align: center;
}

.admin-subtitle {
  font-size: 1.1rem;
  color: rgba(242, 242, 242, 0.7);
  text-align: center;
  margin-bottom: 2rem;
}

.admin-login-card {
  background: rgba(51, 21, 37, 0.6);
  backdrop-filter: blur(10px);
  border: 2px solid var(--orange);
  border-radius: var(--radius);
  padding: 3rem 2rem;
  box-shadow: 0 0 40px rgba(242, 156, 80, 0.3);
}

.admin-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-family: 'Cinzel', serif;
  color: var(--orange);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.05em;
}

.form-group input,
.form-group textarea,
.form-group select {
  background: rgba(64, 26, 47, 0.6);
  border: 1px solid var(--dusty);
  border-radius: 8px;
  padding: 0.75rem 1rem;
  color: var(--parchment);
  font-family: 'Crimson Text', serif;
  font-size: 1rem;
  transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--orange);
  background: rgba(64, 26, 47, 0.8);
  box-shadow: 0 0 15px rgba(242, 156, 80, 0.2);
}

.admin-error {
  background: rgba(220, 53, 69, 0.2);
  border: 1px solid #dc3545;
  border-radius: 8px;
  padding: 1rem;
  color: #ff6b6b;
  font-family: 'Cinzel', serif;
}

.admin-message {
  background: rgba(76, 175, 80, 0.2);
  border: 1px solid #4CAF50;
  border-radius: 8px;
  padding: 1rem;
  color: #90EE90;
  font-family: 'Cinzel', serif;
}

.admin-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 2px solid var(--dusty);
}

.admin-tabs {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
  border-bottom: 2px solid rgba(242, 156, 80, 0.3);
}

.admin-tab-btn {
  background: transparent;
  border: none;
  color: rgba(242, 242, 242, 0.6);
  font-family: 'Cinzel', serif;
  font-size: 1rem;
  padding: 1rem 1.5rem;
  cursor: pointer;
  border-bottom: 3px solid transparent;
  transition: var(--transition);
}

.admin-tab-btn:hover,
.admin-tab-btn.active {
  color: var(--orange);
  border-bottom-color: var(--orange);
}

.admin-tab-content {
  display: none;
  animation: fadeUp 0.3s ease;
}

.admin-tab-content.active {
  display: block;
}

.admin-events-list {
  display: grid;
  gap: 1.5rem;
}

.admin-event-item {
  background: rgba(51, 21, 37, 0.4);
  border: 1px solid var(--dusty);
  border-radius: var(--radius);
  padding: 1.5rem;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: start;
}

.admin-event-info h3 {
  color: var(--orange);
  margin: 0 0 1rem;
  font-size: 1.3rem;
}

.admin-event-info p {
  margin: 0.5rem 0;
  color: rgba(242, 242, 242, 0.8);
  font-size: 0.95rem;
}

.admin-event-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  white-space: nowrap;
}

.admin-edit-btn,
.admin-delete-btn {
  padding: 0.6rem 1.2rem;
  border-radius: 6px;
  font-family: 'Cinzel', serif;
  font-size: 0.85rem;
  cursor: pointer;
  border: none;
  transition: var(--transition);
}

.admin-edit-btn {
  background: var(--orange);
  color: var(--plum-dark);
}

.admin-edit-btn:hover {
  background: var(--orange-light);
  transform: translateY(-2px);
}

.admin-delete-btn {
  background: rgba(220, 53, 69, 0.8);
  color: var(--parchment);
}

.admin-delete-btn:hover {
  background: #dc3545;
  transform: translateY(-2px);
}

.admin-modal {
  display: none !important;
  position: fixed;
  inset: 0;
  background: rgba(45, 18, 32, 0.8);
  backdrop-filter: blur(4px);
  z-index: 200;
  place-items: center;
  padding: 2rem;
}

.admin-modal-content {
  background: var(--plum);
  border: 2px solid var(--orange);
  border-radius: var(--radius);
  padding: 2rem;
  max-width: 600px;
  width: 100%;
  position: relative;
  box-shadow: 0 0 40px rgba(242, 156, 80, 0.4);
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: transparent;
  border: none;
  color: var(--orange);
  font-size: 1.5rem;
  cursor: pointer;
  transition: var(--transition);
}

.modal-close:hover {
  transform: scale(1.1);
  color: var(--orange-light);
}

.admin-modal-content h2 {
  color: var(--orange);
  margin-bottom: 1.5rem;
}

.form-buttons {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.w-full {
  width: 100%;
}

@media (max-width: 768px) {
  .admin-event-item {
    grid-template-columns: 1fr;
  }

  .admin-event-actions {
    flex-direction: row;
  }

  .admin-title {
    font-size: 1.8rem;
  }

  .admin-header {
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
  }

  .admin-tabs {
    flex-wrap: wrap;
  }
}