/*
 * Illustration Portfolio - Soft pastel theme
 * Friendly, light, and playful for showing cute artwork
 */

@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@400;500;600;700&family=Gowun+Dodum&display=swap');

/* ========================================================================== */
/* CSS VARIABLES */
/* ========================================================================== */

:root {
  /* Colors - Pastel Theme */
  --bg-primary: #fff7f3;
  --bg-secondary: #ffeef2;
  --bg-card: #ffffff;
  --text-primary: #3f2d2f;
  --text-secondary: #7b5d61;
  --text-muted: #a17f86;

  /* Gradient Accents */
  --gradient-primary: linear-gradient(135deg, #ffb6c8 0%, #ffd6a5 100%);
  --gradient-secondary: linear-gradient(135deg, #c8e7ff 0%, #ffe1f0 100%);
  --gradient-accent: linear-gradient(135deg, #b7e4c7 0%, #ffd6e0 100%);
  --gradient-warm: linear-gradient(135deg, #ffb6c1 0%, #ffd6a5 100%);

  /* Fonts */
  --font-display: "Quicksand", "Gowun Dodum", -apple-system, sans-serif;
  --font-body: "Quicksand", "Gowun Dodum", -apple-system, sans-serif;

  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 1.5rem;
  --spacing-lg: 2rem;
  --spacing-xl: 3rem;
  --spacing-2xl: 4rem;
  --spacing-3xl: 6rem;

  /* Effects */
  --radius: 1.2rem;
  --shadow-sm: 0 6px 18px rgba(255, 182, 200, 0.16);
  --shadow-md: 0 10px 32px rgba(255, 182, 200, 0.2);
  --shadow-lg: 0 18px 50px rgba(255, 182, 200, 0.28);
  --shadow-glow: 0 0 40px rgba(255, 182, 200, 0.35);

  /* Compat with inline vars */
  --color-background: var(--bg-primary);
  --color-card: var(--bg-card);
  --color-muted-foreground: var(--text-muted);
  --color-error: #f08c99;
}

/* ========================================================================== */
/* BASE STYLES */
/* ========================================================================== */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: var(--font-body);
  background: var(--bg-primary);
  background-image:
    radial-gradient(circle at 20% 20%, rgba(255, 214, 165, 0.4) 0, transparent 30%),
    radial-gradient(circle at 80% 0%, rgba(200, 231, 255, 0.35) 0, transparent 32%),
    radial-gradient(circle at 70% 70%, rgba(255, 182, 200, 0.25) 0, transparent 35%);
  color: var(--text-primary);
  line-height: 1.6;
  font-size: 1rem;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-primary);
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.5rem, 8vw, 5rem); font-weight: 700; }
h2 { font-size: clamp(2rem, 6vw, 3.5rem); }
h3 { font-size: clamp(1.5rem, 4vw, 2rem); }

a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

a:hover {
  color: var(--text-primary);
}

/* ========================================================================== */
/* CONTAINER */
/* ========================================================================== */

.container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.main-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

@media (min-width: 768px) {
  .container {
    padding: 0 2rem;
  }
}

@media (min-width: 1024px) {
  .container {
    padding: 0 3rem;
  }
}

/* ========================================================================== */
/* HEADER */
/* ========================================================================== */

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 182, 200, 0.18);
  padding: 0.85rem 0;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.header.scrolled {
  padding: 0.7rem 0;
  background: rgba(255, 255, 255, 0.95);
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 800;
  padding: 0.35rem 0.65rem;
  border-radius: 0.9rem;
  background: rgba(255, 182, 200, 0.18);
  color: #3f2d2f;
  letter-spacing: -0.01em;
}

.header-nav {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.header-link {
  font-size: 0.9rem;
  font-weight: 700;
  color: #5d4a4d;
  transition: color 0.3s ease;
}

.header-link:hover {
  color: var(--text-primary);
}

.header-admin-btn {
  padding: 0.55rem 1.4rem;
  background: var(--gradient-primary);
  border-radius: 1.4rem;
  font-size: 0.9rem;
  font-weight: 700;
  color: #3f2d2f;
  transition: all 0.3s ease;
}

.header-admin-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
}

