/* ============================================
   Terra Auras – Main Stylesheet
   ============================================ */

/* ============================================
   Theme Variables
   ============================================ */
:root {
  color-scheme: dark;

  /* Backgrounds */
  --bg-primary: #000000;
  --bg-offset: #050505;
  --bg-page-hero: #080808;
  --bg-quote: #060606;
  --bg-card: #0d0d0d;
  --bg-code: #111111;
  --bg-raised: #1a1a1a;

  /* Borders */
  --border-subtle: #111111;
  --border-primary: #1a1a1a;
  --border-medium: #2a2a2a;
  --border-filter: #333333;

  /* Text */
  --text-primary: #ffffff;
  --text-near: #dddddd;
  --text-secondary: #cccccc;
  --text-light: #bbbbbb;
  --text-body: #aaaaaa;
  --text-muted: #888888;
  --text-dim: #666666;
  --text-ghost: #555555;
  --text-faint: #444444;
  --text-dimmer: #333333;

  /* Special */
  --header-bg: rgba(0, 0, 0, 0.95);
  --nav-mobile-bg: #000000;
  --accent: #eeee22;
  --accent-hover: #8fb673;
  --accent-on-bg: #000000;
}

[data-theme="light"] {
  color-scheme: light;

  /* Backgrounds */
  --bg-primary: #f5f5f0;
  --bg-offset: #eeeeea;
  --bg-page-hero: #e9e9e4;
  --bg-quote: #f0f0eb;
  --bg-card: #e8e8e3;
  --bg-code: #dcdcd7;
  --bg-raised: #d5d5d0;

  /* Borders */
  --border-subtle: #d8d8d3;
  --border-primary: #d0d0cb;
  --border-medium: #c0c0bb;
  --border-filter: #b8b8b3;

  /* Text — valeurs calibrées pour contraste suffisant sur fond clair */
  --text-primary: #0e0e0e;
  --text-near: #1a1a1a;
  --text-secondary: #2a2a2a;
  --text-light: #3a3a3a;
  --text-body: #3d3d3d;
  --text-muted: #555555;
  --text-dim: #666666;
  --text-ghost: #777777;
  --text-faint: #777777;
  --text-dimmer: #888888;

  /* Special */
  --header-bg: rgba(245, 245, 240, 0.95);
  --nav-mobile-bg: #f5f5f0;
  --accent: #7a7a00;
  --accent-hover: #4d6b30;
  --accent-on-bg: #ffffff;
}

/* Hero & page-hero toujours en dark — la photo s'y lit mieux */
[data-theme="light"] .hero {
  background-color: #050505;
  --text-primary: #ffffff;
  --text-body: #aaaaaa;
  --accent: #eeee22;
  --accent-hover: #8fb673;
  --accent-on-bg: #000000;
}

[data-theme="light"] .page-hero {
  background-color: #080808;
  border-bottom-color: #1a1a1a;
  --text-primary: #ffffff;
  --text-muted: #888888;
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg-primary);
  color: var(--text-primary);
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  line-height: 1.6;
  min-height: 100vh;
  transition: background-color 0.3s ease, color 0.3s ease;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  line-height: 1.3;
}

h1 { font-size: 2.125rem; }
h2 { font-size: 1.875rem; }
h3 { font-size: 1.5rem; }

a {
  color: var(--accent);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--accent-hover);
}

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

/* Layout */
.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ============================================
   Header & Navigation
   ============================================ */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background-color: var(--header-bg);
  border-bottom: 1px solid var(--border-primary);
  padding: 1.125rem 0;
  backdrop-filter: blur(8px);
  transition: background-color 0.3s ease, border-color 0.3s ease;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.site-logo a {
  font-size: 1.375rem;
  font-weight: 600;
  color: var(--text-primary);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: color 0.3s ease;
}

.site-logo a:hover {
  color: var(--accent);
}

/* La nav est hors du header (pour éviter le piège backdrop-filter/stacking context).
   En desktop elle se positionne en fixed alignée sur le header. */
.site-nav {
  position: fixed;
  top: 0;
  right: 1.5rem;
  height: 65px;
  display: flex;
  gap: 2.5rem;
  align-items: center;
  z-index: 101;
}

.site-nav a {
  color: var(--text-secondary);
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  transition: color 0.3s ease;
  position: relative;
  padding-bottom: 2px;
}

