.featured-article,
.gallery-item.wide {
  grid-column: span 2;
}
:root {
  --clay-canvas: #f4f1fa;
  --clay-foreground: #332f3a;
  --clay-muted: #635f69;
  --clay-primary: #7c3aed;
  --clay-secondary: #db2777;
  --clay-tertiary: #0ea5e9;
  --clay-success: #10b981;
  --clay-warning: #f59e0b;
  --clay-card-bg: rgba(255, 255, 255, 0.7);
  --clay-input-bg: #efebf5;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "DM Sans", sans-serif;
  background-color: var(--clay-canvas);
  color: var(--clay-foreground);
  overflow-x: hidden;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: Nunito, sans-serif;
  font-weight: 900;
  letter-spacing: -0.02em;
}
.clay-text-gradient {
  background: linear-gradient(
    135deg,
    var(--clay-foreground) 0,
    var(--clay-primary) 60%,
    var(--clay-secondary) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.shadow-clay-button {
  box-shadow: 12px 12px 24px rgba(139, 92, 246, 0.3),
    -8px -8px 16px rgba(255, 255, 255, 0.4),
    inset 4px 4px 8px rgba(255, 255, 255, 0.4),
    inset -4px -4px 8px rgba(0, 0, 0, 0.1);
}
.shadow-clay-button:hover {
  box-shadow: 12px 12px 32px rgba(139, 92, 246, 0.4),
    -8px -8px 20px rgba(255, 255, 255, 0.6),
    inset 4px 4px 8px rgba(255, 255, 255, 0.4),
    inset -4px -4px 8px rgba(0, 0, 0, 0.1);
}
.shadow-clay-pressed {
  box-shadow: inset 10px 10px 20px #d9d4e3, inset -10px -10px 20px #fff;
}
.shadow-clay-deep {
  box-shadow: 30px 30px 60px #cdc6d9, -30px -30px 60px #fff,
    inset 10px 10px 20px rgba(139, 92, 246, 0.05),
    inset -10px -10px 20px rgba(255, 255, 255, 0.8);
}
.btn-clay-primary,
.btn-clay-secondary {
  display: inline-flex;
  gap: 8px;
  padding: 16px 32px;
  height: 56px;
  font-weight: 700;
  letter-spacing: 0.05em;
  font-size: 16px;
  box-shadow: 12px 12px 24px rgba(139, 92, 246, 0.3),
    -8px -8px 16px rgba(255, 255, 255, 0.4),
    inset 4px 4px 8px rgba(255, 255, 255, 0.4),
    inset -4px -4px 8px rgba(0, 0, 0, 0.1);
  transition: 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
@keyframes clay-float {
  0%,
  100% {
    transform: translateY(0) rotate(0);
  }
  50% {
    transform: translateY(-20px) rotate(2deg);
  }
}
@keyframes clay-float-delayed {
  0%,
  100% {
    transform: translateY(0) rotate(0);
  }
  50% {
    transform: translateY(-15px) rotate(-2deg);
  }
}
@keyframes clay-float-slow {
  0%,
  100% {
    transform: translateY(0) rotate(0);
  }
  50% {
    transform: translateY(-30px) rotate(5deg);
  }
}
@keyframes clay-breathe {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.02);
  }
}
@keyframes pulse-ring {
  0% {
    box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.7);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(124, 58, 237, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(124, 58, 237, 0);
  }
}
@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.animate-clay-float-delayed {
  animation: 10s ease-in-out infinite clay-float-delayed;
}
.animate-clay-float-slow {
  animation: 12s ease-in-out infinite clay-float-slow;
}
.animate-clay-breathe {
  animation: 6s ease-in-out infinite clay-breathe;
}
.animate-pulse-ring {
  animation: 2s infinite pulse-ring;
}
.animate-slide-in-right {
  animation: 0.6s ease-out forwards slideInRight;
}
.animation-delay-2000 {
  animation-delay: 2s;
}
.animation-delay-4000 {
  animation-delay: 4s;
}
@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
  }
}
.btn-clay-primary {
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  color: #fff;
  border: none;
  background: linear-gradient(135deg, #a78bfa 0, #7c3aed 100%);
}
.btn-clay-primary:hover,
.btn-clay-secondary:hover {
  transform: translateY(-6px);
  box-shadow: 16px 16px 32px rgba(139, 92, 246, 0.4),
    -10px -10px 20px rgba(255, 255, 255, 0.6),
    inset 4px 4px 8px rgba(255, 255, 255, 0.5),
    inset -4px -4px 8px rgba(0, 0, 0, 0.15);
}
.btn-clay-primary:active,
.btn-clay-secondary:active {
  transform: scale(0.92);
  box-shadow: inset 10px 10px 20px #d9d4e3, inset -10px -10px 20px #fff;
}
.btn-clay-secondary {
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  color: var(--clay-foreground);
  background: #fff;
  border: none;
}
.card-clay,
.navbar {
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow-clay-card);
}
.card-clay {
  background: var(--clay-card-bg);
}
.card-clay:hover {
  box-shadow: 20px 20px 40px rgba(160, 150, 180, 0.25), -12px -12px 28px #fff,
    inset 6px 6px 12px rgba(139, 92, 246, 0.05), inset -6px -6px 12px #fff;
}
.navbar {
  background: rgba(255, 255, 255, 0.8);
  border-radius: 32px;
  margin: 1rem;
  position: sticky;
  top: 0;
  z-index: 40;
}
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(244, 241, 250, 0.95);
  backdrop-filter: blur(10px);
  z-index: 30;
  animation: 0.3s slideInLeft;
}
.card-clay {
  backdrop-filter: blur(20px);
}
.mobile-menu.active {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding-top: 100px;
}
@keyframes slideInLeft {
  from {
    transform: translateX(-100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}
.mobile-menu-item {
  padding: 16px 24px;
  font-size: 18px;
  font-weight: 600;
  color: var(--clay-foreground);
  border-bottom: 1px solid rgba(99, 95, 105, 0.1);
  text-decoration: none;
  transition: 0.2s;
}
.content-section h2,
.faq-category h2,
.faq-question.active,
.loader-text,
.mobile-menu-item.active,
.mobile-menu-item:hover {
  color: var(--clay-primary);
}
.mobile-menu-item:hover {
  background: rgba(124, 58, 237, 0.1);
  padding-left: 32px;
}
.mobile-menu-item.active {
  background: rgba(124, 58, 237, 0.15);
  border-left: 4px solid var(--clay-primary);
}
.mobile-menu-cta {
  margin: 24px;
}
.preloader {
  position: fixed;
  inset: 0;
  background: var(--clay-canvas);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 50;
  animation: 0.5s ease-out 2.5s forwards fadeOut;
}
@keyframes fadeOut {
  to {
    opacity: 0;
    pointer-events: none;
  }
}
.plate-spinner {
  width: 120px;
  height: 120px;
  position: relative;
}
.plate-spinner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: conic-gradient(
    from 0deg,
    #a78bfa 0deg,
    #7c3aed 90deg,
    #db2777 180deg,
    #a78bfa 360deg
  );
  border-radius: 50%;
  animation: 2s linear infinite spin;
}
.plate-spinner::after {
  content: "";
  position: absolute;
  inset: 12px;
  background: var(--clay-canvas);
  border-radius: 50%;
  z-index: 1;
}
.loader-food {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  z-index: 2;
  animation: 1.5s ease-in-out infinite bounce;
}
@keyframes spin {
  from {
    transform: rotate(0);
  }
  to {
    transform: rotate(360deg);
  }
}
@keyframes bounce {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-10px) scale(1.1);
  }
}
.loader-text {
  position: absolute;
  bottom: -50px;
  left: 50%;
  transform: translateX(-50%);
  font-weight: 700;
  white-space: nowrap;
  animation: 1.5s ease-in-out infinite pulse;
}
@keyframes pulse {
  0%,
  100% {
    opacity: 0.6;
  }
  50% {
    opacity: 1;
  }
}
.scroll-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #a78bfa, var(--clay-primary));
  color: #fff;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 40;
  box-shadow: var(--shadow-clay-button);
  transition: 0.3s;
}
.card-clay,
.gallery-item {
  box-shadow: var(--shadow-clay-card);
}
.scroll-to-top.show {
  display: flex;
}
.scroll-to-top:hover {
  transform: translateY(-4px);
  box-shadow: 12px 12px 32px rgba(139, 92, 246, 0.4),
    -8px -8px 20px rgba(255, 255, 255, 0.6),
    inset 4px 4px 8px rgba(255, 255, 255, 0.4),
    inset -4px -4px 8px rgba(0, 0, 0, 0.1);
}
@media (min-width: 768px) {
  .container-clay {
    padding: 0 40px;
  }
}
@media (min-width: 1024px) {
  .container-clay {
    padding: 0 60px;
  }
}
.section-spacing {
  padding: 60px 0;
}
@media (max-width: 768px) {
  .section-spacing {
    padding: 40px 0;
  }
}
.bg-food-image {
  background-size: cover;
  background-position: center;
  position: relative;
}
.bg-food-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.1) 0,
    rgba(0, 0, 0, 0.3) 100%
  );
  transition: 0.3s;
}
.bg-food-image:hover::before {
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.2) 0,
    rgba(0, 0, 0, 0.4) 100%
  );
}
.menu-card-starters {
  background: linear-gradient(135deg, orange 0, tomato 50%, #dc143c 100%);
  position: relative;
  overflow: hidden;
}
.menu-card-beverage::before,
.menu-card-dessert::before,
.menu-card-main::before,
.menu-card-starters::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
      circle at 20% 50%,
      rgba(255, 255, 255, 0.1) 0,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 80%,
      rgba(255, 255, 255, 0.1) 0,
      transparent 50%
    );
  pointer-events: none;
}
.menu-card-main {
  background: linear-gradient(135deg, #00ced1 0, #1e90ff 50%, #4169e1 100%);
}
.menu-card-dessert {
  background: linear-gradient(135deg, #ffb6c1 0, #ff69b4 50%, #c71585 100%);
}
.menu-card-beverage {
  background: linear-gradient(135deg, gold 0, orange 50%, #ff8c00 100%);
}
.card-clay {
  transition: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  overflow: hidden;
}
.card-clay:hover {
  transform: translateY(-8px);
}
.gallery-item {
  aspect-ratio: 1;
}
.gallery-item.tall {
  grid-row: span 2;
}
.gallery-overlay {
  inset: 0;
  background: rgba(0, 0, 0, 0);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 24px;
}
.gallery-item:hover .gallery-overlay {
  background: rgba(0, 0, 0, 0.4);
  opacity: 1;
}
.blob-container {
  pointer-events: none;
  position: fixed;
  inset: 0;
  overflow: hidden;
  z-index: -10;
}
.blob {
  mix-blend-mode: multiply;
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
}
.blog-image,
.gallery-item {
  position: relative;
  overflow: hidden;
}
@keyframes clay-float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}
.animate-clay-float {
  animation: 8s ease-in-out infinite clay-float;
}
.faq-item {
  margin-bottom: 20px;
}
.faq-question {
  background: #fff;
  border: 1px solid rgba(124, 58, 237, 0.1);
  border-radius: 20px;
  padding: 20px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: 0.3s;
  font-weight: 600;
  color: var(--clay-foreground);
}
.faq-answer,
.faq-question:hover {
  background: rgba(124, 58, 237, 0.05);
}
.faq-question:hover {
  border-color: rgba(124, 58, 237, 0.2);
}
.faq-question.active {
  background: rgba(124, 58, 237, 0.1);
  border-color: var(--clay-primary);
}
.faq-icon {
  transition: transform 0.3s;
  font-size: 20px;
}
.faq-icon.active {
  transform: rotate(180deg);
}
.faq-answer {
  display: none;
  padding: 20px;
  border-radius: 0 0 20px 20px;
  color: var(--clay-muted);
  line-height: 1.8;
  border: 1px solid rgba(124, 58, 237, 0.1);
  border-top: none;
  animation: 0.3s slideDown;
}
.faq-answer.active {
  display: block;
}
@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.faq-category {
  margin-bottom: 50px;
}
.faq-category h2 {
  font-size: 28px;
  margin-bottom: 30px;
}
.card-clay {
  background: rgba(255, 255, 255, 0.7);
  border-radius: 32px;
}
.container-clay {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}
.blog-tag,
.tag {
  padding: 6px 12px;
}
.shadow-clay-card {
  box-shadow: 16px 16px 32px rgba(160, 150, 180, 0.2),
    -10px -10px 24px rgba(255, 255, 255, 0.9),
    inset 6px 6px 12px rgba(139, 92, 246, 0.03), inset -6px -6px 12px #fff;
}
.content-section {
  margin-bottom: 40px;
}
.content-section h2 {
  font-size: 28px;
  margin-bottom: 16px;
}
.blog-meta,
.content-section p {
  margin-bottom: 12px;
  color: var(--clay-muted);
}
.content-section h3 {
  font-size: 20px;
  margin-top: 24px;
  margin-bottom: 12px;
  color: var(--clay-foreground);
}
.content-section p {
  line-height: 1.8;
}
.content-section ul {
  margin-left: 20px;
  margin-bottom: 16px;
}
.content-section li {
  margin-bottom: 8px;
  color: var(--clay-muted);
  line-height: 1.8;
}
.blog-image {
  width: 100%;
  height: 300px;
  background: linear-gradient(135deg, #a78bfa 0, #7c3aed 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 80px;
  border-radius: 20px 20px 0 0;
}
.blog-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 20% 50%,
    rgba(255, 255, 255, 0.1) 0,
    transparent 50%
  );
}
.blog-meta {
  display: flex;
  gap: 16px;
  font-size: 14px;
}
.blog-tag,
.read-more {
  color: var(--clay-primary);
  font-weight: 600;
}
.blog-meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
}
.blog-tag {
  display: inline-block;
  background: rgba(124, 58, 237, 0.1);
  border-radius: 20px;
  font-size: 12px;
  margin-right: 8px;
}
.article-image,
.blog-card-image {
  background: linear-gradient(135deg, #a78bfa 0, #7c3aed 100%);
  width: 100%;
}
.featured-article {
  border-radius: 32px;
}
.featured-image {
  height: 400px !important;
  border-radius: 32px 32px 0 0;
}
@media (max-width: 1024px) {
  .featured-article {
    grid-column: span 1;
  }
}
.read-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  transition: 0.3s;
  margin-top: 12px;
}
.read-more:hover {
  gap: 12px;
  color: var(--clay-secondary);
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.animate-fade-in-up {
  animation: 0.6s ease-out forwards fadeInUp;
}
.animation-delay-1 {
  animation-delay: 0.1s;
}
.animation-delay-2 {
  animation-delay: 0.2s;
}
.animation-delay-3 {
  animation-delay: 0.3s;
}
.animation-delay-4 {
  animation-delay: 0.4s;
}
.gallery-modal-content,
.gallery-modal.active .gallery-modal-content {
  animation: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) modalFadeIn;
}
.article-content {
  margin: 0 auto;
}
.article-content h2 {
  font-size: 32px;
  margin-top: 40px;
  margin-bottom: 20px;
  color: var(--clay-foreground);
}
.article-content h3 {
  font-size: 24px;
  margin-top: 32px;
  margin-bottom: 16px;
  color: var(--clay-foreground);
}
.article-content p {
  line-height: 1.8;
  color: var(--clay-muted);
  margin-bottom: 16px;
  font-size: 16px;
}
.article-content ul {
  margin-left: 24px;
  margin-bottom: 20px;
}
.article-content li {
  margin-bottom: 10px;
  color: var(--clay-muted);
  line-height: 1.8;
}
.article-content blockquote {
  border-left: 4px solid var(--clay-primary);
  padding-left: 24px;
  margin: 24px 0;
  color: var(--clay-primary);
  font-style: italic;
  font-size: 18px;
}
.article-image {
  height: 400px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 100px;
  margin-bottom: 32px;
}
.article-meta {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  color: var(--clay-muted);
  font-size: 14px;
}
.blog-card {
  overflow: hidden;
}
.blog-card-image {
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 50px;
  border-radius: 20px 20px 0 0;
}
.tag {
  display: inline-block;
  background: rgba(124, 58, 237, 0.1);
  color: var(--clay-primary);
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 12px;
}
.gallery-modal,
.gallery-overlay {
  display: flex;
  opacity: 0;
  pointer-events: none;
  inset: 0;
}
.gallery-item {
  border-radius: 1.5rem;
  cursor: pointer;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08), 0 2px 8px rgba(0, 0, 0, 0.04);
  transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    box-shadow 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  background: #f0ebe3;
}
.gallery-item:hover {
  box-shadow: 20px 20px 40px rgba(160, 150, 180, 0.3), -12px -12px 28px #fff;
  transform: translateY(-6px);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.14), 0 4px 14px rgba(0, 0, 0, 0.06);
}
.gallery-item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.gallery-item:hover img {
  transform: scale(1.06);
}
.gallery-overlay {
  position: absolute;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.7) 0,
    rgba(0, 0, 0, 0.2) 40%,
    rgba(0, 0, 0, 0) 100%
  );
  align-items: flex-end;
  justify-content: flex-start;
  padding: 1.25rem 1.5rem;
  transition: opacity 0.35s;
}
.gallery-overlay span {
  color: #fff;
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.01em;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
  transform: translateY(8px);
  transition: transform 0.35s;
}
.gallery-item:hover .gallery-overlay span {
  transform: translateY(0);
}
@media (min-width: 640px) {
  .gallery-item.wide {
    grid-column: span 2;
  }
  .gallery-item.tall {
    grid-row: span 2;
  }
}
.gallery-modal {
  position: fixed;
  z-index: 9999;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s;
}
.gallery-modal.active {
  opacity: 1;
  pointer-events: auto;
}
.gallery-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(20, 16, 24, 0.88);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  cursor: pointer;
}
.gallery-modal-content {
  position: relative;
  z-index: 2;
  max-width: 90vw;
  max-height: 85vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.gallery-modal-close,
.gallery-modal-next,
.gallery-modal-prev {
  position: fixed;
  z-index: 10001;
  color: #fff;
  cursor: pointer;
  display: flex;
  transition: 0.25s;
}
@keyframes modalFadeIn {
  from {
    opacity: 0;
    transform: scale(0.92) translateY(20px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}
.gallery-modal-content img {
  max-width: 100%;
  max-height: 75vh;
  object-fit: contain;
  border-radius: 1.25rem;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
  background: #1a161e;
}
.gallery-modal-caption {
  color: #fff;
  font-weight: 600;
  font-size: 1.1rem;
  margin-top: 1rem;
  text-align: center;
  letter-spacing: 0.02em;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}
.gallery-modal-close {
  top: 20px;
  right: 24px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 22px;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.gallery-modal-close:hover {
  background: rgba(255, 255, 255, 0.22);
  transform: scale(1.08);
  border-color: rgba(255, 255, 255, 0.4);
}
.gallery-modal-next,
.gallery-modal-prev {
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-size: 28px;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  user-select: none;
}
.gallery-modal-prev {
  left: 20px;
}
.gallery-modal-next {
  right: 20px;
}
.gallery-modal-next:hover,
.gallery-modal-prev:hover {
  background: rgba(255, 255, 255, 0.22);
  transform: translateY(-50%) scale(1.1);
  border-color: rgba(255, 255, 255, 0.4);
}
@media (max-width: 640px) {
  .section-spacing {
    padding: 30px 0;
  }
  .gallery-modal-next,
  .gallery-modal-prev {
    width: 38px;
    height: 38px;
    font-size: 22px;
  }
  .gallery-modal-prev {
    left: 8px;
  }
  .gallery-modal-next {
    right: 8px;
  }
  .gallery-modal-close {
    top: 12px;
    right: 12px;
    width: 36px;
    height: 36px;
    font-size: 18px;
  }
  .gallery-modal-content {
    max-width: 94vw;
    max-height: 80vh;
  }
  .gallery-modal-content img {
    max-height: 65vh;
    border-radius: 1rem;
  }
  .gallery-modal-caption {
    font-size: 0.95rem;
    margin-top: 0.7rem;
  }
}
.nav-link.active {
  color: #9b74f7;
  border-bottom: 3px solid;
  line-height: 30px;
  font-weight: 700;font-weight: bold;
}