/* ========================================================================== */
/* HERO SECTION */
/* ========================================================================== */

.hero {
  min-height: 50vh;
  display: flex;
  align-items: center;
  padding-top: 6rem;
  padding-bottom: 3rem;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 25% 30%, rgba(255, 182, 200, 0.28), transparent 35%),
    radial-gradient(circle at 75% 20%, rgba(200, 231, 255, 0.22), transparent 32%),
    radial-gradient(circle at 50% 70%, rgba(255, 214, 165, 0.24), transparent 40%);
  pointer-events: none;
  opacity: 0.7;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}

.hero-simple {
  background: rgba(255, 255, 255, 0.82);
  padding: 2rem 2.4rem;
  border-radius: 1.4rem;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(255, 182, 200, 0.24);
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: rgba(255, 182, 200, 0.18);
  color: #9b6a73;
  font-weight: 700;
  font-size: 0.85rem;
  margin-bottom: 0.75rem;
}

.hero-title {
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #ff8fb1 0%, #ffb86c 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: clamp(1.05rem, 3vw, 1.3rem);
  color: var(--text-secondary);
  margin-bottom: 1.4rem;
  line-height: 1.7;
  font-weight: 500;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  margin-bottom: 0.4rem;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.6rem;
  background: var(--gradient-primary);
  border-radius: 1.8rem;
  font-weight: 700;
  color: #3f2d2f;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(255, 182, 200, 0.3);
}

.hero-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 34px rgba(255, 182, 200, 0.4);
}

.hero-note {
  font-size: 0.95rem;
  color: var(--text-secondary);
  padding: 0.65rem 0.95rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.75);
  border: 1px dashed rgba(255, 182, 200, 0.5);
}

/* ========================================================================== */
/* FILTER SECTION */
/* ========================================================================== */

.filter-section {
  padding: 2rem 0;
  position: sticky;
  top: 80px;
  z-index: 90;
  background: linear-gradient(180deg, var(--bg-primary) 0%, rgba(255, 247, 243, 0.95) 100%);
  backdrop-filter: blur(20px);
}

.filter-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.filter-btn {
  padding: 0.75rem 2rem;
  font-size: 0.875rem;
  font-weight: 600;
  border: 2px solid rgba(255, 182, 200, 0.25);
  border-radius: 3rem;
  background: rgba(255, 255, 255, 0.7);
  color: var(--text-secondary);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-family: var(--font-body);
}

.filter-btn:hover {
  border-color: rgba(255, 182, 200, 0.7);
  background: rgba(255, 182, 200, 0.15);
  color: var(--text-primary);
  transform: translateY(-2px);
}

.filter-btn.active {
  border-color: transparent;
  background: var(--gradient-primary);
  color: #3f2d2f;
  box-shadow: 0 10px 24px rgba(255, 182, 200, 0.3);
}

/* ========================================================================== */
/* GALLERY GRID */
/* ========================================================================== */

.gallery-section {
  padding: 6rem 0 3rem;
  min-height: 60vh;
}

.section-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: rgba(255, 182, 200, 0.2);
  color: #9b6a73;
  font-weight: 700;
  font-size: 0.85rem;
  margin-bottom: 0.8rem;
}

.section-header p {
  color: var(--text-secondary);
  margin-top: 0.4rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  justify-content: center;
}

@media (min-width: 900px) {
  .gallery-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

/* ========================================================================== */
/* ARTWORK CARD */
/* ========================================================================== */

.artwork-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: #ffffff;
  cursor: pointer;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
  animation: fadeInUp 0.8s ease-out forwards;
  border: 1px solid rgba(255, 182, 200, 0.28);
  box-shadow: var(--shadow-sm);
}

.artwork-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 182, 200, 0.12) 0%, rgba(200, 231, 255, 0.12) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1;
}

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

.artwork-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.artwork-image-container {
  position: relative;
  width: 100%;
  padding-top: 90%;
  overflow: hidden;
  background: var(--bg-secondary);
}

.artwork-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
  user-select: none;
}

.artwork-card:hover .artwork-image {
  transform: scale(1.03);
}

.artwork-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(255, 247, 243, 0.95) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem;
  z-index: 2;
}

