:root {
  --font-size: 1.2rem;
  /* ALTE FARBEN
  --c1: #7c9e61;
  --c2: #26171e;
  --c3: #000000;
  --cWh: #e0e0e0;
  --cBg: #cad8bf;
  */
  --c1: #e77517;
  --c2: #e77517;
  --c3: #edcba1;
  --cWh: #070720;
  --cBk: #b9b9ca;
  --header-color:#070720;
  --shadow-c1: 0px 0px 15px 0px var(--c1);
  --transition-duration: 0.5s;
  --underline-height: 3px;
  --header-height: 6vh;
  --footer-height: var(--header-height);
  --nav-active-decoration: none;
  --breathing-scale: 1.05;
  --breathing-duration: 1.5s;
  --padding: 0.75rem;
  --header-logo-scale: 1.8;
  --header-logo-scale-mobile: 1.8;

  --primary: var(--c1);
  --primary-overlay: rgba(124, 158, 97, 0.5);
  --secondary: var(--c2);
  --text-dark: var(--cBk);
  --text-light: var(--cWh);
  --color-bg: var(--cWh);
  --card-bg: white;
  --card-shadow: var(--shadow-c1);
  --card-radius: 0.5rem;
  --border-radius: 8px;
  --gap: 2rem;
  --font-main: 'Montserrat', Arial, sans-serif;
  /* Hero Background Images */
  --hero-bg-druck: url('/data/mockups_placeholder/7.png');
  --hero-bg-scan: url('/data/mockups_placeholder/scan/scan1.png');
  --hero-bg-team: url('/data/mockups_placeholder/3.png');
  --hero-bg-preise: url('/data/mockups_placeholder/12.png');
  --hero-bg-kontakt: url('/data/mockups_placeholder/5.png');
  --hero-bg-konstruktion: url('/data/mockups_placeholder/11.png');
  --hero-bg-home: #eaf2fa;
  /* Home uses a background color */
  --topspace: calc(2 * var(--padding) + var(--header-height));
  --footer-padding: 6rem;
  --headercontact-font-size: 1rem;
  --headercontact-font-size-mobile: 0.7rem;
  --headercontact-padding: 0.1rem;
  --headercontact-padding-mobile: 0.1rem 1rem 0.5rem 0;
  --headercontact-font-weight: 500;
  --headercontact-color: var(--c2, #1e2617);
  --card-size:250px;
}

.c1{
  color:var(--c1);
  fill:var(--c1);
}

.c2{
  color:var(--c2);
  fill:var(--c2);
}

.c3{
  color:var(--c3);
  fill:var(--c3);
}


html,
body {
  height: 100%;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  cursor: default;
}

body {
  background-color: var(--cWh);
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  color: var(--c3);
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* text etc */
h2 {
  font-size: 1.5rem;
}
.txtfat {
  font-weight: 900;
}
.txtc1 {color: var(--c1);}
.txtc2 {color: var(--c2);}
.txtc3{color: var(--c3);}
nav {
  /*padding-left: 4rem;*/
  display: flow;
}

/* Content container */
.content_container {
  display: flex;
  flex: 1 0 auto;
  /* min-height: 100vh; Optional: for scrolling if content is long */

}

/* Header styles */

#header {
  width: 100vw;
  height: var(--header-height);
  padding: var(--padding);
  position: sticky;
  top: 0;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  background-color: var(--header-color);
  align-items: center;
  box-shadow: var(--shadow-c1);
  z-index: 100;
  position: fixed;
}

#headertitle {
  padding-left: 10vw;
}

#logo {
  height: calc(var(--header-height) * var(--header-logo-scale));
  max-height: calc(var(--header-height) * var(--header-logo-scale));
  width: auto;
  padding-left: 1rem;
  fill: var(--c1);
  color: #00ff00;
}

#logo-container {
  height: calc(var(--header-height) * var(--header-logo-scale));
  max-height: calc(var(--header-height) * var(--header-logo-scale));
  display: flex;
  align-items: center;
  overflow: hidden;
}

#generated-logo {
  height: calc(var(--header-height) * var(--header-logo-scale)) !important;
  max-height: calc(var(--header-height) * var(--header-logo-scale)) !important;
  width: auto;
  display: flex;
  align-items: center;
  overflow: hidden;
}

#generated-logo img,
#generated-logo svg {
  max-height: calc(var(--header-height) * var(--header-logo-scale) - 1rem) !important;
  max-width: 200px;
  width: auto !important;
  height: auto !important;
  object-fit: contain;
}

