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

html {
  scroll-behavior: smooth;
}

:root {
  --bg: #fbfdff;
  --card: #ffffff;
  --muted: #6b7280;
  --text: #0f172a;
  --primary: #0f172a; /* Back to sleek monochrome primary */
  --accent: #334155;
  --radius: 12px;
  --glass: rgba(255, 255, 255, 0.7);
  
  /* Framer text variables requested */
  --framer-font-family: "Inter", system-ui, -apple-system, sans-serif;
  --framer-font-family-bold: "Inter", system-ui, -apple-system, sans-serif;
  --framer-font-family-bold-italic: "Inter", system-ui, -apple-system, sans-serif;
  --framer-font-family-italic: "Inter", system-ui, -apple-system, sans-serif;
  --framer-font-open-type-features: "blwf" on, "cv09" on, "cv03" on, "cv04" on, "cv11" on;
  --framer-font-size: 15px;
  --framer-font-style: normal;
  --framer-font-style-bold: normal;
  --framer-font-style-bold-italic: italic;
  --framer-font-style-italic: italic;
  --framer-font-variation-axes: normal;
  --framer-font-weight: 400;
  --framer-font-weight-bold: 700;
  --framer-font-weight-bold-italic: 700;
  --framer-font-weight-italic: 400;
  --framer-letter-spacing: normal;
  --framer-line-height: 1.6;
  --framer-paragraph-spacing: 20px;
  --framer-text-alignment: start;
  --framer-text-color: #0f172a;
  --framer-text-decoration: none;
  --framer-text-stroke-color: initial;
  --framer-text-stroke-width: initial;
  --framer-text-transform: none;
}

[data-theme="dark"] {
  --bg: #0f172a;
  --card: rgba(30, 41, 59, 0.7);
  --muted: #94a3b8;
  --text: #f8fafc;
  --primary: #f8fafc;
  --accent: #38bdf8;
  --glass: rgba(15, 23, 42, 0.7);
  --framer-text-color: #f8fafc;
}

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

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

body {
  font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  background: var(--bg);
  color: var(--framer-text-color, var(--text));
  -webkit-font-smoothing: antialiased;
  line-height: var(--framer-line-height, 1.5);
  font-size: var(--framer-font-size, 15px);
  letter-spacing: var(--framer-letter-spacing);
  text-transform: var(--framer-text-transform);
  text-decoration: var(--framer-text-decoration);
  text-align: var(--framer-text-alignment);
  overflow-x: hidden;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

img {
  -webkit-user-drag: none;
  -khtml-user-drag: none;
  -moz-user-drag: none;
  -o-user-drag: none;
  user-drag: none;
  user-select: none;
}

/* Tighten overall content width to improve readability */
.container {
  max-width: 980px;
  margin: 0 auto;
  padding: 0 1rem
}

/* Header visual separator and consistent padding */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1100;
  background: var(--glass);
  backdrop-filter: blur(8px);
  padding: .6rem 0;
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow: 0 6px 20px rgba(2, 6, 23, 0.04)
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem
}

.main-nav {
  margin-left: 1rem
}

.list-menu {
  gap: 1rem;
  align-items: center
}

.list-menu .menu {
  padding: .5rem .4rem
}

/* Nav underline container */
.main-nav {
  position: relative
}

.main-nav .underline {
  position: absolute;
  left: 0;
  bottom: -10px;
  height: 3px;
  background: var(--primary);
  width: 0;
  transition: all .22s ease;
  border-radius: 2px
}

/* Navigation */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: transparent;
  padding: .75rem 0
}

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

.branding {
  display: flex;
  align-items: center;
  gap: .75rem
}

.brand-logo {
  width: 44px;
  height: 44px;
  object-fit: contain;
  border-radius: 8px
}

.brand-name {
  font-weight: 700;
  font-size: 1rem;
  color: var(--text)
}

.list-menu {
  display: flex;
  gap: 1rem;
  align-items: center
}

.list-menu .menu {
  color: var(--muted);
  text-decoration: none;
  padding: .5rem;
  font-weight: 500
}

.list-menu .menu:hover {
  color: var(--text)
}

.time-location {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  font-size: .8rem;
  color: var(--muted)
}

.hamburger {
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: .4rem
}

.hamburger .bar {
  width: 20px;
  height: 2px;
  background: var(--text);
  display: block;
  margin: 3px 0;
  border-radius: 2px;
  transition: transform .2s, opacity .2s
}

.hamburger.active .bar:nth-child(1) {
  transform: translateY(6px) rotate(45deg)
}

.hamburger.active .bar:nth-child(2) {
  opacity: 0
}

.hamburger.active .bar:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg)
}

/* Hero */
.hero-section {
  padding: 5.5rem 0 3.5rem;
  position: relative;
  overflow: hidden
}

