:root {
  --sl-pink: #c92b74;
  --sl-charcoal: #58565b;
  --sl-cream: #fff8ef;
  --sl-soft-cream: #fff1da;
  --sl-sky: #84d6f4;
  --sl-lavender: #d8c2f0;
  --sl-mint: #c9e7b1;
  --sl-gold: #f4cf67;
  --sl-white: #ffffff;
  --sl-text: #423f45;
  --sl-shadow: 0 10px 30px rgba(88, 86, 91, 0.12);
  --sl-radius: 24px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: linear-gradient(180deg, var(--sl-cream), #fffdf8 40%, var(--sl-soft-cream));
  color: var(--sl-text);
  line-height: 1.6;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--sl-pink); text-decoration: none; }
a:hover { color: var(--sl-charcoal); }

.site-container {
  width: min(1600px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(12px);
  border-bottom: 4px solid var(--sl-pink);
  box-shadow: 0 4px 18px rgba(88, 86, 91, 0.08);
}

.site-header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 14px 0;
}
.site-logo img { max-height: 92px; width: auto; }
.site-title {
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--sl-charcoal);
}
.site-tagline { margin: 0; color: #6c6771; }

.primary-menu {
  display: flex;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0;
  flex-wrap: wrap;
}
.primary-menu a {
  display: inline-block;
  padding: 10px 16px;
  border-radius: 999px;
  font-weight: 700;
  color: var(--sl-charcoal);
  background: transparent;
}
.primary-menu a:hover,
.primary-menu .current-menu-item > a {
  background: var(--sl-pink);
  color: var(--sl-white);
}

.site-main { min-height: 60vh; }
.hero-section { padding: 24px 0 10px; }
.content-wrap { padding: 24px 0 48px; }
.content-card {
  background: var(--sl-white);
  border-radius: var(--sl-radius);
  box-shadow: var(--sl-shadow);
  padding: 28px;
  border: 2px solid rgba(201,43,116,0.08);
}
.home-card { margin-top: 18px; }
.entry-title {
  color: var(--sl-charcoal);
  font-size: clamp(2rem, 3.2vw, 3rem);
  margin: 0 0 18px;
}
.entry-content h2,
.entry-content h3 {
  color: var(--sl-pink);
}
.entry-content .wp-block-button__link,
button,
input[type="submit"] {
  background: linear-gradient(135deg, var(--sl-pink), #e24f90);
  border: 0;
  color: var(--sl-white);
  border-radius: 999px;
  padding: 12px 22px;
  font-weight: 700;
  cursor: pointer;
}
.entry-content .wp-block-button__link:hover,
button:hover,
input[type="submit"]:hover {
  filter: brightness(0.96);
}

.sl-home-carousel {
  position: relative;
  overflow: hidden;
  min-height: 420px;
  border-radius: 30px;
  box-shadow: var(--sl-shadow);
  background: linear-gradient(135deg, var(--sl-sky), var(--sl-lavender));
}
.sl-home-carousel-track {
  position: relative;
  min-height: 420px;
}
.sl-home-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity .7s ease;
}
.sl-home-slide.is-active { opacity: 1; }
.sl-home-slide img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}
.sl-carousel-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255,255,255,0.88);
  color: var(--sl-charcoal);
  font-size: 26px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}
.sl-carousel-prev { left: 18px; }
.sl-carousel-next { right: 18px; }
.sl-carousel-dots {
  position: absolute;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 3;
}
.sl-carousel-dot {
  width: 12px;
  height: 12px;
  min-width: 12px;
  padding: 0;
  border-radius: 50%;
  background: rgba(255,255,255,0.6);
}
.sl-carousel-dot.is-active { background: var(--sl-pink); }

.sl-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}
.sl-gallery-item {
  padding: 0;
  border-radius: 24px;
  overflow: hidden;
  background: var(--sl-white);
  box-shadow: var(--sl-shadow);
}
.sl-gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform .3s ease;
}
.sl-gallery-item:hover img { transform: scale(1.04); }
.sl-empty-gallery {
  background: var(--sl-white);
  padding: 16px 20px;
  border-left: 4px solid var(--sl-pink);
  border-radius: 16px;
}

.sl-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
}
.sl-lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(30, 25, 34, 0.82);
}
.sl-lightbox-inner {
  position: relative;
  z-index: 2;
  width: min(1100px, calc(100% - 30px));
  margin: 3vh auto;
  height: 94vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sl-lightbox-stage {
  width: 100%;
  text-align: center;
}
.sl-lightbox-image {
  width: auto;
  max-width: 100%;
  max-height: 88vh;
  margin: 0 auto;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.35);
}
.sl-lightbox-close,
.sl-lightbox-nav {
  position: absolute;
  z-index: 3;
}
.sl-lightbox-close {
  top: 10px;
  right: 10px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  font-size: 30px;
  line-height: 1;
  background: rgba(255,255,255,0.92);
  color: var(--sl-charcoal);
}
.sl-lightbox-prev { left: 8px; }
.sl-lightbox-next { right: 8px; }
.sl-lightbox-nav {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  font-size: 28px;
  background: rgba(255,255,255,0.92);
  color: var(--sl-charcoal);
}

.site-footer {
  margin-top: 24px;
  background: linear-gradient(135deg, var(--sl-charcoal), #6f6b73);
  color: var(--sl-white);
  padding: 28px 0;
}
.site-footer a { color: var(--sl-gold); font-weight: 700; }
.footer-widgets-wrap {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
  margin-bottom: 18px;
}
.site-credit {
  text-align: center;
  font-size: 1rem;
}

@media (max-width: 900px) {
  .site-header-inner { flex-direction: column; align-items: flex-start; }
  .sl-home-carousel,
  .sl-home-carousel-track,
  .sl-home-slide img { min-height: 300px; height: 300px; }
}

@media (max-width: 640px) {
  .content-card { padding: 20px; }
  .site-container { width: min(100% - 18px, 1200px); }
  .sl-carousel-nav,
  .sl-lightbox-nav,
  .sl-lightbox-close { width: 46px; height: 46px; }
}


.sl-home-slide {
  pointer-events: none;
}
.sl-home-slide.is-active {
  pointer-events: auto;
}
.sl-home-carousel,
.sl-lightbox-inner {
  touch-action: pan-y;
}
@media (prefers-reduced-motion: reduce) {
  .sl-home-slide,
  .sl-gallery-item img {
    transition: none;
  }
}