/* Add this new rule for logo hover effect */
#logo:hover {
  cursor: pointer;
  animation: breathe var(--breathing-duration) ease-in-out infinite;
}

/* Mobile responsive logo sizing */
@media (max-width: 900px) {
  #logo {
    height: calc(var(--header-height) * var(--header-logo-scale-mobile));
    max-height: calc(var(--header-height) * var(--header-logo-scale-mobile));
  }
  
  #logo-container,
  #generated-logo {
    height: calc(var(--header-height) * var(--header-logo-scale-mobile)) !important;
    max-height: calc(var(--header-height) * var(--header-logo-scale-mobile)) !important;
  }
  
  #generated-logo img,
  #generated-logo svg {
    max-height: calc(var(--header-height) * var(--header-logo-scale-mobile) - 0.5rem) !important;
    max-width: 150px;
  }
}

#main-nav {
  position: relative;
  display: flex;
  flex-flow: row;
  justify-content: flex-end;
  z-index: 900;
}

#main-nav .menu-item {
  text-decoration: none;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  padding-left: var(--padding);
  padding-right: var(--padding);
  color: var(--c3);
  transition: color var(--transition-duration) ease;
}

#main-nav .underline {
  position: absolute;
  bottom: 0;
  height: var(--underline-height);
  background: var(--c1);
  transition: left var(--transition-duration) ease,
    width var(--transition-duration) ease;
}

/* Hover-Farbe + Atem-Animation */
@keyframes breathe {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(var(--breathing-scale));
  }
}

#main-nav :hover {
  color: var(--c1);
  animation: breathe var(--breathing-duration) ease-in-out infinite;
}

#main-nav .active {
  color: var(--c1);
  text-decoration: var(--nav-active-decoration);
}

/* When hovering a menu item, make the hovered item green and the active item c3 */
#main-nav .menu-item:hover,
#mobile-nav .menu-item:hover {
  color: var(--c1);
}

#main-nav .menu-item.active,
#mobile-nav .menu-item.active {
  color: var(--c1);
  text-decoration: var(--nav-active-decoration);
}

/* New: When hovering any menu item, force the .active item to c3 */
#main-nav:hover .menu-item.active:not(:hover) {
  color: var(--c3) !important;
}

/* same for mobile */
#mobile-nav:hover .menu-item.active:not(:hover) {
  color: var(--c3) !important;
}

/* Hamburger button styles */
#hamburger {
  display: none;
  /* Initially hidden, shown in media query */
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 101;
  /* Ensure it's above the opened menu and header content */
  /* margin-left: auto; /* Remove this if it was there */
  /* New positioning strategy for fixed position */
  position: absolute;
  top: 50%;
  right: calc(2 * var(--padding));
  /* Align to the right padding of the header */
  transform: translateY(-50%);
}

#hamburger span {
  display: block;
  height: 4px;
  width: 28px;
  background: var(--c2, #1e2617);
  border-radius: 2px;
  transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
  transform-origin: center;
  /* Ensures rotation is around the center of the span */
}

/* Animation for hamburger to 'X' */
#hamburger.is-active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
  /* (span-height/2 + gap + span-height/2) for Y */
}

#hamburger.is-active span:nth-child(2) {
  opacity: 0;
  transform: translateX(-100%);
  /* Optional: move it out of view */
}

#hamburger.is-active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

#mobile-site-indicator {
  display: none;
  font-size: 1.1rem;
  font-weight: 600;
  margin-left: 0.7rem;
  transition: color 0.6s;
  min-width: 80px;
  text-align: left;
  vertical-align: middle;
}

#main-nav {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  z-index: 1001;
}

/* Hide mobile nav by default (desktop view) */
#mobile-nav {
  display: none;
}

