/*-- -------------------------- -->
<---        Core Styles         -->
<--- -------------------------- -*/

/* amaranth-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: 'Amaranth';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/amaranth-v18-latin-regular.woff2') format('woff2'), /* Chrome 36+, Opera 23+, Firefox 39+ */
         url('../fonts/amaranth-v18-latin-regular.woff') format('woff'); /* Chrome 5+, Firefox 3.6+, IE 9+, Safari 5.1+ */
  }
  /* amaranth-700 - 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: 'Amaranth';
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/amaranth-v18-latin-700.woff2') format('woff2'), /* Chrome 36+, Opera 23+, Firefox 39+ */
         url('../fonts/amaranth-v18-latin-700.woff') format('woff'); /* Chrome 5+, Firefox 3.6+, IE 9+, Safari 5.1+ */
  }

:root {
    --primaryOrange: #FE5D37;
    --primaryGreen: #02B890;
    --headingText: #2D1D54;
    --bodyText: #121212;
    --primaryGray: #2F4858;
    --backgroundYellow: #FFEAC3;
}


body, html {
    margin: 0;
    padding: 0;
    font-family: 'Amaranth', Tahoma, sans-serif;
    font-weight: 400;
    scroll-behavior: smooth;
}

*, *:before, *:after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

h1, h2, h3, h4, p, li, a {
    margin: 0;
}

a:hover,
button:hover {
  cursor: pointer;
}

h1 {
    font-size: clamp(2.4375rem, 6.4vw, 3rem);
}


.button-solid {
    color: #fff;
    border-width: 0px 0px 5px 0px;
    border-radius: 54px;
    padding: 16px 49px 16px 49px;
    border-style: solid;
    text-decoration: none;
    display: inline-block;
    font-size: 22px;
    transition: all 0.3s;
}

.button-solid:hover {
    background-color: #6437d1;
    border-color: #42238C;
}

.button-green {
    background-color: var(--primaryGreen);
    border-color: #009171;
}

.button-orange {
    background-color: var(--primaryOrange);
    border-color: #DD431E;
}

.orange-highlight {
    color: var(--primaryOrange);
}

.green-highlight {
    color: var(--primaryGreen);
}
.skip {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    z-index: -1111111;
}

/*-- -------------------------- -->
<--- Section     -->
<--- -------------------------- -*/

.cs-section {
    padding: clamp(3.75em, 7.82vw, 6.25em) clamp(1rem, 1.5vw, 2rem);
}

.cs-title {
    margin-bottom: 16px;
    font-size: clamp(2rem, 6vw, 4rem);
    color: var(--headingText);
}

.cs-container {
    max-width: 1280px;
    margin: auto;
}
.cs-text {
    color: var(--bodyText);
    font-size: 16px;
    margin-bottom: 16px;
    line-height: 28px;
    opacity: 0.6;
}


@media screen and (min-width: 1024px) {

    .cs-text {
        font-size: 20px;
    }
}


/*-- -------------------------- -->
<---For non home page sections         -->
<--- -------------------------- -*/

/*-- -------------------------- -->
<--- Landing Image         -->
<--- -------------------------- -*/
#int-hero {
    position: relative;
    max-height: 250px;
}

#int-hero picture img {
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    max-height: 250px;
    top: 0px;
    display: block;

}

#int-hero h1 {
    width: 90%;
    text-align: center;
    color: #fff;
    position: absolute;
    top: 50%; right: 50%;
    transform: translate(50%,-50%);
    font-size: 40px;
}

#int-hero:before {
    content: '';
    position: absolute;
    height: 100%;
    width: 100%;
    background: #ff3c11;
    background: var(--primaryGreen);
    opacity: .7;
    top: 0;
    left: 0;
    z-index: 0;
}

@media only screen and (min-width: 600px) {
    #int-hero h1 {
        font-size: 52px;
    }

}
@media only screen and (min-width: 1024px) {
    #int-hero h1 {
        font-size: 64px;
    }
}

/*-- -------------------------- -->
<---          Banner           -->
<--- -------------------------- -*/

.banner {
    width: 100%;
    height: 3rem;
    background: var(--primaryOrange);
    display: none;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    color: #fff;
    transition: height 1s;
}

.summer-camp-cta {
    text-decoration: none;
    color: #fff;
}


@media screen and (min-width: 1024px) {
    .banner {
        display: flex;
    }

}

/*-- -------------------------- -->
<---       CTA                  -->
<--- -------------------------- -*/

#cs-cta {
    background-color: #02B890;
}

