:root {
  /* Core Forest Tones */
  --forest-black: #0f120d;
  --deep-moss: #1b2318;
  --evergreen-shadow: #273126;
  --wet-bark: #3b342d;

  /* Moss + Fern */
  --moss-green: #4b5a3f;
  --fern-green: #6f7f52;
  --sage-fog: #8b9674;

  /* Natural Highlights */
  --stone-gray: #a5a69b;
  --mist-light: #d7d8d0;
  --soft-bone: #efeee7;

  /* Accent Colors Pulled from Subject */
  --muted-rust: #b56e52;
  --dusty-clay: #c98d72;
  --faded-indigo: #56657d;
  --light-indigo: #6981b1;

  /* Optional Glassy UI Accent */
  --forest-glow: rgba(111, 127, 82, 0.18);
}

@font-face {
  font-family: 'Quicksand';
  src: url('../assets/fonts/Quicksand-VariableFont_wght.ttf') format('truetype');
  font-weight: 300 700;
  font-style: normal;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;

  z-index: 1000;

  padding: 1rem 2rem;
  box-sizing: border-box;

  /* translucent glass base */
  background: rgba(255, 255, 255, 0.08);

  backdrop-filter: blur(18px) saturate(180%);
  -webkit-backdrop-filter: blur(18px) saturate(180%);

  /* subtle glass edge */
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);

  /* helps prevent harsh edges */
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.08);

  /* smoother rendering */
  will-change: backdrop-filter;

  transition:
    background 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

header::after {
  content: "";

  position: absolute;
  left: 0;
  bottom: -40px;

  width: 100%;
  height: 40px;

  pointer-events: none;

  background: linear-gradient(to bottom,
      rgba(255, 255, 255, 0.12),
      rgba(255, 255, 255, 0));
}

/* Right align nav links */
nav {
  display: flex;
  justify-content: flex-end;
  gap: 2rem;
}

nav a {
  text-decoration: none;
  color: black;
  font-weight: 500;
}

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

.header-left,
.header-right {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.icon {
  width: 20px;
  height: 20px;
  display: block;

  object-fit: contain;

  transition: transform 0.2s ease, opacity 0.2s ease;
}

.header-left a:hover .icon {
  transform: translateY(-2px);
  opacity: 0.8;
}

/* =========================================
   MOBILE / SMALL WIDTH HEADER MODE
   Replace text with icons
   ========================================= */

.nav-icon {
  display: none;

  width: 20px;
  height: 20px;

  object-fit: contain;
}

/* keep text visible by default */
.nav-text {
  display: inline;
}

/* =========================================
   SMALL SCREEN MODE
   ========================================= */

@media (max-width: 800px) {

  header {
    padding: 1rem 1.25rem;
  }

  nav {
    gap: 1.25rem;
  }

  .header-left,
  .header-right {
    gap: 1.25rem;
  }

  /* hide text */
  .nav-text {
    display: none;
  }

  /* show icons */
  .nav-icon {
    display: block;
  }

  /* ensure links center nicely */
  nav a,
  .header-left a,
  .header-right a {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  /* subtle hover */
  nav a:hover .nav-icon {
    transform: translateY(-2px);
    opacity: 0.75;
  }
}

html,
body {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Quicksand', sans-serif;
  background: #f5f6f8;
  scroll-snap-type: y mandatory;
}

/* Each section */
section {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  opacity: 1;
  transform: scale(1);

  scroll-snap-align: start;
  scroll-snap-stop: always;
}

section.exiting {
  opacity: 0;
  transform: translateY(-40px);
}

#home {
  position: relative;
}

/* decorative film strips */
.corner-strip {
  position: absolute;

  width: 350px;
  height: auto;

  pointer-events: none;
  user-select: none;

  z-index: 0;
  border-radius: 12px;

  filter:
    drop-shadow(0 8px 20px rgba(0, 0, 0, 0.15));
}

/* upper right */
.top-right {
  top: 60px;
  right: 0px;
}

.tr-two {
  top: 110px;
  right: 140px;
}

/* lower left */
.bottom-left {
  filter: none;
  bottom: 10px;
  left: -65px;
}

.bl-two {
  width: 200px;
  bottom: 45px;
  left: 0px;
}

#home .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 100px;

  overflow-x: auto;
  overflow-y: hidden;

}