.site-nav a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--accent);
  transition: width 0.3s ease;
}

.site-nav a:hover,
.site-nav a.active {
  color: var(--accent);
}

.site-nav a:hover::after,
.site-nav a.active::after {
  width: 100%;
}

/* Header right-side actions */
.header-right {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* Theme Toggle */
.theme-toggle {
  background: none;
  border: none;
  color: var(--text-secondary);
  font-size: 1.05rem;
  cursor: pointer;
  padding: 4px;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.3s ease;
  line-height: 1;
  flex-shrink: 0;
}

.theme-toggle:hover {
  color: var(--accent);
}

/* Desktop: hide header toggle, use nav toggle instead */
@media (min-width: 779px) {
  #theme-toggle {
    display: none;
  }
}

/* Hamburger menu */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
  background: none;
  border: none;
  z-index: 110;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  transition: all 0.3s ease;
  transform-origin: center;
}

.nav-toggle.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.nav-toggle.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ============================================
   Main Content
   ============================================ */

.site-main {
  padding-top: 65px;
}

/* ============================================
   Hero – Homepage
   ============================================ */

.hero {
  min-height: calc(100vh - 65px);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem 1.5rem;
  position: relative;
  overflow: hidden;
  background-color: var(--bg-offset);
}

.hero-bg-picture {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.45;
  transition: opacity 0.5s ease;
}

.hero:hover .hero-bg {
  opacity: 0.55;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 760px;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.hero-tagline {
  font-size: 1.0625rem;
  font-style: italic;
  color: var(--text-body);
  line-height: 1.9;
  margin-bottom: 2.5rem;
}

.hero-cta {
  display: inline-block;
  padding: 0.875rem 2.5rem;
  border: 1px solid var(--accent);
  color: var(--accent);
  font-weight: 600;
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  transition: all 0.3s ease;
}

.hero-cta:hover {
  background-color: var(--accent);
  color: var(--accent-on-bg);
}

/* ============================================
   Page Hero (inner pages)
   ============================================ */

.page-hero {
  height: 35vh;
  min-height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-color: var(--bg-page-hero);
  border-bottom: 1px solid var(--border-primary);
  position: relative;
  overflow: hidden;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.3;
}

.page-hero-content {
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  font-size: 2.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
  color: var(--text-primary);
}

.page-hero p {
  color: var(--text-muted);
  font-style: italic;
  font-size: 0.9375rem;
}

/* ============================================
   Section headings
   ============================================ */

.section-title {
  text-align: center;
  font-size: 1.625rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  margin-bottom: 2.5rem;
  position: relative;
  color: var(--text-primary);
}

.section-title::after {
  content: '';
  display: block;
  width: 50px;
  height: 1px;
  background-color: var(--accent);
  margin: 0.875rem auto 0;
}

/* ============================================
   Featured Gallery Cards (homepage + mes-photos)
   ============================================ */

.featured-section {
  padding: 5rem 0;
}

.featured-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.5rem;
}

.featured-card {
  position: relative;
  overflow: hidden;
  display: block;
  aspect-ratio: 4/3;
  background-color: var(--bg-card);
  cursor: pointer;
}

.featured-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.featured-card:hover img {
  transform: scale(1.06);
}

.featured-card-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--bg-card) 0%, var(--bg-raised) 100%);
  min-height: 240px;
}

.featured-card-placeholder span {
  font-size: 3.5rem;
  opacity: 0.3;
}

/* Overlays on images stay dark regardless of theme */
.featured-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.1) 50%, transparent 100%);
  display: flex;
  align-items: flex-end;
  padding: 1.75rem;
  transition: background 0.3s ease;
}

.featured-card:hover .featured-card-overlay {
  background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.3) 60%, transparent 100%);
}

.featured-card-title {
  font-size: 1.375rem;
  font-weight: 600;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  transition: color 0.3s ease;
}

.featured-card:hover .featured-card-title {
  color: #eeee22;
}

/* ============================================
   Gallery Grid
   ============================================ */

.gallery-section {
  padding: 3.5rem 0 5rem;
}

.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}

.gallery-filter {
  background: none;
  border: 1px solid var(--border-filter);
  color: var(--text-muted);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
  border-radius: 2px;
  cursor: pointer;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.gallery-filter:hover {
  color: var(--text-secondary);
  border-color: var(--text-dim);
}

.gallery-filter.active {
  color: var(--accent);
  border-color: var(--accent);
}

.gallery-grid {
  columns: 3;
  column-gap: 4px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  cursor: zoom-in;
  background-color: var(--bg-card);
  break-inside: avoid;
  margin-bottom: 4px;
  display: block;
}

.gallery-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.4s ease, filter 0.4s ease;
}

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

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 50%);
}