.artwork-card:hover .artwork-overlay {
  opacity: 1;
}

.artwork-category-badge {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 2rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: white;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
  width: fit-content;
}

.artwork-content {
  padding: 1.5rem;
  background: #ffffff;
}

.artwork-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  font-family: var(--font-display);
}

.artwork-description {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Stagger animation */
.artwork-card:nth-child(1) { animation-delay: 0.1s; }
.artwork-card:nth-child(2) { animation-delay: 0.15s; }
.artwork-card:nth-child(3) { animation-delay: 0.2s; }
.artwork-card:nth-child(4) { animation-delay: 0.25s; }
.artwork-card:nth-child(5) { animation-delay: 0.3s; }
.artwork-card:nth-child(6) { animation-delay: 0.35s; }
.artwork-card:nth-child(7) { animation-delay: 0.4s; }
.artwork-card:nth-child(8) { animation-delay: 0.45s; }
.artwork-card:nth-child(9) { animation-delay: 0.5s; }

/* ========================================================================== */
/* FOOTER */
/* ========================================================================== */

.footer {
  background: transparent;
  border-top: 1px solid rgba(255, 182, 200, 0.25);
  padding: 0.5rem 0;
  margin-top: auto;
  box-shadow: none;
}

.footer.footer-min {
  padding: 0.5rem 0;
}

.footer-bottom {
  padding-top: 0.5rem;
  text-align: center;
}

.footer-copy {
  margin: 0;
  color: #5c4b4e;
  font-size: 0.9rem;
}

.footer-bottom p {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* ========================================================================== */
/* FORMS */
/* ========================================================================== */

.form-container {
  max-width: 500px;
  margin: 0 auto;
  padding: 8rem 1rem 4rem;
}

.form-card {
  background: #ffffff;
  padding: 3rem;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 182, 200, 0.3);
  box-shadow: var(--shadow-md);
}

.form-title {
  font-size: 2rem;
  margin-bottom: 2rem;
  text-align: center;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: 1rem;
  font-size: 1rem;
  font-family: var(--font-body);
  border: 2px solid rgba(255, 182, 200, 0.2);
  border-radius: 0.75rem;
  background: rgba(255, 255, 255, 0.8);
  color: var(--text-primary);
  transition: all 0.3s ease;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  outline: none;
  border-color: rgba(255, 182, 200, 0.65);
  background: rgba(255, 182, 200, 0.08);
}

.form-textarea {
  min-height: 120px;
  resize: vertical;
}

.form-file {
  width: 100%;
  padding: 1rem;
  border: 2px dashed rgba(255, 182, 200, 0.5);
  border-radius: 0.75rem;
  background: rgba(255, 255, 255, 0.9);
  cursor: pointer;
  transition: all 0.3s ease;
}

.form-file:hover {
  border-color: rgba(255, 182, 200, 0.8);
  background: rgba(255, 182, 200, 0.08);
}

.form-button {
  width: 100%;
  padding: 1rem;
  font-size: 1rem;
  font-weight: 600;
  font-family: var(--font-body);
  border: none;
  border-radius: 0.5rem;
  background: var(--gradient-primary);
  color: #3f2d2f;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 10px 26px rgba(255, 182, 200, 0.3);
}

.form-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 34px rgba(255, 182, 200, 0.4);
}

.form-button-secondary {
  background: rgba(255, 182, 200, 0.1);
  box-shadow: none;
}

.form-button-secondary:hover {
  background: rgba(255, 182, 200, 0.18);
  box-shadow: none;
}

/* ========================================================================== */
/* FLASH MESSAGES */
/* ========================================================================== */

.flash-messages {
  position: fixed;
  top: 6rem;
  right: 2rem;
  z-index: 1000;
  max-width: 400px;
}

.flash-message {
  padding: 1rem 1.5rem;
  margin-bottom: 1rem;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  backdrop-filter: blur(20px);
  animation: slideInRight 0.3s ease-out;
  box-shadow: var(--shadow-lg);
}

.flash-success {
  background: rgba(34, 197, 94, 0.2);
  border: 1px solid rgba(34, 197, 94, 0.5);
  color: #86efac;
}