/* circle/photo */
.photo-wrapper {
  position: relative;

  width: min(55vw, 380px);
  height: min(55vw, 380px);

  float: left;

  margin-right: 3rem;
  margin-bottom: 1rem;

  shape-outside: circle(50%);
  shape-margin: 5px;

  display: flex;
  align-items: center;
  justify-content: center;
}

/* text */
.home-text {
  text-align: left;
}

/* keeps container height */
#home .container::after {
  content: "";
  display: block;
  clear: both;
}

.profile-photo {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

.skills-ring {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: visible;
}


text {
  font-size: 12px;
  fill: rgba(0, 0, 0, 0.65);
  letter-spacing: 2px;
}

svg {
  overflow: visible;
}


.pipeline-section {
  min-height: 100vh;

  display: flex;
  justify-content: flex-start;
  align-items: center;

  padding: 5rem;
  padding-top: 4rem;
  box-sizing: border-box;
}

.pipeline-section h2 {
  display: flex;
  justify-content: center;
  align-items: center;
}

.pipeline {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.stage {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stage-header {
  margin-bottom: 1rem;

  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1px;

  color: #666;
}

/* CARD */
.card {
  position: relative;

  width: 220px;
  min-height: 80px;
  /* added height */

  background: white;
  border-radius: 12px;

  padding: 1.5rem 1rem;
  /* slightly more vertical padding */

  display: flex;
  align-items: center;
  justify-content: center;

  box-shadow:
    0 1px 2px rgba(0, 0, 0, 0.06),
    0 4px 12px rgba(0, 0, 0, 0.04);

  border-top: 4px solid var(--sage-fog);
}

.card.pending {
  background: white;
  border-radius: 12px;
  border-top: 4px solid var(--light-indigo);
}

/* BASE CIRCLE */
.status-left,
.status-right {
  position: absolute;

  width: 20px;
  height: 20px;

  border-radius: 50%;

  top: 50%;
  transform: translateY(-50%);
}

/* LEFT */
.status-left {
  left: -10px;
}

/* RIGHT */
.status-right {
  right: -10px;
}

/* SUCCESS STATE */
.success {
  background: var(--sage-fog);
  border: 4px solid var(--fern-green);
}


/* HOVER BOUNCE */
.status-left:hover,
.status-right:hover,
.status-left.selected,
.status-right.selected {
  transform: translateY(-50%) scale(1.3);
  border: 4px solid var(--moss-green);
}

.status-left.pending {
  background: white;
  border: 4px solid var(--light-indigo);
}

.status-left.pending:hover,
.status-left.pending.selected {
  border-color: var(--faded-indigo);
}

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

.card-content .title {
  font-size: 0.95rem;
  font-weight: 600;
  color: #111;
}

.card-content .subtitle {
  margin-top: 0.25rem;

  font-size: 0.8rem;
  color: #777;
}

.connector {
  width: 60px;
  height: 3px;

  background: #d1d5db;

  border-radius: 999px;
  margin-top: 2em;
}


/* CLICKABLE STATUS */
.status-left,
.status-right {
  cursor: pointer;
}

.xp-strip {
  position: absolute;

  width: 15px;
  height: auto;

  pointer-events: none;
  user-select: none;

  z-index: 0;
  border-radius: 12px;

  filter:
    drop-shadow(0 8px 20px rgba(0, 0, 0, 0.15));
}

.left {
  left: 10px;
  bottom: 200px;
}

.xp-l-2 {
  left: 10px;
  bottom: 30px;
}

.xp-l-3 {
  left: 10px;
  bottom: 10px;
}


.right {
  top: 50px;
  right: 10px;
}

.xp-r-2 {
  top: 150px;
  right: 35px;
}

.xp-r-3 {
  top: 225px;
  right: 35px;
}

.xp-strip-container {
  display: flex;
  position: absolute;

  bottom: 18%;

  width: 600px;
  max-width: 700px;
  min-width: 320px;

  height: 45vh;
  min-height: 400px;
  max-height: 400px;
}

.xp-strip.right-one {
  top: 0px;
  right: 10px;
}

.xp-strip.right-two {
  top: 0px;
  right: 200px;
}

.xp-strip.left-one {
  bottom: 0px;
  left: -60px;
}

.xp-strip.left-two {
  bottom: 250px;
  left: -60px;
}

.xp-strip.left-three {
  bottom: 170px;
  left: -85px;

}

/* MODAL OVERLAY */
.modal-overlay {

  display: none;

  z-index: 9999;
}

/* SHOW MODAL */
.modal-overlay.active {
  display: flex;
  margin-top: 50px;
  ;
}

/* MODAL WINDOW */
.modal {
  position: relative;
  overflow: hidden;

  width: 600px;
  max-width: 700px;
  min-width: 320px;

  height: 45vh;
  min-height: 400px;
  max-height: 400px;

  background: white;
  border-radius: 16px;

  padding: 2rem;
  padding-top: 10px;

  box-shadow:
    0 10px 40px rgba(0, 0, 0, 0.2);
}

.modal-header {
  flex-shrink: 0;
  border-bottom: 1px solid rgba(15, 15, 15, 0.08);
}

.modal-content {
  min-height: 35vh;
  /* critical */
  max-height: 35vh;

  margin: 0 1.5em 1.5em 1.5em;

  overflow-y: scroll;
  border-bottom: 1px solid rgba(15, 15, 15, 0.08);
}

/* CLOSE BUTTON */
.close-btn {
  position: absolute;
  top: 1rem;
  right: 1rem;

  border: none;
  background: transparent;

  font-size: 1.5rem;
  cursor: pointer;
}

/* nav container */
.modal-nav {
  position: absolute;

  bottom: 0;
  left: 50%;

  transform: translateX(-50%);

  display: flex;
  gap: 1rem;

  align-items: center;
  justify-content: center;
}

/* arrow buttons */
.nav-arrow {
  width: 44px;
  height: 44px;

  border: none;
  border-radius: 50%;

  background: transparent;

  display: flex;
  align-items: center;
  justify-content: center;

  cursor: pointer;

  transition:
    transform 0.2s ease,
    opacity 0.2s ease;
}

.nav-arrow img {
  width: 22px;
  height: 22px;

  object-fit: contain;

  opacity: 0.7;

  transition:
    opacity 0.2s ease,
    transform 0.2s ease;
}

.nav-arrow:hover img {
  opacity: 0.75;
}

/* hover */
.nav-arrow:hover:not(.disabled) {
  transform: translateY(-2px);
}

/* disabled */
.nav-arrow.disabled {
  opacity: 0.3;

  pointer-events: none;
  cursor: default;
}

#projects {
  height: 100vh;

  padding: 4rem 4rem 4rem;

  display: flex;
  flex-direction: column;
  align-items: center;

  box-sizing: border-box;

  background: #f5f6f8;

  overflow: hidden;
}

/* =========================
   HEADER
   ========================= */
#projects h2 {
  flex-shrink: 0;
  margin-bottom: 2rem;
}

/* =========================
   SCROLL AREA (embedded surface)
   ========================= */
.projects-scroll {
  flex: 1;
  min-height: 0;
  position: relative;

  width: 100%;

  overflow-y: auto;

  display: flex;
  justify-content: center;

  padding: 2.5rem 2.5rem 3.5rem;

  border-radius: 28px;

  background: #eef0f3;

  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.75),
    inset 0 -18px 40px rgba(0, 0, 0, 0.05),
    0 18px 40px rgba(0, 0, 0, 0.08);
}

