.lato-regular {
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.lato-bold {
  font-family: "Lato", sans-serif;
  font-weight: 700;
  font-style: normal;
}

body{
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-style: normal;
}

#header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    padding:20px 0;
  }
  
  #logo {
    text-decoration: none;
    color: white;
    font-size: 5vh;
    font-weight: bold;
  }
    
  #menu-icon {
    font-family: Geneva, sans-serif;
    font-size: 6vh;
  }
    
  #quotes{
    padding:0;
  }

  .heroout {
    background: url(./images/hero15.webp) top center no-repeat;
    background-size: cover;
  }
  /* @media all and (min-width: 1100px) {
    .heroout {
      background: url(./images/hero14.png) top center no-repeat;
      background-size: cover;
    }
  } */
  
  .heroout {
    position: relative;
    z-index: 0; /* Ensure the container has a stacking context but doesn't need to be higher than its content */
    height: 100vh;
    overflow: hidden;
  }
  @media (max-width: 768px) { /* Adjust the max-width as needed */
    .heroout {
      height: -webkit-fill-available;
    }
  }
  
  .heroout::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.65); /* Adjust the opacity as needed */
    z-index: -1; /* Place the overlay behind the container's content */
  }
  .heroin{
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 1em;
    padding-bottom: 3em;
    box-sizing: border-box;
    color: white;
  }
  
  .hero-title {
    max-width: 14em;
    margin: 0;
    font-size: 2rem;
    font-family: "Lato", sans-serif;
    font-weight: 700;
    font-style: normal;
    line-height: 1.1;
  }
    
    @media only screen and (min-width: 32em) { .hero-title { font-size: 2.5rem; } } 
  
  .hero-footer {
    display: flex;
    margin-bottom: 1em;
  }
  
  .button {
    padding: .5em .67em;
    font-size: larger;
    color: white;
    text-decoration: none;
    border: .1em solid white;
    transition: background-color 0.2s, transform 0.1s; /* Smooth transition for hover and active effects */
    border-radius: 0 10px 10px 0;
  }
  
.button:hover {
  /* background-color: #0056b3;  */
  transform: scale(1.02); /* Slightly enlarge the button */
}

.button:active {
  /* background-color: #004494; */
  transform: scale(0.98); /* Slightly shrink the button on click */
}
    
    .button-primary {
      color: black;
      background-color: white;
      transition: color 0.2s, background-color 0.2s, box-shadow 0.2s, transform 0.1s;
      border-radius: 10px 0 0 10px;
    }
    .button-primary:hover {
      color: white;
      background-color: black; /* Invert colors on hover */
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Add shadow for depth */
      transform: scale(1.02); /* Slightly enlarge the button */
    }
    
    .button-primary:active {
      background-color: #333; /* Darker gray for active state */
      color: #ddd;
      box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2); /* Slightly less shadow */
      transform: scale(0.98); /* Slightly shrink the button on click */
    }
    

    .navbar-collapse, nav{
      position: absolute;
      right:20px;
      z-index:2;
    }

    #hero{
      background: url(./images/hero6.webp) center center no-repeat;
      background-size: cover;
    }

    /* Quote */
    /* body { 
      background-color: #292a2b;
     } */
    
    /* center the blockquote in the page */
    .blockquote-wrapper {
       display: flex;
       /* height: 100vh; */
       padding: 0 0px;
    }
    
    /* Blockquote main style */
    .blockquote {
        position: relative;
        font-family: 'Barlow Condensed', sans-serif;
        max-width: 620px;
        margin: 80px 0;
        margin-top:100px;
        align-self: center;
    }
    .heroin .blockquote{
      max-width: 55ch;
    }
    /* Blockquote header */
    .blockquote h2 {
        
        font-weight: 550;
        font-style: normal;
        letter-spacing: .12rem;
        
        position: relative; /* for pseudos */
        color: #e74848;
        color:#f15a22;
        font-size: 1.5rem;
        line-height: 1.4;
        margin: 0;
        border: 2px solid #fff;
        border: solid 2px;
        border-radius:20px;
        padding: 25px;
    }
    
    /* Blockquote right double quotes */
    .blockquote h2:after {
        content:"";
        position: absolute;
        /* border: 2px solid #e74848; */
        border: 2px solid #f15a22; 
        border-radius: 0 50px 0 0;
        width: 60px;
        height: 60px;
        bottom: -62px;
        left: 50px;
        border-bottom: none;
        border-left: none;
        z-index: 3; 
    }
    
    .blockquote h2:before {
      content: "";
      position: absolute;
      width: 80px; 
      height: 6px; 
      background: transparent; /* Intended to 'erase', but needs matching the underlying pattern */
      bottom: -3px; /* Position adjustment */
      left: 50px; /* Position adjustment */
      z-index: 2;
    }
    
    /* increase header size after 600px */
    /* @media all and (min-width: 600px) {
        .blockquote h1 {
            font-size: 2rem;
            line-height: 1.2;
       }
    
    } */
    
    /* Blockquote subheader */
    .blockquote h4 {
        position: relative;
        color: #ffffff;
        font-size: 1.25rem;
        font-weight: 400;
        line-height: 1.2;
        margin: 0;
        padding-top: 15px;
        z-index: 1;
        margin-left:150px;
        padding-left:12px;
    }
    
     
    .blockquote h4:first-letter {
      margin-left:-12px;
    }

    #hero{
      padding-top:0;
    }

    /* Blockquotes in quotes section */


    #quotes .blockquote-custom {
      position: relative;
      font-size: 1.1rem;
      margin: 40px auto;
    }
    
    .blockquote-custom-icon {
      width: 50px;
      height: 50px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      position: absolute;
      top: -25px;
      left: 50px;
    }

    #quotes h2{
      color:white;
    }
    .blockquote-custom-icon{
      color: white;
      background-color:#f15a22;
    }
    
    /* Gradient anim for quotes section */
   #quotes {
      background: linear-gradient(140deg, #1b365d, #273447, #b0c0d7);
      background-size: 600% 600%;
  
      -webkit-animation: quotesanim 30s ease infinite;
      -moz-animation: quotesanim 30s ease infinite;
      -o-animation: quotesanim 30s ease infinite;
      animation: quotesanim 30s ease infinite;
  }
  
  @-webkit-keyframes quotesanim {
      0%{background-position:84% 0%}
      50%{background-position:17% 100%}
      100%{background-position:84% 0%}
  }
  @-moz-keyframes quotesanim {
      0%{background-position:84% 0%}
      50%{background-position:17% 100%}
      100%{background-position:84% 0%}
  }
  @-o-keyframes quotesanim {
      0%{background-position:84% 0%}
      50%{background-position:17% 100%}
      100%{background-position:84% 0%}
  }
  @keyframes quotesanim {
      0%{background-position:84% 0%}
      50%{background-position:17% 100%}
      100%{background-position:84% 0%}
  }

  /* For book on first hero */
.heroin .card img{
  box-shadow: rgba(255, 255, 255, 0.3) 0px 20px 30px;
}