/* Responsive breakpoint */
@media (max-width: 900px) {

  #logo {
    height: calc(var(--header-height) * var(--header-logo-scale-mobile));
  }

  #mobile-nav {
    position: absolute;
    transform: translateY(-100%);
    opacity: 1;
    pointer-events: none;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  }

  #mobile-nav.open {
    position: absolute;
    width: 100vw;
    text-align-last: center;
    top: var(--topspace);
    right: 0;
    background: white;
    /* Ensure it has a background */
    z-index: 90;
    /* Below hamburger, above other content */
    /* Add flex properties if menu items should stack vertically */
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    /* Or center, stretch, etc. */
    padding-top: 1rem;
    /* Example padding */
    padding-bottom: 1rem;
    /* Example padding */
    box-shadow: -2px 0 5px rgba(0, 0, 0, 0.1);
    /* Optional shadow */
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }


  #mobile-nav .menu-item {
    display: block;
    background: transparent;
    padding: 1rem 2rem;
    border-bottom: 1px solid #eee;
    width: 100%;
    text-align: left;
    box-sizing: border-box;
    text-decoration: none;
    color: var(--c3);
    font-size: 1.3rem;
    text-align: center;
    font-weight: 600;
  }

  #hamburger {
    display: flex;
    position: relative;

    /* Make hamburger visible on mobile */
  }

  #mobile-site-indicator {
    display: inline-block !important;
  }

  #main-nav .underline {
    display: none !important;
    /* Hide underline on mobile */
  }

  /* Show mobile nav, hide main nav on mobile */
  #main-nav {
    display: none !important;
  }

  #mobile-nav {
    display: flex;
    flex-direction: column;
    width: 100vw;
    background: white;
    position: absolute;
    padding-top: var(--topspace);
    left: 0;
    z-index: 90;
    text-decoration: none;
  }

  .services-grid {
    grid-template-columns: repeat(auto-fit, minmax(60vw, 1fr));
  }

}

/* responsive ende */


/* FOOTER */
.footer-spacer {
  width: 100vw;
  height: calc(1.2 * var(--footer-height));
}

.footer {
  flex-shrink: 0;
  opacity: 1;
  bottom: 0;
  position: relative;
  width: 100vw;
  z-index: 80;
  padding-top: var(--footer-padding);
  padding-bottom: var(--footer-padding);
  background: var(--cWh);
  color: var(--c2);
  text-align: center;
  min-height: var(--footer-height);
  height: fit-content;
  box-shadow: 0px 0px 15px 0px var(--c1);
  /*nur nach oben! fix*/
}

#copyrightinfo {
  font-size: 0.8rem;
  color: var(--c2);
  padding: var(--padding);
  cursor: default;
}

.footer-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: inline-flex;
  gap: calc(var(--font-size) * 1.5);

}

.footer-item {
  cursor: pointer;
  transition: color var(--transition-duration);
}

.footer-item:hover {
  color: var(--c1);
  font-weight: 600;
}

/* Info-Overlay */
.info-overlay {
  position: fixed;
  margin-top: 10vh;
  margin-bottom: 10vh;
  margin-left: 10vw;
  margin-right: 10vw;
  top: 0;
  left: 0;
  width: 80vw;
  height: 80vh;
  background: rgba(255, 255, 255, 1);
  display: block;
  align-items: center;
  justify-content: center;
  opacity: 1;
  transition: opacity var(--transition-duration) ease;
  z-index: 1000;
  border-radius: 0.5rem;
  box-shadow: 0px 0px 15px 0px var(--c1);
}

.info-overlay.closed {
  visibility: hidden;
  opacity: 0.2;
}



@media (max-width: 600px) {
  .info-overlay .info-close {
    top: 12px;
    right: 12px;
    width: 32px;
    height: 32px;
    font-size: 1.5rem;
  }

  .footer {
    padding-top: 2rem;
  }

  .footer-list {
    flex-direction: column;
  }
}

.info-content {
  background: none;
  padding: var(--padding);
  /*max-width: 600px;
  width: 90%;*/
  max-height: 94%;
  overflow-y: auto;
  position: relative;
  border-radius: 8px;
}

.info-overlay .info-close {
  position: sticky;
  top: 0.5rem;
  right: 0.5rem;
  background: none;
  border: none;
  font-size: 1.6rem;
  font-weight: 600;
  cursor: pointer;
  z-index: 1010;
  float: right;
  /* helps with layout in sticky context */
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}


.info-body {
  margin-top: 1.5rem;
  color: var(--color-secondary);
  line-height: 1.6;
}

/* GENERAL CONTENT STUFF*/


/* Initial setup */
#pagecontent {
  perspective: 1200px;
  position: relative;
  min-height: calc(100vh - var(--header-height));
  /*ggf fix kann auch 100 sein*/
  /*overflow: hidden;*/
  background: var(--cWh);
}