/* =========================
   GRID
   ========================= */
.projects-grid {
  width: fit-content;
  position: relative;
  z-index: 2;

  display: grid;

  grid-template-columns: repeat(3, 340px);

  gap: 2.75rem;

  align-content: start;

  padding: 1rem 0.5rem 2rem;
}

.projects-grid::after {
  content: "";
  height: 60px;
  grid-column: 1 / -1;
}

/* =========================
   SYSTEM CARD (NEW STYLE)
   ========================= */
.system-card {
  width: 340px;
  height: 420px;

  display: flex;
  flex-direction: column;

  border-radius: 22px;

  background: linear-gradient(to bottom,
      rgba(255, 255, 255, 0.88),
      rgba(255, 255, 255, 0.72));

  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);

  overflow: hidden;
}

.system-card:hover {
  transform: translateY(-6px);

  box-shadow:
    0 18px 40px rgba(0, 0, 0, 0.12);
}

/* =========================
   HEADER
   ========================= */
.system-header {
  display: flex;
  justify-content: space-between;
  align-items: center;

  margin-bottom: 0.75rem;
  flex-shrink: 0;
  padding: 1rem 1.25rem 0.5rem;
}

.system-header h3 {
  font-size: 1.05rem;
  margin: 0;
}

.system-tag {
  font-size: 0.7rem;

  padding: 0.25rem 0.5rem;

  border-radius: 999px;

  background: rgba(0, 0, 0, 0.06);
}

