/* ============================================================
   OLIVER THELIN PORTFOLIO — MAIN STYLESHEET
   ============================================================ */

/* ── FONTS ── */
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:opsz,wght@9..40,300;9..40,400;9..40,500&family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;0,800;0,900;1,400;1,500;1,600;1,700&display=swap');

/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', system-ui, sans-serif;
  background: #f5f2eb;
  color: #111110;
  font-size: 15px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: inherit; }
ul { list-style: none; }

/* ── VARIABLES ── */
:root {
  --ink: #111110;
  --ink-soft: #2e2e2c;
  --muted: #8a8880;
  --border: #dedad2;
  --surface: #ede9e0;
  --bg: #f5f2eb;
  --white: #ffffff;
  --serif: 'Playfair Display', Georgia, serif;
  --sans: 'DM Sans', system-ui, sans-serif;
  --max-w: 1100px;
  --pad: 52px;
}

	#rotating-word {
	  display: inline-block;
	  transition: opacity 0.25s ease, transform 0.25s ease;
	}

	#rotating-word.is-changing {
	  opacity: 0;
	  transform: translateY(8px);
	}



/* ── UTILITIES ── */
.page-wrap { max-width: var(--max-w); margin: 0 auto; padding: 0 var(--pad); }
.serif { font-family: var(--serif); }

/* ── BUTTONS ── */
.btn {
  display: inline-block;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 400;
  padding: 11px 24px;
  border-radius: 2px;
  border: none;
  cursor: pointer;
  letter-spacing: 0.02em;
  transition: all 0.18s;
  text-decoration: none;
}
.btn-dark { background: var(--ink); color: var(--bg); }
.btn-dark:hover { background: var(--ink-soft); color: var(--bg); }
.btn-outline { background: transparent; color: var(--ink); border: 1px solid var(--border); }
.btn-outline:hover { border-color: var(--muted); }

/* ── NAVIGATION ── */
#site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  background: rgba(245,242,235,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  height: 70px;
  display: flex;
  align-items: center;
}
.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad);
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo img {
  height: 64px!important;
  width: auto;
}
.nav-logo svg {
  height: 38px;
  width: auto;
}
.nav-menu {
  display: flex;
  gap: 36px;
}
.nav-menu a {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 400;
  color: var(--muted);
  letter-spacing: 0.01em;
  transition: color 0.2s;
}
.nav-menu a:hover,
.nav-menu a.current-menu-item,
.nav-menu a[aria-current="page"] { color: var(--ink); }

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 1px;
  background: var(--ink);
  transition: all 0.25s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.mobile-menu {
  display: none;
  position: fixed;
  top: 70px; left: 0; right: 0; bottom: 0;
  background: var(--bg);
  z-index: 190;
  padding: 52px 32px;
  flex-direction: column;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: var(--serif);
  font-size: 40px;
  color: var(--ink);
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
  transition: color 0.2s;
}
.mobile-menu a:hover { color: var(--muted); }
.mobile-menu-footer {
  margin-top: auto;
  display: flex;
  gap: 24px;
  padding-top: 32px;
}
.mobile-menu-footer a {
  font-family: var(--sans);
  font-size: 13px;
  color: var(--muted);
  border-bottom: none !important;
  padding: 0 !important;
  font-size: 13px !important;
}

/* ── PAGE OFFSET ── */
.page-offset { padding-top: 70px; }

/* ── BACK / BREADCRUMB ── */
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.04em;
  transition: color 0.2s;
  margin-bottom: 52px;
}
.back-link:hover { color: var(--ink); }
.back-link .arrow {
  display: inline-block;
  width: 18px;
  height: 1px;
  background: currentColor;
  position: relative;
  vertical-align: middle;
}
.back-link .arrow::before {
  content: '';
  position: absolute;
  left: 0; top: -3px;
  width: 6px; height: 6px;
  border-left: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: rotate(45deg);
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.03em;
  margin-bottom: 52px;
}
.breadcrumb a { color: var(--muted); transition: color 0.2s; }
.breadcrumb a:hover { color: var(--ink); }
.breadcrumb .sep { color: var(--border); }
.breadcrumb .current { color: var(--muted); }
.breadcrumb .back-arrow {
  display: inline-block;
  width: 18px; height: 1px;
  background: currentColor;
  position: relative;
  vertical-align: middle;
  margin-right: 2px;
}
.breadcrumb .back-arrow::before {
  content: '';
  position: absolute;
  left: 0; top: -3px;
  width: 6px; height: 6px;
  border-left: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: rotate(45deg);
}

