/* Kasey Corsello main CSS file */ 

@import url(reset.css);

/* Variables */
:root {
  /* For forming gradients */
  --blue1: rgba(43,87,117);

  /* Pastel Backgrounds */
  --lavender-bg: rgba(224, 209, 255, 1);
  --mint-bg: rgba(205, 240, 220, 1);
  --peach-bg: rgba(255, 225, 205, 1);
  --sky-bg: rgba(210, 230, 250, 1);
  --butter-bg: rgba(255, 245, 205, 1);

  /* Matching Text / Accent Colors */
  --lavender-text: rgba(45, 45, 60, 1);
  --mint-text: rgba(30, 90, 75, 1);
  --peach-text: rgba(150, 70, 40, 1);
  --sky-text: rgba(35, 60, 110, 1);
  --butter-text: rgba(85, 55, 25, 1);

  /* Logo Background */
  --logo-match: rgb(249, 230, 212);

  /* Behind large top text box */
  --bgoverlay: rgba(255, 255, 255, 0.3);
}

/* CSS references for colors, to use in iterations */
.color_1 {
  background: var(--lavender-bg);
  color: var(--lavender-text);
}

.color_2 {
  background: var(--mint-bg);
  color: var(--mint-text);
}

.color_3 {
  background: var(--peach-bg);
  color: var(--peach-text);
}

.color_4 {
  background: var(--sky-bg);
  color: var(--sky-text);
}

.color_5 {
  background: var(--butter-bg);
  color: var(--butter-text);
}

/* Universal Styles */
html {
  font-size: 16px;
}

a {
  color: inherit;
}

p {
  font-family: "Poppins", sans-serif;
  line-height: 30px;
  margin-bottom: 15px;
}

strong {
  font-weight: bold;
}

em {
  font-style: italic;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Merriweather Sans", sans-serif;
  font-weight: 400;
}

body {
}

.top-container-bg-image {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 700px;
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
}

  .top-container-bg-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--bgoverlay);
  }

