/*!
 * Created By Michael Wright
 * Date 6/24/2025
 * This is CSS intended for text and general page layout
 */

@import url('https://fonts.googleapis.com/css2?family=Great+Vibes&display=swap');


/* ----------------------- */
/* Mobile default (<768px) */
/* ----------------------- */

html {
  margin: 0;
  padding: 0;
  height: 100%;
  background: linear-gradient(
    to right,
    #E7E7E7 0%,
    #F9FAFB 10%,
    #F9FAFB 90%,
    #E7E7E7 100%
  );
}

body {
  font-family: Arial, Helvetica, sans-serif;
  margin: 0;
  padding: 0;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: #2563EB;
  color: white;
  padding: 2rem;
  text-align: center;
}

main {
  flex: 1;
  margin-top: 140px;
}

p {
  line-height: 1.8;
  text-align: center;
}

img {
  display: flex;
  width: 100%;
  height: auto;
  border-radius: 8px;
  align-items: center;
}

.wrapper {
  height: 100vh;
  display: flex;
  flex-direction: column;
}

.hero {
  padding: 1rem 1rem;
  text-align: center;
  background-color: #DBEAFE;
}

.hero h1 {
  font-family: 'Great Vibes', cursive;
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 0px;
}

.hero h2 {
  font-family: 'Times New Roman';
  font-size: 1.75rem;
  margin: 0px;
}

.hero h3 {
  font-family: 'Assistant', 'Myriad Hebrew Cursive', serif;
  font-size: 1.8rem;
  margin-top: 0px;
}

.btn {
  display: inline-block;
  background-color: #2563EB;
  color: white;
  padding: 0.75rem 1.5rem;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
}

blockquote {
  font-family: 'Great Vibes', cursive;
  font-size: 1.5rem;
  border-left: 4px solid #2563EB;
  padding: .5rem;
}

footer {
  background-color: #1F2937;
  color: white;
  text-align: center;
  padding: 1rem;
  margin-top: 3rem;
}

/* -------LAYOUT--------- */

.three-column-layout {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding: 1rem;
  margin: auto;
  max-width: 100%;
}

.column {
  box-sizing: border-box;
  flex: 1 1 100%;
}

/* ---------------------- */
/* Tablet and up (≥768px) */
/* ---------------------- */
@media (min-width: 768px) {
  .three-column-layout {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1000px;
    padding: 2rem;
  }

  .left-column,
  .center-column,
  .right-column {
    flex: 1 1 100%; /* allow them to shrink/grow equally */
    max-width: 100%; 
  }

  /* Adjust quote alignment back */
  .right-column blockquote {
    text-align: left;
    border-left: 4px solid #2563EB;
    border-top: none;
    padding-left: 1rem;
    padding-top: 0;
  }
}

/* ---------------------- */
/*    Desktop (≥1200px)   */
/* ---------------------- */
@media (min-width: 1200px) {
  .three-column-layout {
    flex-wrap: nowrap;
    justify-content: center;
  }

  .left-column  { flex: 0 0 28%; }
  .center-column { flex: 0 0 38%; }
  .right-column  { flex: 0 0 28%; }

  .contentcentered {
    max-width: 900px;
    margin: auto;
    justify-content: center;
  }

  .center80 {
    max-width: 80%;
    margin: auto;
    justify-content: center;
  }

  img {
  width: 80%;
  margin: auto;
  }
}