:root {
  /* === Background Palette (Big Day 1 - Rosé Remix) === */
  --mocha: #9F846D;
  --rosewood: #DAC3B2;
  --blush: #F3E7DD;
  --ivory: #FDF5E6;


  /* === Accent Palette (Big Day 2 - Rosé Remix) === */
  --black: #010101;
  --sandstone: #D2B08D;
  --peach: #F7E0B9;
  --ivory: #FDF5E6;

  /* Text and Utility */
  --dark: #010101;
  --light: #FBFBFB;
  --contrast-light: #FFFFFF;
  --contrast-dark: #1E1C1B;

  --font-heading: 'EB Garamond', serif;
  --font-subhead: 'Barlow', sans-serif;
  --font-body: 'Figtree', sans-serif;
}

/* ========== GLOBAL STYLES ========== */
/* Apply to the entire page */
html, body {
  height: 100%;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}

/* Main content grows to fill space */
main {
  flex: 1;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  background-color: var(--ivory); 
  color: var(--dark);
}

h1, h2, h3 {
  font-family: var(--font-heading);
  font-weight: 600;
  font-style: normal;
  letter-spacing: 0.02em;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

.btn {
  display: inline-block;
  padding: 0.6em 1.2em;
  border: 1px solid transparent;
  text-align: center;
  cursor: pointer;
  font-weight: 100;
  transition: all 0.2s ease;
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.btn.gold {
  background-color: var(--sandstone); 
  color: var(--ivory);                   
  border-color: var(--ivory);
  margin-bottom: 20px;
}

.btn.gold:hover {
  background-color: var(--ivory);
  color: var(--mocha);               
  border-color: var(--mocha);
}

.visually-hidden {
  display: none;
}

/* ========== PAGE-SPECIFIC STYLES ========== */
body.services-bg {
  background-image: url('../assets/lightsDark.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-color: transparent !important;
}

/* ========== HEADER ========== */
.site-header {
  background: white;
  padding: 1em;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.nav-container img.logo {
    max-width: 500px;  /* or whatever looks good */
    height: auto;
    margin: 0 auto;
    align-items: center;
  }

.main-nav ul {
  display: flex;
  gap: 10em;
  list-style: none;
  padding: 0;
  margin-top: 1em;
}

.main-nav a {
  font-family: var(--font-heading);
  font-weight: 600;
  letter-spacing: 0.05em;
}

.main-nav a.active {
  border-bottom: 2px solid var(--mocha); 
  color: var(--mocha);
}

.main-nav a:hover {
  border-bottom: 2px solid var(--mocha); 
  color: var(--mocha);
}

/* Hamburger styling */
.hamburger {
  font-size: 2rem;
  background: none;
  border: none;
  color: var(--beige-light);
  cursor: pointer;
  display: none; /* hidden on desktop */
}

/*INDEX*/
/* ========== HERO SECTION ========== */
.hero {
  position: relative;
  text-align: center;
  color: white;
  height: 500px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.hero-bg {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  width: 90%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
}

.hero-overlay h1 {
  letter-spacing: 0.2em;
  font-size: 5rem;
  margin-bottom: 1em;
}

.hero-slideshow {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.hero-slideshow::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4); /* 40% black */
  z-index: 5;
}


.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  z-index: 0;
}

.hero-slide.active {
  opacity: 1;
  z-index: 1;
}


/* ========== TESTIMONIAL ========== */
.testimonial {
  background-color: var(--blush); 
  padding: 20px;
  text-align: center;
}

.testimonial blockquote {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  width: 60%;
  margin: 0 auto;
  color: var(--contrast-dark); 
}

.testimonial footer {
  margin-top: 0.5em;
  font-weight: 200;
  font-style: normal;
  font-family: var(--font-body);
  color: var(--mocha); 
  font-size: 1rem;
  padding-bottom: 2rem;
}

.quotes-img {
  margin: 0 auto;
  padding: 20px;
  width: 80px;
}

.quote-slideshow {
  position: relative;
  width: 100%;
  text-align: center;
  height: 225px;
}

.quote-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  z-index: 0;
}

.quote-slide.active {
  opacity: 1;
  z-index: 1;
}

/* ========== PITCH CTA SECTION ========== */
.pitch {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  background-color: var(--contrast-dark); /* was gray-medium */
  height: 600px;
  box-shadow: 0 -8px 20px rgba(0, 0, 0, 0.4);
}

.cheers-img {
  margin: 0 auto;
  max-height: 150px;
  padding: 20px;
  width: auto;
}

.pitch-left {
  flex: 0.5;
  min-width: 250px;
  text-align: center;
  margin: 0 auto;
  height: auto;
  object-fit: contain;
  padding: 20px;
}

.pitch-left p {
  font-family: var(--font-body);
  line-height: 2rem;
  text-transform: uppercase;
  color: var(--ivory); /* was beige-light */
  width: 60%;
  margin: 0 auto;
  padding: 30px;;
}

.pitch-left h2 {
  font-family: var(--font-heading);
  color: var(--ivory); /* was beige-light */
  line-height: 1.5em;
  letter-spacing: 0.2em; 
}

.pitch-right {
  flex: 1;
  min-width: 250px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  height: 100%;
}

.drink-shot {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}



/* ========== SERVICES ========== */

.services-page {
  /*background: var(--ivory);*/
  padding: 4rem 2rem;
  text-align: center;
}

.service-section {
  margin-bottom: 4rem;
  padding: 2rem 0;
  font-family: var(--font-body);
  color: var(--contrast-dark)
}

/* --ivory: #FDF5E6 */
.service-section:nth-of-type(1) {
  background-color: rgba(253, 245, 230, 0.7);
}

/* --rosewood: #DAC3B2 */
.service-section:nth-of-type(2) {
  background-color: rgba(218, 195, 178, 0.7);
}

/* --mocha: #9F846D */
.service-section:nth-of-type(3) {
  background-color: rgba(159, 132, 109, 0.7);
}

.service-section h2 {
  font-family: var(--font-heading);
  color: var(--contrast-dark);
  font-size: 2.5rem;
  letter-spacing: 0.3em;
  margin-bottom: 1rem;
}

.service-section .bottom-section {
  font-family: var(--font-heading);
  color: white;
  font-size: 2.5rem;
  letter-spacing: 0.3em;
  margin-bottom: 1rem;
}

.disclaimer {
  font-size: 0.9rem;
  color: var(--contrast-dark);
  max-width: 700px;
  margin: 0 auto 2rem auto;
}

.disclaimer-bottom {
  font-size: 0.9rem;
  color: var(--ivory);
  max-width: 700px;
  margin: 0 auto 2rem auto;
}

.card-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin-top: 2rem;
}

.service-card {
  background-color: var(--blush);
  padding: 2rem;
  width: 300px;
  border: 20px solid var(--sandstone);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
  text-align: left;
  position: relative;
  border-radius: 8px;

  /* Flex magic */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}


.service-card input[type="checkbox"] {
  position: absolute;
  top: 10px;  /* Pulls into the border */
  left: -165px;
  transform: scale(1.25);
  z-index: 10;
  cursor: pointer;
  background-color: var(--ivory);
  border: 2px solid var(--mocha);
  accent-color: var(--mocha);
  border-radius: 4px;
}

/* Optional: hover hint logic */
.service-card input[type="checkbox"]::after {
  content: attr(data-hint);
  position: absolute;
  top: -2rem;
  right: 3rem;
  background-color: var(--black);
  color: var(--ivory);
  font-size: 0.75rem;
  padding: 0.3rem 0.6rem;
  border-radius: 4px;
  white-space: nowrap;
  opacity: 0;
  transition: opacity 0.2s ease;
  pointer-events: none;
}

.service-card input[type="checkbox"]:hover::after {
  opacity: 1;
}

.service-card img {
  width: 100px;
  height: 100px;
  margin: 0 auto;
  border-radius: 50%;
  margin-bottom: 1rem;
}

.service-card h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  margin-bottom: 1rem;
  text-align: center;
}