/* =========================
   CONTENT
   ========================= */
.system-goal {
  font-size: 0.9rem;
  flex-shrink: 0;

  padding: 0 1.25rem 0.75rem;

  opacity: 0.85;
  line-height: 1.5;
}

.system-body {
  flex: 1;
  min-height: 0;
  /* critical for scroll to work in flex */

  overflow-y: auto;

  padding: 0 1.25rem 0.75rem;

  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.system-body::-webkit-scrollbar {
  width: 6px;
}

.system-body::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.12);
  border-radius: 999px;
}

.system-block {
  margin-bottom: 0.75rem;
}

.system-block h4 {
  font-size: 0.75rem;
  margin: 0 0 0.25rem;
  opacity: 0.6;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.system-block p {
  font-size: 0.85rem;
  margin: 0;
  opacity: 0.85;
  line-height: 1.4;
}

/* =========================
   TECH STACK
   ========================= */
.system-stack {
  flex-shrink: 0;

  padding: 0.75rem 1.25rem 1rem;

  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.system-stack span {
  font-size: 0.7rem;

  padding: 0.25rem 0.5rem;

  border-radius: 999px;

  background: rgba(0, 0, 0, 0.05);
}

.flow-network {
  position: absolute;
  inset: 0;

  width: 100%;
  height: 100%;

  z-index: 1;

  pointer-events: none;

  overflow: visible;
  transition: opacity 0.3s ease;
}

.flow-line {
  transition: stroke 0.25s ease, opacity 0.25s ease;
  animation: dashMove 3s linear infinite;
  opacity: 0.6;
}

.projects-scroll.is-active .flow-line {
  opacity: 0.12;
}

.flow-line.is-active {
  opacity: 0.9;
  stroke: rgba(120, 160, 255, 0.75);
  stroke-width: 2.5;
  filter: drop-shadow(0 0 6px rgba(120, 160, 255, 0.35));
  animation: flowPulse 1.6s ease-in-out infinite;
}

.projects-scroll.is-active .system-card {
  opacity: 0.35;
  transform: scale(0.98);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.system-card.is-active {
  opacity: 1 !important;
  transform: translateY(-4px);
}

.system-card.is-active {
  box-shadow:
    0 18px 40px rgba(0, 0, 0, 0.14),
    0 0 0 1px rgba(120, 160, 255, 0.2);
}

@keyframes flowPulse {

  0%,
  100% {
    stroke-opacity: 0.6;
    transform: scale(1);
  }

  50% {
    stroke-opacity: 1;
  }
}

@keyframes dashMove {
  from {
    stroke-dashoffset: 0;
  }

  to {
    stroke-dashoffset: -200;
  }
}

.system-card {
  position: relative;
  z-index: 2;
}

/* =========================
   RESPONSIVE
   ========================= */
@media (max-width: 1200px) {
  .projects-grid {
    grid-template-columns: repeat(2, 340px);
  }
}

@media (max-width: 800px) {
  .projects-grid {
    grid-template-columns: 340px;
  }
}

#about {
  height: 105vh;
  /* dynamic viewport height */

  padding: 5rem;
  padding-top: 4rem;

  display: flex;
  flex-direction: column;
  align-items: center;

  box-sizing: border-box;

  background: #f5f6f8;
}

/* =========================
   EMBEDDED GALLERY CONTAINER
   ========================= */
.about-gallery {
  flex: 0 0 auto;
  width: 100%;
  max-width: 900px;

  position: relative;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 28px;

  margin-bottom: 1.5em;

  /* OUTER FRAME ONLY (no padding here) */
  background: #eef0f3;

  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.75),
    inset 0 -14px 30px rgba(0, 0, 0, 0.06),
    0 14px 35px rgba(0, 0, 0, 0.08);

  overflow: hidden;
}

/* =========================
   SCROLLING TRACK (INSET RAIL)
   ========================= */
.gallery-track {
  display: flex;
  gap: 1.5rem;

  overflow-x: auto;
  scroll-behavior: smooth;

  padding: 1.25rem 3rem;
  /* move padding HERE */

  scrollbar-width: none;

  border-radius: 28px;

  /* INNER “rail” layer */
  background: linear-gradient(to bottom,
      rgba(255, 255, 255, 0.35),
      rgba(255, 255, 255, 0.12));

  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.6),
    inset 0 -10px 20px rgba(0, 0, 0, 0.04);
}