.gallery-item:hover .gallery-item-overlay {
  opacity: 1;
}

.gallery-item-overlay svg {
  width: 44px;
  height: 44px;
  color: #ffffff;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.5));
  margin-top: auto;
  margin-bottom: auto;
}

.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0.625rem 0.875rem;
  font-size: 0.75rem;
  font-style: italic;
  color: var(--text-near);
  line-height: 1.4;
  text-align: left;
}

/* Badge carousel */
.gallery-group-badge {
  position: absolute;
  top: 0.625rem;
  right: 0.625rem;
  background: rgba(0, 0, 0, 0.75);
  color: #ffffff;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.25rem 0.625rem;
  border-radius: 2px;
  border: 1px solid rgba(255,255,255,0.2);
}

.gallery-item--group .gallery-item-overlay {
  background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 40%);
}

/* Sous-galerie */
.subgallery {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1100;
  background: rgba(0, 0, 0, 0.97);
  align-items: center;
  justify-content: center;
}

.subgallery.active {
  display: flex;
}

/* Gallery placeholder */
.gallery-placeholder {
  text-align: center;
  padding: 5rem 2rem;
  color: var(--text-faint);
}

.gallery-placeholder p {
  font-size: 1.125rem;
  margin-bottom: 1rem;
}

.gallery-placeholder code {
  font-family: monospace;
  background-color: var(--bg-code);
  padding: 0.25rem 0.5rem;
  color: var(--accent);
  font-size: 0.875rem;
}

/* ============================================
   Lightbox
   (always dark — photo viewer)
   ============================================ */

.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.97);
  align-items: center;
  justify-content: center;
}

.lightbox.active {
  display: flex;
}

.lightbox-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: 4rem 5rem;
}

.lightbox-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  gap: 0;
  overflow: hidden;
}

.lightbox-img {
  flex: 1 1 auto;
  min-height: 0;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  box-shadow: 0 0 60px rgba(0,0,0,0.8);
  display: block;
}

.lightbox-close {
  position: fixed;
  top: 1.25rem;
  right: 1.5rem;
  background: none;
  border: none;
  color: #888888;
  font-size: 1.5rem;
  cursor: pointer;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s ease;
  line-height: 1;
}

.lightbox-close:hover {
  color: #eeee22;
}

.lightbox-btn {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: #666666;
  font-size: 2rem;
  cursor: pointer;
  padding: 1rem 1.25rem;
  transition: color 0.2s ease;
  z-index: 1001;
}

.lightbox-btn:hover {
  color: #eeee22;
}

.lightbox-prev { left: 0; }
.lightbox-next { right: 0; }

.lightbox-footer {
  width: 100%;
  background: rgba(0, 0, 0, 0.6);
  padding: 0.625rem 1rem 0.75rem;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
  max-height: 35%;
  overflow-y: auto;
}

.lightbox-footer::-webkit-scrollbar {
  width: 3px;
}

.lightbox-footer::-webkit-scrollbar-track {
  background: transparent;
}

.lightbox-footer::-webkit-scrollbar-thumb {
  background: #444444;
  border-radius: 2px;
}

.lightbox-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.375rem;
  justify-content: center;
}

.lightbox-tag {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #bbbbbb;
  border: 1px solid #444444;
  border-radius: 2px;
  padding: 0.125rem 0.5rem;
  cursor: pointer;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.lightbox-tag:hover {
  color: #eeee22;
  border-color: #eeee22;
}

.lightbox-caption {
  color: #888888;
  font-size: 0.8125rem;
  text-align: center;
  max-width: 600px;
  line-height: 1.5;
  margin: 0;
  width: 100%;
  box-sizing: border-box;
}

.lightbox-counter {
  position: fixed;
  top: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  color: #555555;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.1em;
}

/* ============================================
   About Page
   ============================================ */

.about-section {
  padding: 5rem 0;
}

.about-inner {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}

.about-photo-wrap {
  margin-bottom: 2.5rem;
}

.about-photo {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--accent);
  margin: 0 auto;
}