.list-heading {
  font-weight: bold;
  font-family: var(--font-subhead);
}

.service-card ul {
  padding-left: 1.2rem;
  margin-bottom: 1.2rem;
  font-family: var(--font-body);
  color: var(--mocha);
  line-height: 1.75rem;
}

.service-card .price {
  font-family: var(--font-subhead);
  font-size: 1.2rem;
  font-weight: bold;
  color: var(--contrast-dark);
  text-align: center;
  line-height: 2rem;
  margin-top: auto;
}



/* ========== ABOUT ========== */
.about-page {
  background-image: url('../assets/lightsDark.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  color: var(--ivory);            /* was beige-light */
  padding: 3rem 2rem;
  text-align: center;
}

.content-wrapper {
  background-color: var(--contrast-dark)!important;
  width: 70%;
  margin: 0 auto;
  padding: 30px;
}

.tagline {
  font-family: var(--font-body);
  font-size: 2rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 2rem;
  font-weight: 100;
  line-height: 1.5em;
}


.bio-block {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 4rem;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

.bio-media,
.bio-text {
  display: flex;
  align-items: stretch;
  flex: 1 1 300px;
}

.bio-block .bio-card {
  background-color: var(--mocha);
  padding: 2rem;
  border-radius: 4px;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.bio-block .bio-media {
  flex: 1;
}

.bio-block .bio-text {
  flex: 2;
}

.bio-card h3 {
  font-family: var(--font-heading);
  font-size: 2rem;
  margin-bottom: 1rem;
  letter-spacing: 0.3rem;
}

.bio-card p {
  font-family: var(--font-body);
  margin-bottom: 1rem;
  line-height: 1.5em;
  font-size: larger;
  color: var(--contrast-dark);
  letter-spacing: 0.1rem;
}

.bio-card p.signature {
  font-family: var(--font-heading);
  font-weight: bold;
  font-size: 1.5rem;
  margin-top: 1rem;
  color: var(--ivory);
}

.signature span {
  display: block;
  font-weight: bold;
  font-size: 1.2rem;
  color: var(--sandstone); /* was gold-medium */
}

.bio-media img,
.bio-media video {
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: 4px;
}


.bio-media video {
  max-height: 500px;
}

/* ========== GALLERY ========== */
.gallery-page {
  background-color: var(--blush); 
  padding: 2rem;
  text-align: center;
}

.gallery-grid {
  column-count: 3;
  column-gap: 1.5rem;
}

.gallery-item {
  break-inside: avoid;
  margin-bottom: 2rem;
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  background-color: var(--beige-light);
}

/* Image */
.gallery-item img {
  width: 100%;
  display: block;
  border-radius: 8px;
  object-fit: cover;
}

.gallery-actions {
  position: absolute;
  inset: auto 0.75rem 0.5rem 0.75rem;
  display: flex;
  justify-content: space-between;
  pointer-events: none;
}



.gallery-actions button {
  pointer-events: auto;
  background: rgba(255, 255, 255, 0.7);
  border: none;
  padding: 0.25rem 0.75rem;
  border-radius: 6px;
  font-size: 0.9rem;
  color: var(--mocha);
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
  max-width: 40%;
  white-space: nowrap;
}

.gallery-actions button:hover {
  background: rgba(255, 255, 255, 0.95);
  color: var(--sandstone);
}

.like-btn:disabled,
.like-btn.locked {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.share-popup {
  position: absolute;
  background: white;
  border: 1px solid #ccc;
  padding: 0.75rem;
  font-size: 0.875rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  border-radius: 6px;
  top: -10px;
  right: 0;
  z-index: 10;
}

.share-popup a {
  display: block;
  margin: 0.25rem 0;
  color: var(--text-dark);
  text-decoration: none;
}

.share-popup a:hover {
  text-decoration: underline;
}




/* ========== CONTACT ========== */
.contact-page {
  background-color: var(--blush); /* was gold-pale */
  padding: 4rem 2rem;
}

.contact-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: center;
  justify-content: space-between;
}

.contact-left {
  flex: 1;
  text-align: center;
  padding: 2rem;
  background-color: var(--mocha); /* was gray-medium */
  background-image: url("../assets/lightsLight.png"); 
  background-size: cover;
  background-position: center;
  color: var(--ivory);            /* was beige-light */
  border-radius: 8px;
  font-family: var(--font-heading);
  font-size: 2rem;
  letter-spacing: 0.2rem;
  line-height: 1.5em;
}

.contact-left img {
  max-width: 300px;
  margin: 1rem auto 1rem auto;
}

.cheers-container {
  background-color: var(--contrast-dark);
  padding: 100px 20px;
}

.contact-right {
  flex: 2;
  background-color: var(--ivory); /* was beige-light */
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.form-header h2 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
}

.form-header p {
  font-family: var(--font-body);
  font-size: 1rem;
  margin-bottom: 1rem;
}

.form-message {
  background-color: var(--black); /* was hardcoded black */
  color: var(--light);            /* was hardcoded white */
  padding: 1rem;
  margin-bottom: 1rem;
  font-family: var(--font-subhead);
  font-size: 0.9rem;
  border-radius: 4px;
}

.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0);
  border: 0;
}

/*Flash message styling - form error/success*/
.form-flash-wrapper {
  margin-bottom: 1rem;
}

.flash {
  padding: 1rem;
  border-radius: 5px;
  font-weight: 600;
  margin: 0.5rem 0;
  text-align: center;
}

.flash.success {
  background-color: #dff0d8;
  color: #3c763d;
}

.flash.error {
  background-color: #f2dede;
  color: #a94442;
}

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

input, textarea {
  width: 100%;
  padding: 0.75rem 0;
  border: none;
  border-bottom: 1px solid var(--mocha);
  background: transparent;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--black); 
}

