/*!
Theme Name: Book Website
Author:Ian R Monk
Author URI: 
Description: 
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: aptech
*/
/* Content
--------------------------------------------- */
html, body {
  font-size: 16px;
  line-height: 1.5rem;
  font-family: proxima-nova, sans-serif;
  color: #333333;
  font-weight: 400;
  font-style: normal;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  clear: both;
  font-family: proxima-nova, sans-serif;
  margin-top: 0;
  font-weight: 800;
  color: inherit;
}

h1 {
  font-size: 2.25rem;
  line-height: 2.5rem;
  text-transform: uppercase;
  padding-bottom: 14px;
  background: transparent url("img/orange-bar.webp") no-repeat left bottom;
}
h1.has-text-align-center {
  background-position: center bottom;
}

h2 {
  font-size: 1.75rem;
  line-height: 2rem;
  text-transform: uppercase;
  padding-bottom: 14px;
  background: transparent url("img/orange-bar.webp") no-repeat left bottom;
  margin-bottom: 0px;
}
h2.has-text-align-center {
  background-position: center bottom;
}

button,
a.button,
.wp-element-button {
  appearance: none;
  border: none;
  font-family: proxima-nova, sans-serif;
  text-transform: uppercase;
  font-weight: 800;
  background: #bf2e02;
}

.invalid-feedback,
.empty-feedback {
  display: none;
  color: #cc612d;
}

.was-validated :placeholder-shown:invalid ~ .empty-feedback {
  display: block;
}

.was-validated :not(:placeholder-shown):invalid ~ .invalid-feedback {
  display: block;
}

.is-invalid,
.was-validated :invalid {
  border-color: #cc612d;
}

form {
  padding: 0;
  width: 100%;
}
form p#result {
  margin-top: 1rem;
  color: #fff;
  height: 1rem;
  line-height: 1rem;
}

.form-item {
  margin-bottom: 1.25rem;
}

input[type=text],
input[type=email],
input[type=url],
input[type=password],
input[type=search],
input[type=number],
input[type=tel],
input[type=range],
input[type=date],
input[type=month],
input[type=week],
input[type=time],
input[type=datetime],
input[type=datetime-local],
input[type=color],
textarea {
  background: #fff;
  font-size: 1rem;
  border: none;
  border-radius: 12px;
  transition: 0.5s;
  padding: 1.25rem;
  box-sizing: border-box;
  color: #333333;
}
input[type=text]:focus,
input[type=email]:focus,
input[type=url]:focus,
input[type=password]:focus,
input[type=search]:focus,
input[type=number]:focus,
input[type=tel]:focus,
input[type=range]:focus,
input[type=date]:focus,
input[type=month]:focus,
input[type=week]:focus,
input[type=time]:focus,
input[type=datetime]:focus,
input[type=datetime-local]:focus,
input[type=color]:focus,
textarea:focus {
  outline: none;
  box-shadow: 0px 0px 15px rgba(249, 166, 0, 0.8);
}
input[type=text]::placeholder,
input[type=email]::placeholder,
input[type=url]::placeholder,
input[type=password]::placeholder,
input[type=search]::placeholder,
input[type=number]::placeholder,
input[type=tel]::placeholder,
input[type=range]::placeholder,
input[type=date]::placeholder,
input[type=month]::placeholder,
input[type=week]::placeholder,
input[type=time]::placeholder,
input[type=datetime]::placeholder,
input[type=datetime-local]::placeholder,
input[type=color]::placeholder,
textarea::placeholder {
  color: #333333;
  font-weight: 400;
  font-style: italic;
}

input[type=text],
input[type=email],
input[type=url],
input[type=password],
textarea {
  width: 100%;
  padding: 1em;
}

button[type=submit] {
  background-color: #bf2e02;
  border: none;
  border-radius: 25px;
  font-size: 18px;
  padding: 16px 50px;
  line-height: 18px;
  transition: 0.5s;
  padding: 20px 60px;
  box-sizing: border-box;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #fff;
}
button[type=submit]:hover {
  background-color: #cc612d;
  cursor: pointer;
}

select {
  background: #fff;
  border: 1px solid #DEC3B1;
  border-radius: 4px;
  transition: 0.5s;
}
select:focus {
  border: 1px solid #cc612d;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
  outline: none;
}

textarea {
  width: 100%;
  height: 6em;
}

label {
  display: none;
}