.gallery-track::-webkit-scrollbar {
  display: none;
}

/* =========================
   IMAGES
   ========================= */
.gallery-track img {
  flex-shrink: 0;

  width: 320px;
  height: 420px;

  object-fit: cover;

  border-radius: 22px;

  box-shadow:
    0 10px 20px rgba(0, 0, 0, 0.12);

  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.gallery-track img:hover {
  transform: translateY(-6px);
}

/* =========================
   ARROWS
   ========================= */
.gallery-arrow {
  position: absolute;

  z-index: 5;

  width: 52px;
  height: 52px;

  border: none;
  border-radius: 50%;

  background: rgba(255, 255, 255, 0.92);

  display: flex;
  align-items: center;
  justify-content: center;

  cursor: pointer;

  box-shadow:
    0 8px 20px rgba(0, 0, 0, 0.12);

  transition:
    transform 0.2s ease,
    background 0.2s ease;
}

.gallery-arrow:hover {
  transform: scale(1.08);
  background: white;
}

.gallery-arrow img {
  width: 22px;
  height: 22px;
}

.gallery-arrow-left {
  left: 12px;
}

.gallery-arrow-right {
  right: 12px;
}

.about-text {
  width: 100%;
  max-width: 900px;

  flex: 1;
  min-height: 0;

  display: flex;
  flex-direction: column;

  overflow-y: auto;

  padding: 2rem;
  padding-top: .5rem;

  margin: 0;

  line-height: 1.6;

  opacity: 0.8;

  border-radius: 28px;

  /* softer / more subtle surface */
  background: white;

  /* gentler floating effect */
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.45),
    0 10px 24px rgba(0, 0, 0, 0.045),
    0 2px 6px rgba(0, 0, 0, 0.025);

  backdrop-filter: blur(10px);

  box-sizing: border-box;

  border:
    1px solid rgba(255, 255, 255, 0.28);

  -webkit-overflow-scrolling: touch;
  transform: translateZ(0);
  will-change: transform;
  min-height: 0;
}