.flash-error {
  background: rgba(239, 68, 68, 0.2);
  border: 1px solid rgba(239, 68, 68, 0.5);
  color: #fca5a5;
}

/* ========================================================================== */
/* ADMIN DASHBOARD */
/* ========================================================================== */

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

.admin-header-bar {
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow-sm);
}

.admin-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 3rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.admin-table-container {
  background: var(--bg-card);
  border-radius: var(--radius);
  border: 1px solid rgba(255, 182, 200, 0.25);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
}

.admin-table thead {
  background: rgba(255, 182, 200, 0.08);
}

.admin-table th,
.admin-table td {
  padding: 1.25rem;
  text-align: left;
  border-bottom: 1px solid rgba(255, 182, 200, 0.15);
}

.admin-table th {
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--text-primary);
}

.admin-table td {
  font-size: 0.875rem;
  color: var(--text-secondary);
}

.admin-table tbody tr {
  transition: background 0.2s ease;
}

.admin-table tbody tr:hover {
  background: rgba(255, 182, 200, 0.08);
}

.admin-table img {
  width: 80px;
  height: 60px;
  object-fit: cover;
  border-radius: 0.5rem;
}

.admin-actions {
  display: flex;
  gap: 0.5rem;
}

.btn {
  padding: 0.5rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 600;
  border: none;
  border-radius: 0.65rem;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: var(--font-body);
  text-decoration: none;
  display: inline-block;
}

.btn-primary {
  background: var(--gradient-primary);
  color: #3f2d2f;
  box-shadow: 0 10px 26px rgba(255, 182, 200, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(255, 182, 200, 0.4);
}

.btn-secondary {
  background: rgba(255, 182, 200, 0.12);
  color: var(--text-primary);
}

.btn-secondary:hover {
  background: rgba(255, 182, 200, 0.18);
}

.btn-danger {
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  color: white;
}

.btn-danger:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(245, 87, 108, 0.4);
}

.btn-small {
  padding: 0.375rem 1rem;
  font-size: 0.75rem;
}

/* ========================================================================== */
/* ERROR PAGES */
/* ========================================================================== */

.error-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
}

.error-content {
  max-width: 600px;
}

.error-code {
  font-size: 8rem;
  font-weight: 900;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
  line-height: 1;
}

.error-message {
  font-size: 1.5rem;
  color: var(--text-primary);
  margin-bottom: 2rem;
}

/* ========================================================================== */
/* ANIMATIONS */
/* ========================================================================== */

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* ========================================================================== */
/* UTILITIES */
/* ========================================================================== */

.hidden {
  display: none !important;
}

.text-center {
  text-align: center;
}

.mt-4 { margin-top: var(--spacing-lg); }
.mb-4 { margin-bottom: var(--spacing-lg); }

/* Empty state */
.empty-state {
  text-align: center;
  padding: 6rem 2rem;
  grid-column: 1 / -1;
}

.empty-state h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.empty-state p {
  color: var(--text-secondary);
  font-size: 1.125rem;
  margin-bottom: 2rem;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.25s ease;
}

.lightbox.active {
  pointer-events: auto;
  opacity: 1;
}

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(6px);
}

.lightbox-body {
  position: relative;
  background: #fff;
  border-radius: 1rem;
  padding: 1rem 1rem 1.5rem;
  max-width: min(90vw, 1100px);
  max-height: 85vh;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
}

.lightbox img {
  max-width: 100%;
  max-height: 70vh;
  object-fit: contain;
  border-radius: 0.75rem;
  background: #f8f8f8;
  user-select: none;
}

.lightbox-caption h3 {
  margin-bottom: 0.35rem;
}

.lightbox-caption p {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.lightbox.no-caption .lightbox-caption {
  display: none;
}

.lightbox-close {
  position: absolute;
  top: 0.35rem;
  right: 0.35rem;
  border: none;
  background: rgba(63, 45, 47, 0.07);
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 50%;
  font-size: 1.3rem;
  color: #3f2d2f;
  cursor: pointer;
  transition: background 0.2s ease;
}

.lightbox-close:hover {
  background: rgba(63, 45, 47, 0.12);
}