input::placeholder,
textarea::placeholder {
  color: var(--mocha);
  opacity: 0.8;
  font-size: 0.9rem;
}

input:focus,
textarea:focus {
  outline: none;
  border-bottom: 1px solid var(--sandstone); /* active border color */
}

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

button[type="submit"] {
  margin-top: 1rem;
  width: 100%;
  background-color: var(--gold);
  color: var(--black);
  padding: 0.75rem;
  font-family: var(--font-subhead);
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

button[type="submit"]:hover {
  background-color: white!important;
}




/* ========== FOOTER ========== */
.site-footer {
  background-color: white;
  color: var(--gray-dark);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1em 2em;
  flex-wrap: wrap;
}

.footer-icons {
    padding-right: 8.5rem;
}

.footer-icons img {
  width: 36px;
  margin-left: 0.5em;
  display: inline-block;
}

.fixed-cta {
  position: fixed;
  bottom: 10px;
  right: 20px;
  z-index: 999;
  display: inline-block;
  padding: 0.6em 1.2em;
  background-color: var(--sandstone);
  color: var(--ivory);
  border: 1px solid var(--ivory);
  text-align: center;
  cursor: pointer;
  font-weight: 100;
  transition: all 0.2s ease;
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.fixed-cta:hover {
  background-color: var(--ivory);
  color: var(--mocha);
  border-color: var(--mocha);
}

/*Fallback page*/
.fallback-content {
  background-image: url('../assets/lightsLight.png'); /* or whichever blush one you used before */
  background-size: cover;
  background-position: center;
  padding: 5rem 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 80vh;
}

.error-dialogue {
  background-color: var(--contrast-dark);
  padding: 2rem;
  border: 5px solid var(--gray-medium);
  border-radius: 15px;
  max-width: 600px;
  width: 100%;
  text-align: center;
  color: white;
  box-shadow: 0 0 20px rgba(0,0,0,0.3);
  position: relative;
}

.error-dialogue p {
  margin-bottom: 1rem;
  line-height: 1.5;
}

.error-dialogue a {
  color: var(--gold);
  text-decoration: underline;
}

.error-dialogue .btn.gold {
  margin-top: 1rem;
  padding: 0.75rem 2rem;
  border: 2px solid white;
  font-weight: 600;
}

.fixed-cta {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
}










/* ========== MEDIA QUERIES FOR MOBILE ========== */
@media (max-width: 768px) {
  .hero-overlay h1 {
    letter-spacing: 0.2em;
    font-size: 2rem;
    margin-bottom: 1em;
  }
  .pitch {
    flex-direction: column;
    height: auto;
  }

  .pitch-left,
  .pitch-right {
    flex: 1;
    padding: 0;
  }

  .pitch-right {
    height: auto;
  }

  .drink-shot {
    height: auto;
    max-height: 400px; /* or whatever works cleanly */
  }

  .fixed-cta {
    font-size: 0.75rem;
  }

  .testimonial blockquote {
  font-size: 1.2rem;
  width: 80%;
}

.quotes-img {
  width: 50px;
}

.pitch-left {
  padding: 10px;
}

.pitch-left p {
  width: 90%;
}

.cheers-img {
  margin: 0 auto;
  max-height: 100px;
  padding: 0;
  width: auto;
}

footer p {
  font-size: 0.5em;
}

.footer-icons {
    padding-right: 8.5rem;
}

.footer-icons img {
  width: 25px;
  margin-left: 0.5em;
  display: inline-block;
}

}

/*FOR GALLERY*/
@media (max-width: 900px) {
  .gallery-grid {
    column-count: 2;
  }
}

@media (max-width: 600px) {
  .gallery-grid {
    column-count: 1;
  }
}


/*==== NAV-SPECIFIC ====*/

/* Show hamburger on small screens */
@media screen and (max-width: 768px) {
  .hamburger {
    display: block;
  }

  .main-nav ul {
    flex-direction: column;
  }
}

/*hide nav links on mobile*/
@media screen and (max-width: 768px) {
  #nav-links {
    display: none;
    flex-direction: column;
    gap: 1rem;
    background-color: white;
    padding: 1rem;
    position: absolute;
    top: 100%;
    right: 0;
    z-index: 100;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  }

  #nav-links.nav-open {
    display: flex;
  }

  .hamburger {
    display: block;
  }

  .main-nav ul {
    flex-direction: column;
  }

  .nav-container {
    justify-content: space-between;
  }

  .nav-container img.logo {
    max-width: 200px;  /* or whatever looks good */
    height: auto;
    margin: 0;
  }

  .site-header {
  background: white;
  padding: 1em;
  display: flex;
  justify-content: space-between;
  /*align-items: center;*/
  position: relative;
  flex-wrap: wrap;
  z-index: 1000;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  /*align-items: center;*/
  width: 100%;
}


}