/* =========================
   SCROLLBAR
   ========================= */
.about-text::-webkit-scrollbar {
  width: 8px;
}

.about-text::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.15);

  border-radius: 999px;
}


/* ========== CONTACT SECTION ========== */

#contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  box-sizing: border-box;

  height: 80vh;
  padding: 4rem;
}

/* Section title */
#contact h2 {
  margin-bottom: 2rem;
  text-align: center;
}

/* Card container */
.contact-card {
  width: 100%;
  max-width: 720px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 16px;
  padding: 1.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  backdrop-filter: blur(10px);
}

/* Intro text */
.contact-intro {
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(0, 0, 0, 0.65);
  margin-bottom: 1.5rem;
}

/* Links container */
.contact-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

/* Individual link */
.contact-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;

  padding: 0.9rem 1rem;
  border-radius: 12px;

  text-decoration: none;
  color: inherit;

  border: 1px solid transparent;
  background: transparent;

  transition: all 0.2s ease;
}

/* Hover effect */
.contact-link:hover {
  background: rgba(0, 0, 0, 0.03);
  border-color: rgba(0, 0, 0, 0.08);
  transform: translateY(-1px);
}

/* Left label (Email, etc.) */
.contact-link span:first-child {
  font-weight: 500;
  color: rgba(0, 0, 0, 0.75);
}

/* Value text */
.contact-value {
  font-size: 0.95rem;
  color: rgba(0, 0, 0, 0.6);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* Icons */
.contact-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* Slight refinement for icon + text rows */
.contact-link img+.contact-value {
  margin-left: auto;
}

/* Responsive */
@media (max-width: 600px) {
  .contact-card {
    padding: 1.25rem;
  }

  .contact-link {
    flex-direction: column;
    align-items: flex-start;
  }

  .contact-value {
    font-size: 0.9rem;
  }
}

/* =========================
   FOOTER
   ========================= */
.site-footer {
  width: 100%;

  padding: 2rem;

  text-align: center;

  background: linear-gradient(to bottom,
      #eef0f3,
      #e9ebee);

  border-top: 1px solid rgba(27, 35, 24, 0.08);

  color: rgba(15, 18, 13, 0.7);
}

@media (max-width: 900px) {

  #about {
    padding: 2rem;
  }

  .gallery-track {
    padding: 1rem 2rem;
  }

  .gallery-track img {
    width: 240px;
    height: 320px;
  }

  .about-text {
    max-height: 320px;
  }

  .gallery-arrow {
    display: none;
  }

  .about-gallery::before,
  .about-gallery::after {
    width: 48px;
  }
}

/* MOBILE */
@media (max-width: 768px) {
  .modal {
    width: 90vw;
  }
}

/* Mobile */
@media (max-width: 1100px) {
  .pipeline {
    display: flex;
    flex-direction: column;
  }

  .connector {
    width: 3px;
    height: 50px;

    margin-top: 0px;
  }

  .modal-overlay {
    position: fixed;
    /* KEY FIX */
    inset: 0;
    /* replaces top/left/right/bottom */

    z-index: 9999;

    justify-content: center;
    align-items: center;
  }

  .modal {
    width: 60vw;
  }
}



@media (max-width: 900px) {

  #home .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0px;
    padding-top: 15%;
  }

  .corner-strip {
    display: none;
  }

  .photo-wrapper {
    float: none;
    shape-outside: none;
    shape-margin: 0;

    margin: 0 0 2rem 0;
  }

  .home-text {
    margin: 0;
    max-width: 90%;
    text-align: center;
  }
}