/* ── SECTION LABEL ── */
.section-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ============================================================
   HOME PAGE
   ============================================================ */

/* HERO */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: calc(100vh - 70px);
  border-bottom: 1px solid var(--border);
}
.hero-text {
  padding: 80px var(--pad) 80px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: calc(var(--max-w) / 2 + var(--pad));
  margin-left: auto;
}
.hero-eyebrow {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 22px;
  opacity: 0;
  animation: fadeUp 0.6s ease forwards 0.1s;
}
.hero-headline {
  font-family: var(--serif);
  font-size: clamp(44px, 5.2vw, 72px);
  font-weight: 700!important;
  line-height: 1.06;
  color: var(--ink);
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeUp 0.6s ease forwards 0.2s;
}
.hero-headline em {
  font-style: italic;
  color: var(--muted);
}
.hero-sub {
  font-size: 15px;
  font-weight: 300;
  color: var(--muted);
  max-width: 340px;
  line-height: 1.75;
  margin-bottom: 40px;
  opacity: 0;
  animation: fadeUp 0.6s ease forwards 0.32s;
}
.hero-cta {
  display: flex;
  gap: 12px;
  opacity: 0;
  animation: fadeUp 0.6s ease forwards 0.44s;
}
.hero-photo {
  position: relative;
  overflow: hidden;
  border-left: 1px solid var(--border);
  opacity: 0;
  animation: fadeIn 0.8s ease forwards 0.3s;
}
.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: grayscale(100%);
}
/* Fallback if no photo uploaded yet */
.hero-photo-placeholder {
  position: absolute;
  inset: 0;
  background: var(--surface);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 16px;
  color: var(--muted);
}

/* WORK SECTION */
.work-section { padding: 60px 0 100px; }
.work-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
  flex-wrap: wrap;
  gap: 14px;
}
.filter-row { display: flex; gap: 6px; flex-wrap: wrap; }
.filter-btn {
  font-family: var(--sans);
  font-size: 12px;
  padding: 5px 16px;
  border-radius: 20px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  transition: all 0.18s;
  letter-spacing: 0.02em;
}
.filter-btn:hover { border-color: var(--muted); color: var(--ink); }
.filter-btn.active { background: var(--ink); border-color: var(--ink); color: var(--bg); }

/* CLIENT GRID — 2 column masonry-style */
.client-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}
.client-card {
  background: var(--white);
  overflow: hidden;
  display: block;
  transition: opacity 0.2s;
}
.client-card:hover { opacity: 0.82; }
.client-thumb {
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.client-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.client-card:hover .client-thumb img { transform: scale(1.03); }
.client-thumb-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.client-info {
  padding: 14px 16px 18px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.client-name {
  font-size: 15px;
  font-weight: 400;
  color: var(--ink);
  line-height: 1.3;
}
.client-tags {
  font-size: 11px;
  color: var(--muted);
  margin-top: 3px;
  letter-spacing: 0.02em;
}
.client-year {
  font-size: 11px;
  color: var(--muted);
  white-space: nowrap;
  letter-spacing: 0.03em;
  flex-shrink: 0;
  padding-left: 12px;
  margin-top: 1px;
}

/* ============================================================
   CLIENT PAGE (level 2)
   ============================================================ */
.client-page { padding: 56px 0 100px; }

.client-header {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  margin-bottom: 24px;
  padding-bottom: 24px;
  align-items: start;
}
.client-cover {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: 2px;
  background: var(--surface);
}
.client-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.client-cover-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 18px;
  color: var(--muted);
}
.client-meta-type {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 12px;
}
.client-meta-title {
  font-family: var(--serif);
  font-size: 40px;
  font-weight: 600!important;
  line-height: 1.1;
  color: var(--ink);
  margin-bottom: 20px;
}
.client-meta-desc {
  font-size: 15px;
  font-weight: 300;
  color: var(--ink-soft);
  line-height: 1.75;
  margin-bottom: 28px;
}
.client-meta-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 28px;
}
.client-meta-table tr { border-bottom: 1px solid var(--border); }
.client-meta-table tr:first-child { border-top: 1px solid var(--border); }
.client-meta-table td { font-size: 13px; padding: 11px 0; vertical-align: top; }
.client-meta-table td:first-child {
  color: var(--muted);
  width: 75px;
  font-size: 12px;
  letter-spacing: 0.03em;
}
.client-meta-table td:last-child { color: var(--ink-soft); }