.container-hero {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center
}

.greeting {
  font-size: 2rem;
  font-weight: 800;
  line-height: 1.05
}

.hero-left {
  max-width: 760px;
  margin: 0 auto;
  text-align: center
}

.greeting {
  display: inline-block;
  font-size: 2rem;
  font-weight: 800;
  line-height: 1.05;
  white-space: nowrap
}

.accent {
  color: var(--accent)
}

/* marquee greeting wrapper to fix overflow */
.greeting-wrap {
  width: 100%;
  overflow: hidden;
  margin-bottom: 1.5rem;
}

/* marquee greeting track */
.greeting-track {
  display: inline-flex;
  align-items: center;
  gap: 6rem;
  min-width: 220%;
  animation: marquee var(--marquee-duration, 14s) linear infinite;
  user-select: none;
  pointer-events: none;
}

.greeting-item {
  white-space: nowrap;
  font-weight: 900;
  line-height: 0.9;
  /* big display */
  font-size: clamp(48px, 16vw, 360px);
  letter-spacing: -0.02em;
}

@keyframes marquee {
  from {
    transform: translateX(0%)
  }

  to {
    transform: translateX(-50%)
  }
}

/* accessible heading: visible to assistive tech but hidden visually */
.greeting-sr {
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  white-space: nowrap;
  border: 0;
  padding: 0;
  margin: -1px
}

.job {
  font-size: 1rem;
  color: var(--muted);
  font-weight: 600
}

.description {
  color: var(--muted);
  line-height: 1.6
}

.btn-hero-group {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
  flex-wrap: wrap;
  justify-content: center;
}

.btn {
  border-radius: 100px;
  padding: 0.8rem 1.75rem;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s, box-shadow 0.2s;
}
.btn i {
  margin-right: 0.5rem;
  font-size: 1.1em;
}
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.15);
}

.btn-dark {
  background: var(--text);
  color: var(--bg);
  border: 1px solid var(--text);
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.2);
}

.btn-outline-dark {
  background: transparent;
  border: 1px solid rgba(15, 23, 42, 0.15);
  color: var(--text);
}
.btn-outline-dark:hover {
  background: rgba(15, 23, 42, 0.03);
  color: var(--text);
}

.lead {
  color: var(--muted);
  line-height: 1.6;
  margin-top: .9rem;
  text-align: center
}

.meta {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  justify-content: center;
  margin-top: 1rem;
  color: var(--muted)
}

/* Theme toggle */
/* header/nav interactions */
.list-menu .menu {
  transition: color .18s ease, transform .18s ease, box-shadow .18s
}

.list-menu .menu:focus {
  outline: none;
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.06);
  transform: translateY(-2px);
}

.list-menu .menu:hover {
  color: var(--primary);
  transform: translateY(-2px)
}

/* Micro interactions */
/* Cinematic Project Card with Image Overlay */
.project-card {
  display: block;
  position: relative;
  height: 100%;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.1);
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease;
}

.project-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.15);
}

.project-figure {
  margin: 0;
  position: relative;
  width: 100%;
  height: 380px;
  background: #0f172a;
}

.project-figure img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s cubic-bezier(.2, .9, .2, 1);
}

.project-overlay-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 23, 42, 0.98) 0%, rgba(15, 23, 42, 0.8) 40%, rgba(15, 23, 42, 0) 100%);
  pointer-events: none;
  transition: opacity .4s ease;
}

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

.project-card:hover .project-overlay-bg {
  opacity: 1;
}

.project-body {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  text-align: left;
  padding: 2rem 1.5rem 1.5rem 1.5rem;
  z-index: 10;
  pointer-events: none;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.6) 50%, rgba(0, 0, 0, 0.1) 100%);
  transition: background 0.4s ease;
}

.project-card:hover .project-body {
  background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.8) 50%, rgba(0, 0, 0, 0.3) 100%);
}


.project-subtitle {
  order: -1;
  font-size: 0.55rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 0.25rem;
}

.project-title {
  font-size: 1.65rem;
  font-weight: 800;
  margin: 0 0 .5rem;
  color: #ffffff;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.project-desc {
  margin: 0 0 1.25rem;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  font-weight: 400;
  line-height: 1.5;
}

.project-tech {
  margin-bottom: 0;
}

.bento-pill {
  display: inline-block;
  padding: 0.15rem 0.4rem;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  font-size: 0.55rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.75);
  margin-right: 0.3rem;
  margin-bottom: 0.3rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Tech Stack Sponsor Board */
.sponsor-board {
  position: relative;
  max-width: 900px;
  margin: 0 auto 4rem;
  padding: 2rem 0;
}

.sponsor-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 3rem 4rem;
}

.sponsor-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  opacity: 0.4;
  filter: grayscale(100%);
  transition: all 0.4s ease;
  cursor: default;
}