/* Navigation */
#masthead {
  width: 100%;
  position: fixed;
  background: transparent;
  display: flex;
  padding: 20px 0;
  top: 0;
  z-index: 99;
  box-sizing: border-box;
  transition: all 0.5s ease-in-out;
}
#masthead .site-branding {
  flex-basis: 100%;
  height: 40px;
  background: transparent url("img/logo.svg") no-repeat center center;
  background-size: auto 100%;
}
@media screen and (min-width: 782px) {
  #masthead .site-branding {
    flex-basis: 272px;
    height: 40px;
  }
}
@media screen and (min-width: 992px) {
  #masthead .site-branding {
    flex-basis: 340px;
    height: 50px;
  }
}
#masthead .main-navigation {
  display: none;
  flex-direction: row;
  gap: 1rem;
  justify-content: flex-end;
  flex-grow: 1;
}
@media screen and (min-width: 782px) {
  #masthead .main-navigation {
    display: flex;
  }
}
#masthead .main-navigation a {
  font-size: 14px;
  line-height: 40px;
  width: auto;
  height: 40px;
  border-radius: 20px;
  padding: 0 16px;
  text-align: center;
  background: #42210b;
  color: #ffc68d;
  text-decoration: none;
}
#masthead .main-navigation a.active {
  color: #333333;
  background: #ffc68d;
}
@media screen and (min-width: 992px) {
  #masthead .main-navigation a {
    font-size: 18px;
    line-height: 46px;
    height: 46px;
    border-radius: 23px;
    padding: 0 24px;
  }
}
#masthead.scrolled {
  background: #6f2d11;
}
@media screen and (min-width: 782px) {
  #masthead {
    padding: 20px;
  }
}

body.logged-in #masthead {
  top: 32px;
}

/* Content */
body {
  background: #f3f3f3;
  margin: 0px;
  color: #333333;
}

div, ul, li, span {
  box-sizing: border-box;
}

.wp-block-cover {
  padding-top: 80px;
}

.wp-block-columns {
  padding: 20px 5%;
  margin: 0;
}
@media screen and (min-width: 782px) {
  .wp-block-columns {
    padding: 30px 6%;
  }
}
@media screen and (min-width: 992px) {
  .wp-block-columns {
    padding: 40px 7.5%;
  }
}
@media screen and (min-width: 1200px) {
  .wp-block-columns {
    padding: 40px 9%;
  }
}
@media screen and (min-width: 1400px) {
  .wp-block-columns {
    padding: 40px 11%;
  }
}
.wp-block-columns#author .wp-block-columns {
  padding: 35px 35px 20px;
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}
@media screen and (min-width: 1200px) {
  .wp-block-columns#author .wp-block-columns {
    border-radius: 36px;
    padding: 50px 50px 40px;
  }
}
.wp-block-columns#works {
  background: #49372a;
  color: #fff;
}
.wp-block-columns#works .wp-block-column.align-center {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.wp-block-columns#works .wp-block-columns {
  max-width: 992px;
  padding: 35px;
  border-radius: 20px;
  background: #f2f2f2;
}
.wp-block-columns#works .wp-block-columns img {
  border-radius: 0;
}
.wp-block-columns#works .wp-block-columns {
  padding: 35px 35px 20px;
  margin-bottom: 30px;
}
.wp-block-columns#contact {
  background: #49372a;
  color: #fff;
}
.wp-block-columns#contact .wp-block-column.align-center {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.wp-block-columns#contact .wp-block-columns {
  max-width: 992px;
  padding: 0px;
  width: 100%;
}

.wp-block-image {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.wp-block-image img {
  border-radius: 20px;
}

#benefits .wp-block-kadence-accordion {
  padding: 35px;
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}
@media screen and (min-width: 1200px) {
  #benefits .wp-block-kadence-accordion {
    border-radius: 36px;
    padding: 50px;
  }
}
#benefits .wp-block-kadence-accordion .wp-block-kadence-pane {
  margin-bottom: 8px;
}
#benefits .wp-block-kadence-accordion .wp-block-kadence-pane .kt-accordion-header-wrap .kt-blocks-accordion-header {
  padding: 20px;
  border-radius: 8px;
  text-transform: uppercase;
}

.site-footer {
  background: #49372a;
  text-align: center;
  color: #999;
  padding: 20px;
}
.site-footer p {
  margin: 0;
}

/* Accessibility
--------------------------------------------- */
/* Text meant only for screen readers. */
.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute !important;
  width: 1px;
  word-wrap: normal !important;
}
.screen-reader-text:focus {
  background-color: #fff;
  border-radius: 3px;
  box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
  clip: auto !important;
  clip-path: none;
  color: #000;
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000;
}

/* Do not show the outline on the skip link target. */
#primary[tabindex="-1"]:focus {
  outline: 0;
}
