/* CSS Custom Properties */
:root {
  --color-bg: #0a0a0a;
  --color-bg-elevated: #111;
  --color-bg-hover: #1a1a1a;
  --color-text: #fff;
  --color-text-muted: #999;
  --color-text-subtle: #888;
  --color-border: #222;
  --color-border-hover: #333;
  --color-border-muted: #1a1a1a;
  --font-heading: 'Syne', sans-serif;
  --font-body: 'Space Grotesk', sans-serif;
  --ease-smooth: cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: 0.3s;
  --transition-medium: 0.5s;
  --transition-slow: 0.8s;
}

/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Space Grotesk', sans-serif;
  background-color: #0a0a0a;
  color: #ffffff;
  line-height: 1.6;
  overflow-x: hidden;
}

/* Simple Page Fade-in */
body.fade-in-ready {
  animation: pageFadeIn 0.3s ease-out forwards;
}

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

/* Reading Progress Bar */
.reading-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 4px;
  background: linear-gradient(90deg, #fff, #888);
  z-index: 10001;
}

/* Custom Cursor - Desktop Only */
@media (min-width: 969px) {
  body.has-cursor {
    cursor: auto;
  }
  
  .cursor {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #fff;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transition: transform 0.1s ease;
    mix-blend-mode: difference;
    opacity: 0;
  }
  
  .cursor.active {
    opacity: 1;
  }

  .cursor-follower {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.3);
    position: fixed;
    pointer-events: none;
    z-index: 9998;
    transition: transform 0.3s ease, width 0.3s ease, height 0.3s ease;
    opacity: 0;
  }
  
  .cursor-follower.active {
    opacity: 1;
  }

  .cursor-follower.hover {
    width: 60px;
    height: 60px;
    border-color: #fff;
  }
}

@media (max-width: 968px) {
  .cursor, .cursor-follower {
    display: none !important;
  }
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 1.5rem 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  background: rgba(10, 10, 10, 0.8);
  backdrop-filter: blur(20px);
}

.logo {
  font-family: 'Syne', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
}

.nav-links a {
  color: #888;
  text-decoration: none;
  margin-left: 2.5rem;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: color 0.3s ease;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 1px;
  background: #fff;
  transition: width 0.3s ease;
}

.nav-links a:hover {
  color: #fff;
}

.nav-links a:hover::after {
  width: 100%;
}

/* Hamburger Menu */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1001;
  gap: 6px;
}

.menu-toggle span {
  display: block;
  width: 25px;
  height: 2px;
  background: #fff;
  transition: all 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* Back to Top Button */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background: #fff;
  color: #0a0a0a;
  transform: translateY(-3px);
}

/* Hero Section */
.hero {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0 2rem;
  position: relative;
}

.hero-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(4rem, 18vw, 14rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 0.9;
  background: linear-gradient(135deg, #fff 0%, #888 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-title .letter {
  display: inline-block;
  opacity: 0;
  transform: translateY(100px) rotate(10deg);
  animation: letterReveal 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-title .letter:nth-child(1) { animation-delay: 0.1s; }
.hero-title .letter:nth-child(2) { animation-delay: 0.15s; }
.hero-title .letter:nth-child(3) { animation-delay: 0.2s; }
.hero-title .letter:nth-child(4) { animation-delay: 0.25s; }
.hero-title .letter:nth-child(5) { animation-delay: 0.3s; }
.hero-title .letter:nth-child(6) { animation-delay: 0.35s; }
.hero-title .letter:nth-child(7) { animation-delay: 0.4s; }

@keyframes letterReveal {
  to {
    opacity: 1;
    transform: translateY(0) rotate(0deg);
  }
}

.hero-subtitle {
  font-size: 1.1rem;
  color: var(--color-text-muted);
  margin-top: 2rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  opacity: 0;
  animation: fadeUp 1s ease 0.8s forwards;
}

.hero-scroll {
  position: absolute;
  bottom: 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  opacity: 0;
  animation: fadeUp 1s ease 1.2s forwards;
}

.hero-scroll span {
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

.scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, #fff, transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { transform: scaleY(1); opacity: 1; }
  50% { transform: scaleY(0.5); opacity: 0.5; }
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Sections */
section {
  min-height: 100vh;
  padding: 8rem 3rem;
}

.section-title {
  font-family: 'Syne', sans-serif;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: var(--color-text-muted);
  margin-bottom: 4rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.section-title::before {
  content: '';
  width: 40px;
  height: 1px;
  background: var(--color-text-muted);
}

/* About Section */
#about {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-content {
  max-width: 900px;
}

.about-content p {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  line-height: 1.6;
  color: #ccc;
  font-weight: 300;
}

.about-content p .highlight {
  color: #fff;
  font-weight: 600;
}

/* Photo Gallery - Thumbnail Grid */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
  border-radius: 8px;
  background: #111;
  cursor: pointer;
}

.gallery-item a {
  display: block;
  width: 100%;
  height: 100%;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease-smooth), filter 0.3s ease, opacity 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.08);
  filter: brightness(0.85);
}

