/*
 * This is a manifest file that'll be compiled into application.css.
 *
 */

html {
      scroll-behavior: smooth;
    }
	
	
p {
  margin-bottom: 1em;
  /* Slight bump to default body copy (was 16px). This rule is unlayered, so
     it also overrides Tailwind's text-* utilities on <p>; step a paragraph
     up with .hero-lead (below) or another unlayered class, not text-lg. */
  font-size: 1.0625rem; /* 17px */
  line-height: 1.55;
  text-align: left;
}

/* Hero intro paragraph — an extra step up from the bumped body default. */
.hero-lead {
  font-size: 1.25rem; /* 20px */
  line-height: 1.6;
}

blockquote {
  margin: 1.5em 0;
  padding: 1em;
  border-left: 5px solid #ccc;
  font-style: italic;
  background-color: #f9f9f9;
}

blockquote p {
  display: inline; /* Keeps nested p elements inline with blockquote */
}

.inchup {
  position: relative;
  top: -8px; /* Moves the element up by 10 pixels from its original position */
}

div img { padding-bottom: 0.25em; }

/* Force center all images in content area */
.content img {
  display: block !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

.content figure,
.content div {
  text-align: center !important;
}

h1 {
	font-size: x-large;
}

h2 {
	font-size: x-large;
}

h3 {
	font-size: large;
}

h4 {
	font-size: normal;
}

/* Animated Page Title Animations */
@keyframes fadeInSlideUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulseSubtle {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.8;
  }
}

.animate-fade-in-slide-up {
  animation: fadeInSlideUp 0.8s ease-out forwards;
}

.animate-pulse-subtle {
  animation: pulseSubtle 3s ease-in-out infinite;
}