.top-container {
  padding: 50px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: radial-gradient(var(--blue1), #000);
}

  .top-text-box {
    color: white;
    font-family: "Merriweather Sans", sans-serif;
    font-weight: 700;
    font-size: 3rem;
    padding: 70px 0 70px 0;
  }

/* Tiny MCE Styles */
.align_center {
  text-align: center;
}

.align_left {
  text-align: left;
}

.align_right {
  text-align: right;
}

/* Head */
.nav-container {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-around;
  padding: 5px 20px;
  gap: 20px 150px;
  background: var(--logo-match);
}

  .logo {
    width: 200px;
  }

    .logo img {
      max-width: 100%;
    }
  
    .logo a {
    }

  .nav-box {
  }
    
      .nav-box ul {
        display: flex;
        gap: 20px;
        flex-wrap: wrap;
        justify-content: center;
      }
      
        .nav-box ul li {
          font-size: 1.2rem;
        }
        
          .nav-box ul li a {
            color: var(--lavender-text);
            font-family: "Poppins", sans-serif;
          }

            .nav-box ul li a:hover,
            .active {
              border-bottom: 2px solid var(--peach-text);
            }

/* Foot */
.footer_container {
  background-color: #666;
  padding: 20px 10px;
  color: #fff;
}

  .footer_box {
  }

    .footer-social-container {
      display: flex;
      gap: 20px;
      flex-wrap: wrap;
      justify-content: center;
      align-items: center;
    }

      .footer-text-lead {
        font-family: "Poppins", sans-serif;
        font-size: 0.8rem;
        color: #fff;
      }
    
      .footer-social-icon-box {
        width: 35px;
      }

        .footer-social-icon-box img {
          max-width: 100%;
        }

  .designer_box {
    font-family: "Poppins", sans-serif;
    font-size: 0.8rem;
    color: #fff;
    text-align: center;
  }

/* Home */
.home-round-container {
}

  .home-round {
    display: flex;
    gap: 20px 40px;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    padding: 35px;
  }

    .home-round-image {
      width: 300px;
    }
    
      .home-round-image img {
        max-width: 100%;
      }
      
    .home-round-text {
      font-family: "Poppins", sans-serif;
      font-size: 2rem;
      width: 75%;
    }

      .home-round-text p {
        line-height: 40px;
        margin-bottom: 15px;
      }

      .home-round-text a,
      .home-tiled-text a {
        background-color: rgba(60, 179, 113, 0.3);
        padding: 3px 5px;
        border-radius: 10px;
        box-shadow: 1px 1px 10px 2px rgba(0, 0, 0, 0.25);
      }

        .home-round-text a:hover,
        .home-tiled-text a:hover {
          box-shadow: 1px 1px 10px 7px rgba(0, 0, 0, 0.25);
        }

.home-tiled-container {
  display: flex;
  flex-wrap: wrap;
  margin: 50px 0;
  box-shadow: 2px 2px 9px 4px rgba(0, 0, 0, 0.25);
}

  .home-tiled {
    padding: 25px;
    flex: 1;
  }

    .home-tiled p {
      font-family: "Poppins", sans-serif;
      font-size: 1.3rem;
    }

    .home-tiled ul {
      margin: 0 0 15px 45px;
    }

      .home-tiled ul li {
        font-family: "Poppins", sans-serif;
        list-style: disc;
        margin-bottom: 7px;
      }
    
.home-text-video-box {
  background-color: #f6f6f6;
  padding: 50px;  
}

  .home-video-text {
    font-family: "Poppins", sans-serif;
    font-size: 1.3rem;
    font-style: italic;
    color: #333;
  }
  
  .home-video-embed {
    width: 400px;
    margin: 0 auto;
  }

    .home-video-embed iframe {
      margin-top: 15px;
    }

/* Full-Width Text Image Tiles Pages */
.full-width-container {
}

  .full-width-tiled-box {
    padding: 30px;
    display: flex;
    flex-wrap: wrap;
    gap: 0 20px;
    justify-content: center;
    align-items: center;
  }

    .full-width-text {
      width: 80%;
    }

      .full-width-text p,
      .partial-width-text p {
        font-size: 1.3rem;
      }
    
    .partial-width-photo {
    }
    
      .partial-width-photo img {
        max-width: 300px;
      }
      
    .partial-width-text {
      width: 75%;
    }

      .partial-width-text a {
        background-color: rgba(60, 179, 113, 0.3);
        padding: 3px 5px;
        border-radius: 10px;
        box-shadow: 1px 1px 10px 2px rgba(0, 0, 0, 0.25);
      }

      .partial-width-text a:hover {
        box-shadow: 1px 1px 10px 7px rgba(0, 0, 0, 0.25);
      }

      .full-width-text ul li,
      .partial-width-text ul li {
        font-family: "Poppins", sans-serif;
        list-style: disc;
        margin-left: 30px;
        margin-bottom: 10px;
      }

  .full-width-video-box {
    background-color: #f6f6f6;
    padding: 50px;
  }
  
    .full-width-video-text {
      font-family: "Poppins", sans-serif;
      font-size: 1.3rem;
      font-style: italic;
      color: #333;
    }
    
    .full-width-video-embed {
      width: 400px;
      margin: 0 auto;
    }

      .full-width-video-embed iframe {
        margin-top: 15px;
      }

/* Success Stories */
.success-stories-container {
  background-color: #f6f6f6;
}

  .success-stories-quote-container {
    margin-top: 20px;
  }

  .success-story-quote-box {
    font-family: "Poppins", sans-serif;
    margin: 50px auto 20px auto;
    width: 85%;
    border-radius: 10px;
    font-size: 1.2rem;
    border: 1px solid #ccc;
    padding: 10px;
    box-shadow: 3px 3px 10px 3px rgba(0, 0, 0, 0.25);
  }

    .success-story-start-quote {
      height: 50px;
      background-image: url('images/quote-mark-1-start.svg');
      background-repeat: no-repeat;
      background-position: left;
    }
  
    .success-story-quote {
      
    }

      .success-story-quote p {
        margin-top: 20px;
      }

      .success-story-quote ul {
      }

      .success-story-quote ul li {
        list-style-type: disc;
        margin-left: 30px;
      }
    
    .success-story-source {
      font-weight: 700;
      font-style: italic;
      margin-top: 20px;
      font-size: 1.3rem;
    }

    .success-story-end-quote {
      height: 50px;
      background-image: url('images/quote-mark-1-end.svg');
      background-repeat: no-repeat;
      background-position: right;
    }

/* Media */
.media-container {
}
      .media-icon-container {
        display: flex;
        gap: 40px;
        flex-wrap: wrap;
        justify-content: center;
        width: 80%;
        margin: 50px auto 50px auto;
      }

        .media-icon-box {
          width: 150px;
        }

          .media-icon-box img {
            max-width: 100%;
          }

/* Contact */
.contact-container {
}

  .contact-form-container {
    width: 90%;
    margin: 0 auto 50px auto;
  }

    .contact-form-inner-container {
      margin: 50px auto 20px auto;
      width: fit-content;
      border-radius: 10px;
      border: 1px solid #ccc;
      padding: 30px;
      box-shadow: 3px 3px 10px 3px rgba(0, 0, 0, 0.25);
    }
  
      .contact-form-container form {
        margin-top: 30px;
      }

        .contact-form-intro {
          font-family: "Poppins", sans-serif;
          margin-bottom: 10px;
          font-weight: 500;
          font-size: 1.1rem;
        }
      
        .form-row {
          margin-bottom: 25px;
        }
        
          .contact-textbox {
            height: 30px;
            width: 300px;
            border-bottom: 2px solid #ccc;
            border-top: none;
            border-left: none;
            border-right: none;
            padding: 5px;
            font-family: "Poppins", sans-serif;
            font-size: 1.1rem;
          }

            .contact-textbox:focus {
              outline: none;
              border-bottom: 2px solid #ccc;
              border-top: none;
              border-left: none;
              border-right: none;
            }
        
          .contact-textarea {
            outline: none;
            height: 100px;
            width: 300px;
            border: 2px solid #ccc;
            padding: 5px;
            font-family: "Poppins", sans-serif;
            font-size: 1.1rem;
          }

            .contact-textarea:focus {
              border: 2px solid #ccc;
            }
          
          .contact-submit {
            border: 1px solid #ccc;
            border-radius: 10px;
            font-family: "Poppins", sans-serif;
            font-size: 1.3rem;
            background: none;
            padding: 7px 12px;
            cursor: pointer;
          }

            .contact-submit:hover {
              border: 1px solid var(--lavender-bg);
              border-radius: 10px;
              background: var(--lavender-bg);
              color: var(--lavender-text);
              padding: 7px 12px;
              cursor: pointer;
            }

  .contact-error-box {
    border: 1px solid red;
    text-align: center;
    margin-bottom: 15px;
  }

    .contact-error-box p {
      color: red;
      font-size: 0.8rem;
      margin-bottom: 0;
    }

/* Contact Success */
.contact-success-container {
  margin: 50px auto;
  width: fit-content;
  border-radius: 10px;
  border: 1px solid #ccc;
  padding: 30px;
  box-shadow: 3px 3px 10px 3px rgba(0, 0, 0, 0.25);
}

  .contact-success-text {
    font-family: "Poppins", sans-serif;
    font-size: 1.3rem;
  }