.visit-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--ink);
  padding: 9px 20px;
  border: 1px solid var(--border);
  border-radius: 2px;
  transition: border-color 0.18s;
  letter-spacing: 0.02em;
}
.visit-btn:hover { border-color: var(--ink); color: var(--ink); }

/* Sub-projects grid */
.sub-projects-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}
.sub-projects-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}
.sub-card {
  background: var(--white);
  overflow: hidden;
  display: block;
  transition: opacity 0.2s;
}
.sub-card:hover { opacity: 0.82; }
.sub-thumb {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--surface);
  position: relative;
}
.sub-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.sub-card:hover .sub-thumb img { transform: scale(1.04); }
.sub-thumb-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 13px;
  color: rgba(0,0,0,0.2);
  text-align: center;
  padding: 0 12px;
}
.sub-info {
  padding: 10px 12px 14px;
  border-top: 1px solid var(--border);
}
.sub-name { font-size: 13px; color: var(--ink); line-height: 1.3; }
.sub-cat { font-size: 11px; color: var(--muted); margin-top: 2px; }

/* ============================================================
   PROJECT PAGE (level 3)
   ============================================================ */
.project-page { padding: 56px 0 100px; }

.project-header {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  margin-bottom: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid var(--border);
  align-items: start;
}
.project-cover {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: 2px;
  background: var(--surface);
}
.project-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.project-meta-type {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 10px;
}
.project-meta-title {
  font-family: var(--serif);
  font-size: 40px;
  font-weight: 700;
  line-height: 1.12;
  color: var(--ink);
  margin-bottom: 20px;
}
.project-meta-desc {
  font-size: 15px;
  font-weight: 300;
  color: var(--ink-soft);
  line-height: 1.75;
  margin-bottom: 28px;
}
.project-meta-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 28px;
}
.project-meta-table tr { border-bottom: 1px solid var(--border); }
.project-meta-table tr:first-child { border-top: 1px solid var(--border); }
.project-meta-table td { font-size: 13px; padding: 11px 0; vertical-align: top; }
.project-meta-table td:first-child {
  color: var(--muted);
  width: 75px;
  font-size: 12px;
  letter-spacing: 0.03em;
}
.project-meta-table td:last-child { color: var(--ink-soft); }

/* Gallery */
.project-gallery { display: flex; flex-direction: column; gap: 2px; }
.gallery-row { display: grid; gap: 2px; }
.gallery-row.cols-1 { grid-template-columns: 1fr; }
.gallery-row.cols-2 { grid-template-columns: 1fr 1fr; }
.gallery-row.cols-3 { grid-template-columns: 1fr 1fr 1fr; }

/*
.gallery-item {
  width: 100%;
  overflow: hidden;
  background: var(--surface);
}
*/

.gallery-item {
  width: 100%;
  background: var(--surface);
}

.gallery-item img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}

.gallery-item video {
    width: 100%;
    height: auto;
    display: block;
    background: black;
}

.video-wrap {
    width: 100%;
    background: black;
}

.video-wrap video {
    width: 100%;
    height: auto;
    display: block;
}

.gallery-item video,
.video-wrap video,
.grid-video {
  width: 100%;
  height: auto;
  display: block;
  background: black;
  object-fit: cover;
}

/*
.gallery-item img,
.gallery-item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
*/

/*
.gallery-item.ratio-landscape { aspect-ratio: 16/10; }
.gallery-item.ratio-square { aspect-ratio: 1/1; }
.gallery-item.ratio-portrait { aspect-ratio: 3/4; }
.gallery-item.ratio-wide { aspect-ratio: 21/9; }
*/

/* Gallery caption */
.gallery-caption {
  font-size: 12px;
  color: var(--muted);
  margin-top: 8px;
  letter-spacing: 0.02em;
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-page { padding: 80px 0 120px; }
.about-grid {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 80px;
  align-items: start;
}
.about-photo-wrap {}
.about-photo {
  width: 100%;
  aspect-ratio: 3/4;
  overflow: hidden;
  border-radius: 2px;
  background: var(--surface);
  margin-bottom: 24px;
}
.about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-contact-links { display: flex; flex-direction: column; }
.about-contact-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 13px;
  color: var(--muted);
  transition: color 0.2s;
  letter-spacing: 0.02em;
}
.about-contact-item:hover { color: var(--ink); }
.about-contact-item .ext { font-size: 11px; }

