@import "header.css";

/* league-spartan-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'League Spartan';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/league-spartan/league-spartan-v11-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* inter-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'inter';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/inter/inter-v18-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}


:root {
    --cassiopeia-font-family-headings: 'League Spartan', Arial, Verdana, sans-serif;
    --cassiopeia-font-family-body: 'inter', Verdana, Arial,sans-serif;
    --cassiopeia-font-size-headings: 3rem;
    --body-line-height: 150%;
    --body-font-size: 1rem;
    --cassiopeia-color-primary: #242831;
    --cassiopeia-color-link: #005e88;
    --cassiopeia-color-hover: #00354d;
    --bs-orange: #f17020;
  }

h1 .h1 {
  font-family: var(--cassiopeia-font-family-headings);
  line-height: 160%;
  font-size: var(--cassiopeia-font-size-headings);
}

h3, .h3 {
  font-weight: normal !important;
}

.bg-primary {
  background-color: #645f4e !important;
}
.blocktext {
    text-align: justify;
}

/*--------------------  orange button ---------------- */
.btn-secondary {
  background-color: var(--bs-orange);
  border: 1px solid transparent;
  font-weight: bold !important;
  border-radius: 0.25rem;
  transition: background-color 0.3s ease;
}
.btn-secondary a {
  color: black;
  text-decoration: none;
}
.btn-secondary:hover {
  border: 1px solid white;
  background-color: color-mix(in srgb, var(--bs-orange) 80%, white);
}

/* ------------- container ---------- */
.container {
    padding-top: 6em;
    padding-bottom: 6em;
}
@media (max-width: 768px) {
  .container {
    padding: 1rem;
  }
}
@media (max-width: 768px) {
  .container,
  .container-ruth {
    padding: 2rem;
  }
}


.container-ruth {
  padding: 4rem 20vW 0 20vW;
	font-size: 1.2rem;
	line-height: 150%;
  }

.container-book {
    padding: 4rem 20vW;
}

.container-what {
    padding: 2rem 10vW;
}

  .container-what h2 {
    padding: 4rem 0;
    text-align: center;
  }
.footer {
  border: none;
  color: #fff;
  background-color: var(--bg-primary) !important;
  background-image: none;
  margin: 0;
}
	/* ---------------  zoom-image -------------------*/
   .zoom-image {
	  overflow: hidden;
	  min-width: 100%;
	  width: 100%;
	  height: auto;
	  margin: 0 0 2rem 0;
    box-shadow: 8px 8px 24px 0px rgba(66, 68, 90, 1);
	}
	.zoom-image img {
    transition: all 1s ease;
	} 
	.zoom-image:hover img {
	  transform: scale(1.05);
	}

  
/*------------------  testimonials --------------- */

  .testimonial-text {
    text-align: center;
    padding: 3rem;
    font-style: italic;
    font-size: 1.1rem;
    line-height: 1.5;
    color: var(--cassiopeia-color-primary);
  }
 .testimonial-name{
    margin: 2rem auto;
    color: #676666;
  }