.page-inner {
  position: relative;
  transform-style: preserve-3d;
  backface-visibility: hidden;
  transform-origin: center;
  /*position: absolute; für cube anim nur setzen wenn anim sonst footer probs*/
  top: var(--topspace);
  left: 0;
  /*
  padding-left: var(--padding);
  padding-right: var(--padding);
  overflow-x: hidden;*/
  /*z-index: 2;*/
  width: 100vw;
  /*min-height: 100vh;
  height: fit-content;
  /* buggy bei kontakt form padding: 1rem; */
  box-sizing: border-box;
  /*hier content oder borderbox*/
  background-color: var(--cBg);
  transition: background-color 1.6s cubic-bezier(0.4, 0, 0.2, 1);
  /*min-height: 100vh;*/
  padding-bottom: var(--footer-padding);
}

.centered {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  width: 100%;
  box-sizing: border-box;
}

#site-loader {
  position: fixed;
  z-index: 9999;
  inset: 0;
  background: rgba(255, 255, 255, 0.85);
  /*display: flex;*/
  display: none;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s;
}

#site-loader.hide {
  opacity: 0;
  pointer-events: none;
}

/* CTA Section */
.cta-section {
  background-color: var(--c1);
  padding: 2rem;
  text-align: center;
  border-radius: var(--border-radius);
  max-width: 900px;
  margin: 3rem auto;
}

.cta-section strong {
  font-size: 1.3rem;
}

.cta-section a {
  display: inline-block;
  margin-top: 1rem;
  background: var(--primary);
  color: var(--text-light);
  padding: 1rem 2rem;
  border-radius: var(--border-radius);
  text-decoration: none;
  font-weight: bold;
  transition: background 0.2s, color 0.2s;
}

.cta-section a:hover,
.cta-section a:focus {
  background: var(--text-light);
  color: var(--primary);
  border: 1px solid var(--primary);
}

/* Responsive */
@media (max-width: 900px) {
  .about-section {
    flex-direction: column;
    gap: 1.5rem;
  }

  .features-grid,
  .gallery-grid {
    gap: 1rem;
    margin: 2rem 1rem;
  }

  .cta-section {
    margin: 2rem 1rem;
  }
}

@media (max-width: 600px) {
  .hero-section h1 {
    font-size: 2rem;
  }

  .hero-section p {
    font-size: 1.1rem;
  }

  .features-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .process-slider {
    flex-direction: column;
    gap: 1rem;
  }
}

/* Responsive */
@media (max-width: 900px) {
  .services-grid {
    gap: 1rem;
    margin: 2rem 1rem;
  }

  .about-short,
  .cta-section {
    margin: 2rem 1rem;
  }
}

@media (max-width: 600px) {
  .slide-caption h1 {
    font-size: 1.3rem;
  }

  .slide-caption p {
    font-size: 1rem;
  }

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

/* Responsive */
@media (max-width: 900px) {
  .about-section {
    flex-direction: column;
    gap: 1.5rem;
  }

  .team-section {
    margin: 2rem 1rem;
  }

  .cta-section {
    margin: 2rem 1rem;
  }
}

@media (max-width: 600px) {
  .hero-section h1 {
    font-size: 2rem;
  }

  .hero-section p {
    font-size: 1.1rem;
  }

  .team-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

/* === Shared Styles === */
.cta-btn {
  background: var(--cWh);
  color: var(--primary);
  padding: 1rem 2rem;
  border-radius: var(--border-radius);
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1rem;
  transition: background 0.2s, color 0.2s;
}

.cta-btn:hover,
.cta-btn:focus {
  background: var(--primary);
  color: var(--secondary);
}

/* === Shared Hero Section === */
.hero-section {
  position: relative;
  height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  /* Add common background properties here */
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.hero-section::before,
.hero-section .hero-overlay {
  content: "";
  background: var(--primary-overlay);
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-section>div {
  position: relative;
  color: var(--text-light);
  text-align: center;
  z-index: 1;
}

.hero-section h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.hero-section p {
  font-size: 1.5rem;
  margin-bottom: 2rem;
}

/* === Shared About Section === */
.about-section {
  display: flex;
  gap: var(--gap);
  align-items: center;
  max-width: 1100px;
  margin: 3rem auto;
  flex-wrap: wrap;
}

.about-section>div {
  flex: 1 1 320px;
}

.about-section img {
  width: 100%;
  border-radius: var(--border-radius);
}

/* === Shared Features Grid === */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--gap);
  max-width: 900px;
  margin: 3rem auto;
  text-align: center;
}

.feature {
  background: var(--card-bg);
  border-radius: var(--border-radius);
  box-shadow: var(--card-shadow);
  padding: 1.5rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.feature-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 1rem;
}

.feature strong {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
}

/* === Shared Gallery Grid === */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  max-width: 1100px;
  margin: 2rem auto;
}

.gallery-item {
  background: var(--card-bg);
  border-radius: var(--border-radius);
  box-shadow: var(--card-shadow);
  padding: 0.5rem;
  text-align: center;
  transition: transform 0.15s;
}

.gallery-item:hover {
  transform: scale(1.03);
  box-shadow: 0 4px 16px rgba(0, 85, 164, 0.12);
}

.gallery-item img {
  width: 100%;
  border-radius: var(--border-radius);
}

.caption {
  font-size: 0.95rem;
  color: #666;
  margin-top: 0.5rem;
}

/* === Shared Step Cards === */
.step-card {
  background: var(--card-bg);
  border-radius: var(--border-radius);
  box-shadow: var(--card-shadow);
  padding: 1rem;
  min-width: 220px;
  text-align: center;
  flex: 0 0 220px;
  transition: transform 0.15s;
}

.step-card:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 4px 16px rgba(0, 85, 164, 0.12);
}