/*==== EXTRA SMALL SCREENS ====*/
/*320px - smallest viewport*/

@media screen and (max-width: 525px) {
  .hero {
    height: 300px;
  }

  .quote-slideshow {
  height: 275px;
  margin: 0 auto;
}

.site-footer {
  padding: 1em;
}

  .footer-icons img {
  width: 20px;
  margin-left: 0.4em;
}
.services-page {
  padding: 0;
}

.service-section h2, .service-section span.bottom-section {
  letter-spacing: 0.5rem;
  font-size: 2rem;
  padding: 10px;
}

.disclaimer, .disclaimer-bottom {
  padding: 10px;
}

.service-card h3, .service-card p, .service-card p.list-heading, .service-card li {
  line-height: 1.3rem;
}

 .service-card p.price {
  line-height: 1.5rem;
  font-size: 0.9rem;
 }

.service-card input[type="checkbox"] {
  position: absolute;
  top: 10px;
  left: 45px;
  transform: scale(1.25);
  z-index: 10;
  cursor: pointer;
}

}

/* About Mobile Styles */
@media (max-width: 768px) {
  .about-page {
    padding: 0;
    /*background-attachment: scroll;*/
  }

  .content-wrapper {
    width: 100%;
    padding: 0;
  }

  .tagline {
    font-size: 1.5rem;
    line-height: 1.4em;
    margin: 2rem 0;
  }

  .bio-block {
    flex-direction: column;
    align-items: center;
    gap: 20px;
    /*margin-bottom: 3rem;*/
    /*padding: 20px;*/
  }

  .bio-media,
  .bio-text {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .bio-block .bio-card {
    padding: 1.5rem;
    width: 100%;
  }

  .bio-media img {
    width: 100%;
    height: auto;
    /*max-height: 300px;*/
    object-fit: cover;
    border-radius: 4px;
  }

  .bio-media video {
    width: 300px;
    height: 300px;
    max-height: 300px;
    object-fit: cover;
    border-radius: 4px;
  }

  .bio-card h3 {
    font-size: 1.75rem;
    letter-spacing: 0.2rem;
  }

  .bio-card p {
    font-size: 1rem;
    letter-spacing: 0.05rem;
    line-height: 1.5em;
  }

  .bio-card p.signature {
    font-size: 1.25rem;
    margin-top: 1rem;
  }

  .signature span {
    font-size: 1rem;
  }
}