.about-photo-placeholder {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--bg-code), var(--bg-raised));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--border-medium);
  font-size: 4rem;
  color: var(--text-dimmer);
}

.about-name {
  font-size: 2.25rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  margin-bottom: 0.5rem;
}

.about-role {
  color: var(--accent);
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  margin-bottom: 3rem;
}

.about-quote {
  font-style: italic;
  font-size: 1.125rem;
  color: var(--text-muted);
  line-height: 1.9;
  border-left: 2px solid var(--accent);
  text-align: left;
  padding: 1.25rem 2rem;
  margin-bottom: 3rem;
  background-color: var(--bg-quote);
}

.about-bio {
  color: var(--text-body);
  line-height: 1.95;
  text-align: left;
  margin-bottom: 3rem;
}

.about-bio p {
  margin-bottom: 1.25rem;
}

.about-bio p:last-child {
  margin-bottom: 0;
}

.social-links {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  color: var(--text-muted);
  font-weight: 600;
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 0.75rem 1.75rem;
  border: 1px solid var(--border-medium);
  transition: all 0.3s ease;
}

.social-link:hover {
  border-color: var(--accent);
  color: var(--accent);
}

/* ============================================
   Page Content (markdown)
   ============================================ */

.page-content {
  max-width: 780px;
  margin: 0 auto;
  padding: 3rem 0;
  color: var(--text-body);
  line-height: 1.85;
}

.page-content p {
  margin-bottom: 1.25rem;
}

.page-content h2 {
  font-size: 1.5rem;
  color: var(--text-primary);
  margin: 2.5rem 0 1rem;
}

/* ============================================
   Footer
   ============================================ */

.site-footer {
  background-color: var(--bg-primary);
  border-top: 1px solid var(--border-subtle);
  padding: 3rem 0 2rem;
  text-align: center;
  transition: background-color 0.3s ease, border-color 0.3s ease;
}

.footer-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.footer-logo {
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.footer-tagline {
  font-size: 0.8125rem;
  color: var(--text-faint);
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 1.75rem;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.footer-social {
  display: flex;
  gap: 2rem;
  justify-content: center;
  margin-bottom: 2rem;
}

.footer-social a {
  color: var(--text-faint);
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: color 0.3s ease;
}

.footer-social a:hover {
  color: var(--accent);
}

.footer-divider {
  width: 40px;
  height: 1px;
  background-color: var(--bg-raised);
  margin: 0 auto 1.5rem;
}

.footer-copyright {
  font-size: 0.6875rem;
  color: var(--text-dimmer);
  letter-spacing: 0.08em;
}

/* ============================================
   Responsive
   ============================================ */

@media (max-width: 1024px) {
  .gallery-grid {
    columns: 2;
  }

  .hero-title {
    font-size: 2.75rem;
  }
}

@media (max-width: 778px) {
  .nav-toggle {
    display: flex;
  }

  /* Le header passe au z-index 200 pour rester visible au-dessus de la nav ouverte */
  .site-header {
    z-index: 200;
  }

  .site-nav {
    display: none;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    height: 100vh;
    background-color: var(--nav-mobile-bg);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    z-index: 150;
    transition: background-color 0.3s ease;
  }

  .site-nav.open {
    display: flex;
  }

  .site-nav a {
    font-size: 1.25rem;
    letter-spacing: 0.15em;
  }

  #theme-toggle {
    font-size: 1.2rem;
    width: 36px;
    height: 36px;
  }

  /* Hide the nav-bar version on mobile (accessible via overlay instead) */
  #theme-toggle-nav {
    display: none;
  }

  .hero-title {
    font-size: 2.25rem;
    letter-spacing: 0.1em;
  }

  .hero-tagline {
    font-size: 0.9375rem;
  }

  .page-hero h1 {
    font-size: 2rem;
  }

  .lightbox-btn {
    font-size: 1.5rem;
    padding: 0.75rem;
  }

  .lightbox-inner {
    padding: 3.5rem 3rem;
  }
}

@media (max-width: 600px) {
  .gallery-grid {
    columns: 2;
  }

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

  .hero-title {
    font-size: 1.875rem;
  }
}

@media (max-width: 480px) {
  .gallery-grid {
    columns: 1;
  }

  .hero {
    min-height: 60vh;
  }

  .lightbox-inner {
    padding: 3rem 1rem;
  }

  .lightbox-btn {
    display: none;
  }
}