#cs-cta .cs-title {
    color: #fff;
}

#cs-cta .cs-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

#cs-cta p {
    max-width: 500px;
    color: #fff;
    opacity: 1;
}

@media only screen and (min-width: 900px) {

    #cs-cta .cs-container {
        display: flex;
        text-align: center;
        justify-content: space-evenly;
        align-items: center;
    }

}





/*-- -------------------------- -->
<---         Navigation         -->
<--- -------------------------- -*/
/* Desktop - Side pop out */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.header {
    display: flex;
    justify-content: center;
    /* box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px; */
    background: var(--backgroundYellow);
}

.header .nav-container {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 25px;
    transition: 0.3s;
    max-width: 1200px;
}

.header .logo a {
    display: block;
}

.header .logo a img {
    display: block;
    height: 125px;
    width: auto;
}


.navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.menu {
    display: flex;
    justify-content: center;
    flex-direction: row;
    align-items: center;
    z-index: 2;
    transition: 0.5s;
}

.menu li {
    list-style-type: none;
}

.cs-nav-button a {
    margin-left: 14px;
}

.cs-li-link {
    color: var(--primaryGray);
    text-decoration: none;
    display: block;
    padding: 20px 10px;
    font-size: 16px;
    line-height: 1;
    transition: 0.3s;
}

#active {
    color: var(--primaryOrange);
}

.cs-li-link:hover {
    color: var(--primaryOrange);
    box-shadow: 0 -5px 0px var(--primaryOrange) inset,
    500px 0 0 rgba(255,255,255,0.03) inset;
}

.hamburger {
    position: relative;
    width: 30px;
    height: 4px;
    background: var(--primaryOrange);
    cursor: pointer;
    z-index: 3;
    transition: 0.3s;
}

.hamburger:before,
.hamburger:after {
    content: "";
    position: absolute;
    height: 4px;
    right: 0;
    background: var(--primaryOrange);
    border-radius: 10px;
    transition: 0.3s;
}

.hamburger:before {
    top: -10px;
    width: 20px;
}

.hamburger:after {
    top: 10px;
    width: 25px;
}

.toggle-menu {
    position: absolute;
    width: 40px;
    height: 40px;
    z-index: 4;
    cursor: pointer;
    opacity: 0;
}

.hamburger,
.toggle-menu {
    display: none;
}

.navigation input:checked ~ .hamburger {
    background: transparent;
}
.navigation input:checked ~ .hamburger:before {
    top: 0;
    transform: rotate(-45deg);
    width: 30px;
}

.navigation input:checked ~ .hamburger:after {
    top: 0;
    transform: rotate(45deg);
    width: 30px;
}

@media screen and (min-width: 1200px) {

    .cs-li-link {
        color: var(--primaryGray);
        text-decoration: none;
        display: block;
        padding: 20px 12px;
        font-size: 18px;
        line-height: 1;
        transition: 0.3s;
    }
}

@media screen and (max-width: 1024px) {
    .header {
        background: #fff;
        box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    }
    .navigation input:checked ~ .menu {
        right: -5px;
        box-shadow: -20px 0px 40px rgba(0,0,0,0.3);
    }
    .phone {
        display: none;
    }

    .cs-nav-button a {
        /* margin-left: 30px; */
        margin-bottom: 1rem;
        margin-top: 1rem;
        box-shadow: 0 1px 0 rgba(0, 0, 0, 0.2) inset;

    }

    .cs-nav-button {
        box-shadow: 0 1px 0 rgba(0, 0, 0, 0.2) inset;
    }
    .header .logo a img {
        height: 100px;
    }

    .hamburger,
    .toggle-menu {
        display: block;
    }

    .hamburger,
    .toggle-menu {
        position: fixed;
        right: 20px;
    }

    .header .nav-container {
        padding: 10px 20px;
        margin-top: 0px;
    }
    .menu {
        justify-content: start;
        flex-direction: column;
        align-items: center;
        position: fixed;
        top: 0;
        right: -300px;
        background: #fff;
        width: 300px;
        height: auto;
        border-radius: 5px;
        padding-top: 85px;
    }
    .menu li {
        width: 100%;
    }
    .cs-li-link,
    .cs-li-link:hover {
        padding: 30px;
        font-size: 24px;
        box-shadow: 0 1px 0 rgba(0, 0, 0, 0.2) inset;
    }
}



/*-- -------------------------- -->
<---          Footer            -->
<--- -------------------------- -*/

#footer {
    font-size: 14px;
}
#footer .container {
    padding: 60px 20px 0px 20px;
    margin: auto;
    position: relative;
    width: 100%;
}