.step-card img {
  max-width: 64px;
  margin-bottom: 0.5rem;
}

.step-card strong {
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
  display: block;
}

/* === Shared Responsive Hero Section === */
@media (max-width: 600px) {
  .hero-section h1 {
    font-size: 2rem;
  }

  .hero-section p {
    font-size: 1.1rem;
  }

  .features-grid,
  .gallery-grid,
  .process-steps {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

/* Shared mics */
section h2 {
  text-align: center;
}

/* Header SVG */



.header-contact {
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: flex-end;
  font-size: var(--headercontact-font-size);

  font-family: 'Montserrat', sans-serif;
  background: none;
  color: var(--headercontact-color);
  font-weight: var(--headercontact-font-weight);
  width: 100%;
}

.header-contact a {
  text-decoration: none;
  color: var(--headercontact-color);
  transition: color var(--transition-duration);
  padding-left: var(--padding);
  padding-right: var(--padding);
}

#headercontact-and-menu {
  display: flex;
  gap: 0.1rem;
  align-items: center;
  justify-content: flex-end;
  flex-direction: row;
  padding-right: 1rem;
}


@media (max-width: 1400px) {
  .header-contact {
    display: flex;
    gap: 1rem;
    align-items: center;
    justify-content: flex-end;
    font-size: var(--headercontact-font-size);

    font-family: 'Montserrat', sans-serif;
    background: none;
    color: var(--headercontact-color);
    font-weight: var(--headercontact-font-weight);
    width: 100%;
  }

  .header-contact a {
    text-decoration: none;
    color: var(--headercontact-color);
    transition: color var(--transition-duration);
    padding-left: var(--padding);
    padding-right: var(--padding);
  }

  #headercontact-and-menu {
    display: flex;
    gap: 0.1rem;
    align-items: center;
    justify-content: flex-end;
    flex-direction: column;
    padding-right: 1rem;
  }
}

/* Warum steibo3d Abschnitt */
.why-steibo3d-section {
  max-width: 1100px;
  margin: 3rem auto;
  padding: 2rem 1rem;
  background: var(--card-bg);
  border-radius: var(--border-radius);
  box-shadow: var(--card-shadow);
  text-align: center;
}

.why-steibo3d-section h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.why-card {
  background: var(--cWh);
  border-radius: var(--border-radius);
  box-shadow: 0 2px 8px rgba(124, 158, 97, 0.07);
  padding: 1.5rem 1rem;
  text-align: left;
  transition: box-shadow 0.2s;
}

.why-card strong {
  font-size: 1.15rem;
  color: var(--c1);
  display: block;
  margin-bottom: 0.7rem;
}

.why-card:hover {
  box-shadow: 0 4px 16px rgba(124, 158, 97, 0.13);
}

.why-cta {
  margin-top: 2rem;
  font-size: 1.15rem;
}

.why-cta .cta-btn {
  margin-top: 1rem;
}

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

  .why-steibo3d-section {
    padding: 1rem 0.5rem;
  }

  .header-contact {
    flex-direction: column;
    gap: 0.2rem;
    font-size: 0.6rem;
  }

}

@media (max-width: 500px) {
  .header-contact {
    display: none;
  }
}

/* Styling for the Willkommen overlay icons and text */
.welcome-overlay {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.welcome-overlay img {
  width: 40px;
  height: 40px;
}

.welcome-overlay p {
  font-size: 1rem;
  color: var(--text-dark);
  margin: 0;
}

.welcome-overlay strong {
  color: var(--primary);
}