.sponsor-logo i {
  font-size: 3.5rem;
  color: var(--text);
  transition: color 0.4s ease;
}

.sponsor-logo span {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.sponsor-logo:hover {
  opacity: 1;
  filter: grayscale(0%);
  transform: scale(1.1);
}

/* Specific Brand Colors on Hover */
.sponsor-logo:hover i.devicon-html5-plain { color: #E34F26; }
.sponsor-logo:hover i.devicon-css3-plain { color: #1572B6; }
.sponsor-logo:hover i.devicon-javascript-plain { color: #F7DF1E; }
.sponsor-logo:hover i.devicon-react-original { color: #61DAFB; }
.sponsor-logo:hover i.devicon-tailwindcss-original { color: #06B6D4; }
.sponsor-logo:hover i.devicon-bootstrap-plain { color: #7952B3; }
.sponsor-logo:hover i.devicon-git-plain { color: #F05032; }
.sponsor-logo:hover i.devicon-figma-plain { color: #F24E1E; }
.sponsor-logo:hover i.devicon-webpack-plain { color: #8DD6F9; }
.sponsor-logo:hover i.devicon-supabase-plain { color: #3ECF8E; }
.sponsor-logo:hover i.devicon-postgresql-plain { color: #336791; }
.sponsor-logo:hover i.devicon-mysql-plain { color: #4479A1; }
.sponsor-logo:hover i.devicon-vercel-original { color: #000000; }

/* Layout grids and sizing */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 300px), 1fr));
  gap: 2rem;
  margin: 3rem auto 0;
  max-width: 1200px;
  padding: 0 1rem;
}


.footer-grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.5rem;
}

.social-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 0.5rem;
  justify-content: center;
}

.cta-text-side .social-grid {
  justify-content: flex-start;
  margin-top: 2.5rem;
}

.cta-text-side .footer-card {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.1);
}

.cta-text-side .footer-card img {
  filter: brightness(0) invert(1);
  opacity: 0.8;
}

.cta-text-side .footer-card:hover {
  background: #ffffff;
  border-color: #ffffff;
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.3);
}

.cta-text-side .footer-card:hover img {
  filter: brightness(0);
  opacity: 1;
}

/* constrain icon images and hero/logo sizes */
.footer-card {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  text-decoration: none;
  background: #f8fafc;
  border: 1px solid rgba(15, 23, 42, 0.04);
  transition: all .25s ease;
}

.footer-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 32px rgba(15, 23, 42, 0.1);
  background: #ffffff;
  border-color: rgba(15, 23, 42, 0.2);
}

.footer-card .icon {
  width: 26px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-card .icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform .25s ease;
}

.footer-card:hover .icon img {
  transform: scale(1.1);
}

.footer-logo {
  width: 48px;
  height: 48px;
  object-fit: contain;
  margin: 0 auto 0.75rem auto;
}

.hero-logo {
  width: 100%;
  height: auto;
  max-width: 220px;
  display: block;
  margin: 0 auto 1rem
}

/* Ensure any SVG images included directly are constrained */
img[src$=".svg"] {
  width: 36px;
  height: 36px;
  object-fit: contain
}

/* subtle section separators */
.section-divider {
  border-top: 1px solid rgba(15, 23, 42, 0.04);
  margin-top: 1.5rem;
  padding-top: 1.5rem
}

section:not(:first-of-type) {
  padding-top: 2.5rem
}

/* center project titles and body spacing */
.project-body .project-title {
  margin: 0 0 .25rem;
  font-size: 1.05rem
}



/* ensure global images don't overflow */
img {
  max-width: 100%;
  height: auto;
  display: block
}

/* center content inside container and add separators */
section {
  padding-top: 2rem;
  padding-bottom: 2rem
}

.section-title {
  text-align: center;
  font-size: clamp(2rem, 5vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text);
  margin-top: 1rem;
  margin-bottom: 3.5rem;
  position: relative;
}

.section-title::after {
  content: '';
  display: block;
  width: 48px;
  height: 4px;
  background: var(--primary);
  border-radius: 4px;
  margin: 1rem auto 0;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1rem
}

/* Responsive */
@media(max-width:900px) {
  .footer-grid {
    gap: 2.5rem;
  }

  .container-hero {
    grid-template-columns: 1fr;
  }

  .cta-banner {
    padding: 3rem 2rem;
  }
  .cta-banner-content {
    flex-direction: column;
    text-align: center;
  }
  .cta-text-side {
    text-align: center;
  }
  .cta-text-side .social-grid {
    justify-content: center;
  }
  .cta-banner-bg {
    right: 50%;
    transform: translate(50%, -50%);
    opacity: 0.05;
    width: 300px;
  }
}


/* Jobs */
.jobs-history {
  padding: 2.5rem 0
}

.job {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  align-items: center;
  margin-bottom: 1.25rem
}

.jobs-left img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 12px
}

/* Services Section */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

.service-card {
  padding: 3rem 2rem;
  text-align: center;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  background: var(--card);
  border: 1px solid rgba(15, 23, 42, 0.05);
  box-shadow: 0 4px 12px rgba(2, 6, 23, 0.03);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.service-card:hover {
  transform: translateY(-10px);
  border-color: rgba(15, 23, 42, 0.2);
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.12);
}

.service-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: rgba(15, 23, 42, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.25rem;
  color: var(--text);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.service-card:hover .service-icon {
  background: var(--text);
  color: var(--bg);
  transform: scale(1.1) rotate(5deg);
}

.service-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.01em;
}

.service-desc {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.7;
}

/* Footer Modern */
.footer-modern {
  background: var(--bg);
  border-top: 1px solid rgba(15, 23, 42, 0.04);
}

.footer-heading {
  font-size: 3.5rem;
  font-weight: 800;
  letter-spacing: -2px;
  margin-bottom: 1.5rem;
  color: var(--text);
}

.footer-sub {
  font-size: 1.1rem;
  color: var(--muted);
  margin-bottom: 3rem;
  line-height: 1.8;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.footer-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2.5rem;
  border-radius: 100px;
  background: var(--text);
  color: var(--bg);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.15);
}

.footer-pill i {
  font-size: 1.2rem;
  opacity: 0.9;
}

.footer-pill:hover {
  background: #334155;
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.25);
  text-decoration: none;
}

.footer-pill:hover i {
  opacity: 1;
}

@media (max-width: 768px) {
  .footer-heading {
    font-size: 2.5rem;
    letter-spacing: -1px;
  }
}

/* Utilities */

/* Utilities */
.underline {
  height: 2px;
  background: var(--primary);
  width: 0;
  position: absolute;
  bottom: 8px;
  left: 0;
  transition: all .2s
}

/* responsive */
@media(max-width:1000px) {
  .container-hero {
    grid-template-columns: 1fr
  }

  .list-menu {
    display: none
  }

  .job {
    grid-template-columns: 1fr
  }

  .jobs-left img {
    height: 180px
  }
}

/* Dark Mode Overrides */
[data-theme="dark"] .site-header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
[data-theme="dark"] .footer-modern {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* Custom Features */
.theme-toggle {
  background: transparent;
  border: 1px solid rgba(15, 23, 42, 0.15);
  color: var(--text);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
[data-theme="dark"] .theme-toggle {
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.theme-toggle:hover {
  background: var(--text);
  color: var(--bg);
}

.filter-btn {
  background: transparent;
  border: 1px solid rgba(15, 23, 42, 0.15);
  color: var(--text);
  padding: 0.5rem 1.25rem;
  border-radius: 100px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
}
[data-theme="dark"] .filter-btn {
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.filter-btn:hover, .filter-btn.active {
  background: var(--text);
  color: var(--bg);
}

.contact-form {
  padding: 2rem;
  border-radius: 16px;
  border: 1px solid rgba(15, 23, 42, 0.1);
  background: var(--card);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}
[data-theme="dark"] .contact-form {
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.form-group {
  margin-bottom: 1.25rem;
}
.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text);
}
.form-group input, .form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid rgba(15, 23, 42, 0.15);
  border-radius: 8px;
  background: transparent;
  color: var(--text);
  font-family: inherit;
  transition: border-color 0.3s;
}
[data-theme="dark"] .form-group input, [data-theme="dark"] .form-group textarea {
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.form-group input:focus, .form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
}

/* 3D Tilt Glare Fix */
.js-tilt-glare {
  border-radius: 20px;
}

/* Mobile adjustments for overlay buttons */
@media (max-width:600px) {
  .hide-mobile {
    display: none !important;
  }
  .time-location {
    display: none !important;
  }
  .block-mobile {
    flex-basis: 100%;
    margin-top: 0.25rem;
  }
  
  .overlay-actions {
    justify-content: center;
    width: 100%;
    padding: 0 1rem;
    gap: 1rem;
  }

  .project-code,
  .project-cta {
    padding: 0.6rem 0.85rem;
  }

  .project-figure img {
    height: 220px;
  }

  .project-body {
    padding: 1.25rem;
  }
}

/* Mobile menu overlay when activated */
.list-menu.active {
  display: flex;
  position: fixed;
  inset: 64px 0 0 0;
  background: var(--bg);
  padding: 1.5rem;
  flex-direction: column;
  gap: 1rem;
  z-index: 1200;
  overflow: auto
}

.list-menu.active .menu {
  font-size: 1.1rem;
  padding: .75rem 0;
  color: var(--text)
}