.about-content {}
.about-name {
  font-family: var(--serif);
  font-size: 56px;
  font-weight: 400;
  line-height: 1.06;
  color: var(--ink);
  margin-bottom: 10px;
}
.about-role {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 36px;
}
.about-bio {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--ink-soft);
  max-width: 560px;
  margin-bottom: 48px;
}
.about-bio p + p { margin-top: 16px; }
.about-section-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}
.skills-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 48px;
}
.skill-tag {
  font-size: 12px;
  padding: 6px 14px;
  border-radius: 20px;
  border: 1px solid var(--border);
  color: var(--ink-soft);
  letter-spacing: 0.02em;
}
.about-cta { display: flex; gap: 12px; flex-wrap: wrap; }

/* ============================================================
   FOOTER
   ============================================================ */
#site-footer {
  border-top: 1px solid var(--border);
  padding: 24px var(--pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--bg);
}
.footer-copy {
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.03em;
}
.footer-links { display: flex; gap: 24px; }
.footer-links a {
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.03em;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--ink); }

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* ============================================================
   WORDPRESS SPECIFIC
   ============================================================ */
.wp-caption { max-width: 100%; }
.alignnone, .alignleft, .alignright, .aligncenter { max-width: 100%; }
.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  height: 1px; width: 1px;
  overflow: hidden;
  position: absolute !important;
}

/* ============================================================
   RESPONSIVE — TABLET
   ============================================================ */
@media (max-width: 900px) {
  :root { --pad: 32px; }

  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-photo { height: 55vw; min-height: 280px; max-height: 420px; border-left: none; border-bottom: 1px solid var(--border); order: -1; }
  .hero-text { padding: 48px 0 60px; max-width: 100%; margin-left: 0; }
  .hero-headline { font-size: clamp(38px, 8vw, 56px); }

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

  .client-header { grid-template-columns: 1fr; gap: 32px; }
  .client-meta-title { font-size: 32px; }

  .sub-projects-grid { grid-template-columns: repeat(2, 1fr); }

  .project-header { grid-template-columns: 1fr; gap: 32px; }
  .project-meta-title { font-size: 30px; }

  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-name { font-size: 44px; }
  .about-photo { max-width: 280px; }

  #site-footer { flex-direction: column; gap: 16px; align-items: flex-start; padding: 24px 32px; }
  .footer-links { flex-wrap: wrap; gap: 16px; }
}

/* ============================================================
   RESPONSIVE — MOBILE
   ============================================================ */
@media (max-width: 600px) {
  :root { --pad: 20px; }
	
  .nav-menu { display: none; }
  .nav-toggle { display: flex; }

  .hero-headline { font-size: 36px; }
  .hero-cta { flex-direction: column; align-items: flex-start; }
  .hero-cta .btn { width: 100%; text-align: center; }

  .work-header { flex-direction: column; align-items: flex-start; }

  .sub-projects-grid { grid-template-columns: 1fr 1fr; }
  .gallery-row.cols-2,
  .gallery-row.cols-3 { grid-template-columns: 1fr; }

  .about-cta { flex-direction: column; }
  .about-cta .btn { width: 100%; text-align: center; }

  .client-page { padding: 40px 0 80px; }
  .project-page { padding: 40px 0 80px; }
  .back-link { margin-bottom: 32px; }
  .breadcrumb { margin-bottom: 32px; }

  .hero-text,
  .work-header,
  .client-info,
  .client-meta-content,
  .project-meta-content,
  .about-content {
    padding-left: 10px!important;
    padding-right: 10px!important;
  }

}

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

.modal.open {
  display: flex;
}

.modal-inner {
  position: relative;
  max-width: 95vw;
  max-height: 95vh;
}

.modal-content img,
.modal-content video {
  max-width: 95vw;
  max-height: 95vh;
  width: auto;
  height: auto;
  display: block;
}

.modal-close {
  position: absolute;
  top: -40px;
  right: 0;
  background: none;
  border: none;
  font-size: 28px;
  color: white;
  cursor: pointer;
}

.video-wrap {
  position: relative;
}

.video-wrap::after {
  content: "▶";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 28px;
  pointer-events: none;
  opacity: 0.8;
}