/* Zoom icon on hover */
.gallery-item::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 48px;
  height: 48px;
  transform: translate(-50%, -50%) scale(0);
  background: rgba(255, 255, 255, 0.95);
  border-radius: 50%;
  opacity: 0;
  transition: transform 0.3s var(--ease-smooth), opacity 0.3s ease;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%230a0a0a' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='11' cy='11' r='8'%3E%3C/circle%3E%3Cline x1='21' y1='21' x2='16.65' y2='16.65'%3E%3C/line%3E%3Cline x1='11' y1='8' x2='11' y2='14'%3E%3C/line%3E%3Cline x1='8' y1='11' x2='14' y2='11'%3E%3C/line%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 24px;
  pointer-events: none;
}

.gallery-item:hover::after {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
}

.gallery-item .overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
  background: linear-gradient(transparent, rgba(0,0,0,0.9));
  transform: translateY(100%);
  transition: transform 0.4s var(--ease-smooth);
}

.gallery-item:hover .overlay {
  transform: translateY(0);
}

.overlay h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.overlay p {
  font-size: 0.8rem;
  color: var(--color-text-subtle);
  letter-spacing: 1px;
}

/* Larger thumbnails on wider screens */
@media (min-width: 1200px) {
  .gallery-grid {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.25rem;
  }
}

/* Two columns on tablets */
@media (min-width: 481px) and (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }
}

/* Smaller gap on mobile */
@media (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
  }

  .gallery-item {
    border-radius: 6px;
  }

  .gallery-item::after {
    width: 36px;
    height: 36px;
    background-size: 18px;
  }
}

/* Category Buttons */
.category-filters {
  display: flex;
  gap: 1rem;
  margin-bottom: 4rem;
  flex-wrap: wrap;
}

.filter-btn {
  background: transparent;
  border: 1px solid #333;
  color: #888;
  padding: 0.75rem 2rem;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 30px;
}

.filter-btn:hover,
.filter-btn.active {
  border-color: #fff;
  color: #fff;
  background: rgba(255,255,255,0.05);
  transform: translateY(-2px);
}

/* Blog Section */
.blog-list {
  max-width: 900px;
}

.blog-item {
  padding: 2.5rem 0;
  border-bottom: 1px solid #1a1a1a;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.blog-item:hover {
  padding-left: 2rem;
  border-color: #333;
}