#footer .content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
#footer ul {
    list-style-type: none;
}

#footer h2 {
    color: #FE5D37;
    margin-bottom: 5px;
    margin-top: 10px;
    font-size: 20px;
}
#footer li {
    color: #4E4B66;
    line-height: 24px;
    margin-bottom: 10px;
}


.footer-text {
    color: #4E4B66;
    text-decoration: none;
}

.orange-line-highlight {
    position: relative;
}
.orange-line-highlight:before {
    content: '';
    width: 0%;
    height: 2px;
    background: var(--primaryOrange);
    opacity: 1;
    position: absolute;
    display: block;
    bottom: -0.125rem;
    left: 0;
    transition: width .3s;
}

.orange-line-highlight:hover:before {
    width: 100%;
}

.orange-line-highlight:hover {
    color: var(--primaryOrange);
}

.phone-number{
    color: #4E4B66;
    text-decoration: none;
}

.credit {
    color: #4E4B66;
    text-align: center;
    padding: 30px;
    margin-top: 30px;
    border-top: 1px solid rgba(0, 0, 0, 0.2);
}

.copyright-link {
    text-decoration: none;
    color: #FE5D37;
}

/* .copyright-link:hover {
    text-decoration: underline;
} */

.copyright-link {
    position: relative;
}
.copyright-link:before {
    content: '';
    width: 0%;
    height: 2px;
    background: var(--primaryGreen);
    opacity: 1;
    position: absolute;
    display: block;
    bottom: -0.125rem;
    left: 0;
    transition: width .3s;
}

.copyright-link:hover:before {
    width: 100%;
}

.copyright-link:hover {
    color: var(--primaryGreen);
}

@media only screen and (min-width: 900px) {

    #footer {
        font-size: 16px;
    }

    #footer .top-footer {
        margin-right: auto;
    }
    #footer .container {
        padding-top: 50px;
        max-width: 1180px;
        
    }
    #footer .content {
        flex-direction: row;
        justify-content: space-around;
        margin-bottom: 10px;
        text-align: start;
        align-items: start;
        column-gap: 5.25rem;
    }

    #footer img {
        height: 200px;
        width: auto;
    }

}
/*-- -------------------------- -->
<---     week-text-img                -->
<--- -------------------------- -*/

.child-in-tunnel {
    border: 10.76px solid #fff;
    filter: drop-shadow(0px 2.86px 17.93px rgba(0,0,0,0.25));
    border-radius: 7.13px;
    box-sizing: content-box;
}

.week-text-img .cs-container {
    display: flex;
    flex-direction: column;
    gap: clamp(2rem, 4vw, 4rem);
    align-items: center;
    justify-content: center;
    text-align: center;
    margin: auto;
}
.week-text-img .cs-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.week-text-img .cs-img-content {
    display: none;
}

.week-text-img .cs-picture {
    box-sizing: content-box;
}

@media screen and (min-width: 1024px) {

    .slant-section-top {
        height: 100px;
        clip-path: polygon(0% 100%, 100% 0%, 100% 100%);
        margin-bottom: -1px;
    }

    

    .slant-green {
        background: var(--primaryGreen);
    }

    .slant-pale {
        background: #FAF5E6;
    }

    .slant-yellow {
        background: var(--backgroundYellow);
    }
    .slant-section-bottom{
        height: 100px;
        clip-path: polygon(0 100%, 0 0, 100% 0);
        margin-top: -1px;
    }

    .week-text-img .cs-container {
        display: flex;
        justify-content: space-evenly;
        align-items: center;
        flex-direction: row;
        text-align: start;
    }

    .week-text-img .cs-content {
        text-align: start;
        align-items: start;
        max-width: 600px;
        
    }
    .week-text-img .cs-img-content {
        position: relative;
        width: 427px;
        height: 427px;
        display: block;
    }

    .week-text-img #top-left {
        position: absolute;
        top: 8px;
        left: -6px;
        border: 15px solid #fff;
        border-radius: 10px;
        filter: drop-shadow(0px 4px 25px rgba(0,0,0,0.25));
        transform: rotate(4.12deg);
        z-index: 3;
    }

    .week-text-img #bottom-right {
        position: absolute;
        bottom: 0px;
        right: 28px;
        border: 15px solid #fff;
        border-radius: 10px;
        filter: drop-shadow(0px 4px 25px rgba(0,0,0,0.25));
        transform: rotate(-8.38deg);
        z-index: 3;
    }

}