.blog-date {
  font-size: 0.75rem;
  color: var(--color-text-subtle);
  margin-bottom: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.blog-title {
  font-family: 'Syne', sans-serif;
  font-size: 1.8rem;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.blog-title:hover {
  color: #888;
}

/* Contact Section */
#contact {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-info h2 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  margin-bottom: 2rem;
  line-height: 1.2;
}

.contact-info p {
  color: #888;
  font-size: 1.1rem;
  margin-bottom: 3rem;
  line-height: 1.8;
  max-width: 500px;
}

.contact-links {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-links a {
  color: #fff;
  text-decoration: none;
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  transition: transform 0.3s ease, color 0.3s ease;
}

.contact-links a:hover {
  transform: translateX(10px);
  color: #888;
}

/* Blog Post Page */
.blog-post {
  max-width: 750px;
  margin: 0 auto;
  padding: 12rem 2rem 6rem;
}

.post-header {
  margin-bottom: 4rem;
  text-align: center;
}

.post-date {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.post-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.2;
  color: #fff;
}

.post-content {
  font-size: 1.15rem;
  line-height: 2;
  color: #bbb;
}

.post-content p {
  margin-bottom: 1.75rem;
}

.post-content em {
  color: #999;
  font-style: italic;
  display: block;
  margin-bottom: 1.75rem;
}

.post-content hr {
  border: none;
  border-top: 1px solid #333;
  margin: 3rem 0;
}

.post-content blockquote {
  border-left: 3px solid #444;
  padding-left: 2rem;
  margin: 2rem 0;
  color: #888;
  font-style: italic;
}

.post-footer {
  margin-top: 5rem;
  padding-top: 3rem;
  border-top: 1px solid #222;
}

.back-link {
  color: #888;
  text-decoration: none;
  font-size: 0.9rem;
  letter-spacing: 1px;
  transition: color 0.3s ease;
}

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

/* Footer */
footer {
  padding: 4rem 3rem;
  text-align: center;
  color: #444;
  font-size: 0.85rem;
  letter-spacing: 1px;
  border-top: 1px solid #1a1a1a;
}

/* Scroll Animations */
.fade-in {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.slide-in-left {
  opacity: 0;
  transform: translateX(-60px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.slide-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.slide-in-right {
  opacity: 0;
  transform: translateX(60px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.slide-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Stagger children animations */
.stagger-children > * {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.stagger-children.visible > *:nth-child(1) { transition-delay: 0.1s; opacity: 1; transform: translateY(0); }
.stagger-children.visible > *:nth-child(2) { transition-delay: 0.2s; opacity: 1; transform: translateY(0); }
.stagger-children.visible > *:nth-child(3) { transition-delay: 0.3s; opacity: 1; transform: translateY(0); }
.stagger-children.visible > *:nth-child(4) { transition-delay: 0.4s; opacity: 1; transform: translateY(0); }
.stagger-children.visible > *:nth-child(5) { transition-delay: 0.5s; opacity: 1; transform: translateY(0); }

/* Responsive */
@media (max-width: 968px) {
  .menu-toggle {
    display: flex;
  }
  
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: #0a0a0a;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: right 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  }
  
  .nav-links.active {
    right: 0;
  }
  
  .nav-links a {
    margin: 1.5rem 0;
    font-size: 1.5rem;
  }
}

@media (max-width: 768px) {
  .navbar {
    padding: 1rem 1.5rem;
  }

  section {
    padding: 6rem 1.5rem;
  }

  .hero-title {
    font-size: clamp(3rem, 15vw, 8rem);
  }
  
  .back-to-top {
    bottom: 1.5rem;
    right: 1.5rem;
    width: 45px;
    height: 45px;
  }
  
  .blog-post {
    padding: 10rem 1.5rem 4rem;
  }
}

/* Photo Category Pages */
.photo-category {
  padding: 10rem 3rem 6rem;
  max-width: 1200px;
  margin: 0 auto;
}

.photo-category .back-link {
  display: inline-block;
  color: var(--color-text-muted);
  text-decoration: none;
  font-size: 0.85rem;
  letter-spacing: 1px;
  margin-bottom: 2rem;
  transition: color var(--transition-fast) ease;
}

.photo-category .back-link:hover {
  color: #fff;
}

.location-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 700;
  margin-bottom: 3rem;
  color: #fff;
}

.location-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.location-card {
  background: #111;
  border: 1px solid #222;
  border-radius: 12px;
  padding: 2.5rem;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.location-card:hover {
  background: #1a1a1a;
  border-color: #333;
  transform: translateY(-5px);
}

.location-card h3 {
  font-family: 'Syne', sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0.5rem;
}

.location-card p {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  letter-spacing: 1px;
}

.photo-category .gallery-grid {
  margin-top: 2rem;
}

@media (max-width: 768px) {
  .photo-category {
    padding: 8rem 1.5rem 4rem;
  }
  
  .location-grid {
    grid-template-columns: 1fr;
  }
}

/* Category Links on Homepage */
.category-links {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

.category-card {
  background: linear-gradient(135deg, #111 0%, #1a1a1a 100%);
  border: 1px solid #222;
  border-radius: 16px;
  padding: 3rem;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

.category-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.05) 0%, transparent 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.category-card:hover {
  border-color: #444;
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.category-card:hover::before {
  opacity: 1;
}

.category-card h3 {
  font-family: 'Syne', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.75rem;
}

.category-card p {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  letter-spacing: 1px;
  transition: color var(--transition-fast) ease;
}

.category-card:hover p {
  color: #888;
}

@media (max-width: 768px) {
  .category-links {
    grid-template-columns: 1fr;
  }

  .category-card {
    padding: 2rem;
  }

  .category-card h3 {
    font-size: 1.5rem;
  }
}

/* Focus Styles for Accessibility */
:focus-visible {
  outline: 2px solid var(--color-text);
  outline-offset: 3px;
}

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--color-text);
  outline-offset: 3px;
}

.nav-links a:focus-visible {
  color: var(--color-text);
}

.nav-links a:focus-visible::after {
  width: 100%;
}

.menu-toggle:focus-visible {
  outline: 2px solid var(--color-text);
  outline-offset: 3px;
}

.filter-btn:focus-visible {
  border-color: var(--color-text);
  color: var(--color-text);
}

.gallery-item:focus-within {
  outline: 2px solid var(--color-text);
  outline-offset: 3px;
}

/* Skip Link for Keyboard Navigation */
.skip-link {
  position: absolute;
  top: -100%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-text);
  color: var(--color-bg);
  padding: 1rem 2rem;
  z-index: 10002;
  text-decoration: none;
  font-weight: 600;
  border-radius: 4px;
  transition: top var(--transition-fast) ease;
}

.skip-link:focus {
  top: 1rem;
}

/* Reduced Motion for Accessibility */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .loader {
    display: none;
  }

  .hero-title .letter {
    opacity: 1;
    transform: none;
  }

  .fade-in,
  .slide-in-left,
  .slide-in-right {
    opacity: 1;
    transform: none;
  }

  .stagger-children > * {
    opacity: 1;
    transform: none;
  }

  .cursor,
  .cursor-follower {
    display: none !important;
  }
}

/* Lightbox2 Custom Styling */
.lightbox {
  background: rgba(0, 0, 0, 0.95);
}

.lb-outerContainer {
  background: transparent;
  border-radius: 12px;
  overflow: hidden;
}

.lb-container {
  padding: 0;
}

.lb-image {
  border: none !important;
  border-radius: 8px;
}

.lb-dataContainer {
  padding: 1rem 0;
}

.lb-data .lb-details {
  width: 100%;
  text-align: center;
}

.lb-data .lb-caption {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  color: var(--color-text);
  line-height: 1.5;
}

.lb-data .lb-number {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: var(--color-text-muted);
  padding-bottom: 0.5rem;
}

.lb-nav a.lb-prev,
.lb-nav a.lb-next {
  opacity: 0.7;
  transition: opacity 0.2s ease;
}

.lb-nav a.lb-prev:hover,
.lb-nav a.lb-next:hover {
  opacity: 1;
}

.lb-close {
  opacity: 0.7;
  transition: opacity 0.2s ease;
}

.lb-close:hover {
  opacity: 1;
}

/* Lightbox loading */
.lb-loader {
  background: transparent;
}

/* Hide default lightbox close button background */
.lb-data .lb-close {
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='18' y1='6' x2='6' y2='18'%3E%3C/line%3E%3Cline x1='6' y1='6' x2='18' y2='18'%3E%3C/line%3E%3C/svg%3E") no-repeat center;
  width: 32px;
  height: 32px;
  margin-top: 0.5rem;
}
