/* Box Model Hack */
* {
     box-sizing: border-box;
}

/* Clear fix hack */
.clearfix:after {
     content: ".";
     display: block;
     clear: both;
     visibility: hidden;
     line-height: 0;
     height: 0;
}

.clear {
	clear: both;
}

.calendar-container {
     width: 700px;
}

/******************************************
/* BASE STYLES
/*******************************************/

@font-face {
     font-family: 'sugar_peachyblack';
     src: url('/images/webfontkit-20230821-054208/sugar_peachy_black.woff2') format('woff2'),
          url('/images/webfontkit-20230821-054208/sugar_peachy_black.woff') format('woff');
     font-weight: normal;
     font-style: normal;
 
 }

:root {
     --pink-color: #FF489D;
     --yellow-color:#f4c917;
     --blue-color:#92a1e0;
     --teal-color:#b1d5c8;
     font-family: 'Nunito', sans-serif;
     font-weight: 800;
     color: white;
}

main {
     padding-top: 50px;     
     overflow-x: hidden;

}


a {
     color: white;
     text-decoration: none;
}

.button {
     font-weight: 1000;
     text-transform: uppercase;
     font-size: .9rem;
     padding: 5px 10px;
     color: white;
     background-color: var(--yellow-color);
     border-radius: 10px;
     border: 4px solid var(--pink-color);
     box-shadow: 0px 6px 0px var(--pink-color);
     transform: translateY(0px);
     transition: all 0.3s ease-in-out;
     display: inline-block;
     cursor: pointer;
}

.button:hover {
     box-shadow: 0px 0px 0px var(--pink-color);
     transform: translateY(6px);
}

#hero-section,
#show-section,
#about-section,
#video-section,
#contact-section {
     min-height: 600px;
}

#hero-section{
     background-color: var(--pink-color);
     background-image: url(/images/kate_lester_stand_up_hero_image.webp);
     background-repeat: no-repeat;
     background-size: cover;
     height: 80vh;
     background-position: right 0;
     display: grid;
     grid-template-columns: 2fr 1fr;
}

.hero-interact {
     display: grid;
     grid-column: 1;
     grid-row: 3;
     height: fit-content;
     align-self: center;
     justify-self: center;
     gap: 20px;
}

.hero-interact > ul {
     display: flex;
     flex-direction: row;
     gap: 20px;
     justify-self: center;
}

.hero-interact i {
     font-size: 35px;
}

.hero-buttons {
     display: flex;
     flex-direction: row;
     gap: 20px;
}

.hero-buttons a {
     font-size: 25px;
}


#show-section {
     background-color: var(--blue-color);
     display: grid;
     padding-bottom: 40px;
}

.placeholdershow {
     grid-column: 1;
     background-color: #b1d5c88e;
     width: 80%;
     max-width: 900px;
     margin: 10px auto;
     border-radius: 20px;
     display: flex;
     align-content: center;
     justify-content: center;
     align-items: center;
     padding: 20px;
}

.phimage {
     background-color: #FF489D;
     height: 100px;
     width: 120px;
     margin: 25px;
     border-radius: 20px;
}


#about-section {
     background-color: var(--teal-color);

}

.about-content {

     width: 80%;
     margin: 0 auto;
     padding: 25px 0 40px 0;
     z-index: 5;
}

.about-content p {
     font-size: 1.2rem;
     margin: 15px 10%;
     line-height: 1.2;
}

b {
     font-size: 1.5rem;
     font-weight: 900;
     color: var(--pink-color);
     text-shadow: 
          2px 2px 0px var(--yellow-color),
          4px 4px 0px var(--blue-color),
          6px 6px 0px var(--teal-color);


     padding-right: 8px;
}


.pop-art-images {
     position: relative;
     width: 100%;
     background-color: var(--teal-color);
}

.pop-image {
     background-image: url(/images/kate\ lester\ pop\ art.webp);
     background-size: auto 100%;
     background-position: center;
     background-repeat: repeat;
     width: 100%;
     min-height: 200px;
     max-height: 500px;
     position: relative;
}

.pop-image::before {
     content: "";
     display: block;
     padding-top: 50%;
}

#video-section {
     background-color: var(--yellow-color);
     display: flex;
     align-items: center;
     justify-content: center;
}

iframe {
     border-radius: 20px;
     border: 4px solid var(--blue-color);
     box-shadow: 0px 15px var(--blue-color);
     float: left;
     margin: 20px;
}

#contact-section {
     background-color: var(--yellow-color);
     display: flex;
     flex-direction: column;
     margin: 0 auto;
     height: fit-content;
}

.contact-title {
     margin: auto;
}

.contact-form img {
     height: 250px;
     border-radius: 15px;
     margin-bottom: 10px;
}

.contact-form article {
     width: 180px;
     text-align: center;
}

.contact-form {
     display: flex;
     flex-direction: row;
     gap: 20px;
     margin: 0 auto;
     padding: 35px 0 25px;
}

form {
     display: flex;
     flex-direction: column;
     width: 300px;
}

.contact-form form button {
     background-color: var(--yellow-color);
     border: 5px solid var(--pink-color);
     box-shadow: 0px 6px 0px var(--pink-color);
     width: 100px;
     margin: auto;
}

input, textarea {
     border: 5px solid var(--pink-color);
     border-radius: 10px;
     box-shadow: 0px 7px var(--pink-color);
     padding: 9px 5px;
     margin-bottom: 15px;
     background-color: white;
}

textarea {
     height: 200px;
     background-color: white;
}

input::placeholder,
textarea::placeholder {
     font-family: 'Nunito', sans-serif;
     font-weight: 800;
     color: var(--pink-color);
     opacity: 1;
}


header {
     background-color: var(--pink-color);
}

footer {
     background-color: var(--pink-color);
     display: flex;
     flex-direction: column;
     align-items: center;
     gap: 10px;
     padding: 20px;
}

footer .button {
     background-color: var(--pink-color);
     border-color: var(--yellow-color);
     box-shadow: 0px 7px var(--yellow-color);
}

footer ul{
     margin-top: 5px;
}

i {
     font-size: 25px;
     text-shadow: 3px 3px 2px var(--pink-color), 
               2px 2px 0px var(--pink-color),
               -2px 2px 4px var(--pink-color),
               2px -2px 4px var(--pink-color),
               -2px -2px 4px var(--pink-color);
     margin: 0px 7px 0 7px;
}

/******************************************
/* LAYOUT
/*******************************************/

header {
     display: grid;
     grid-template-columns: 1fr auto 1fr;  
     align-items: center;
     width: 100%;
     padding: 15px 0;
     position: fixed;
     z-index: 5;
}
   
.desktop-nav {
     grid-column: 2;
     display: flex;
     justify-content: center;
     align-items: center;
     transition: all 1s ease-out;     
}
   
.desktop-nav ul {
     display: flex;
     justify-content: center;
     gap: 30px;
     font-weight: 600;
     font-size: clamp(0.5rem, 7vw, 1.2rem);
     text-transform: uppercase;
}

.desktop-nav a {
     transition: all .3s ease-out;     
}

.desktop-nav a:hover {
     color: var(--pink-color);
     -webkit-text-stroke: 1.5px white;
     text-shadow: 0px 3px 0px white;
     transition: all 0.3s ease-out;     
}
   
.social-icons {
     grid-column: 3;  
     display: flex;
     justify-self: end;
     padding-right: 55px;
     gap: 10px;
 }


/******************************************
/* STACKED HEADER STYLES
/*******************************************/

#logo {
     position: relative;
     width: 300px;
     user-select: none;
     grid-column: span 2;
   }
   
#logo > * {
     width: 100%;
     position: absolute;
   }


.super-title {
     font-family: 'sugar_peachyblack', sans-serif;
     font-weight: 900;
     font-size: clamp(5rem, 11vw, 9rem);
     -webkit-text-stroke: 1.3px rgb(24, 24, 55);
     line-height: 65%;
     width: 550px;
     margin: 0 auto;
     position: relative;
     pointer-events: none;
}

.title {
     font-family: 'sugar_peachyblack', sans-serif;
     font-weight: 900;
     height: fit-content;
     font-size: clamp(6rem, 11vw, 9rem);
     -webkit-text-stroke: 1.3px rgb(24, 24, 55);
     line-height: 65%;
     width: fit-content;
     margin: 0 auto;
     padding-top: 65px;
     transform: translateX(30px);
}


.super-title {
     font-size: clamp(7rem, 17vw, 14rem);
     top: 50%;
     right: 25%;
     transition: all 1s ease-out;     
}

.title > span {
  position: absolute;
  width: 850px;
}


.elfsight-app-1ec712d0-72cc-4b0a-9a41-49367b1da133 {
     width: 70%;
     margin: 0 auto;
}

/******************************************
/* media queries 
/*******************************************/

.mobile-head {
     display: none;
}


@media screen and (prefers-reduced-motion: no-preference) {
     html {
       scroll-behavior: smooth;
     }
   }

@media (max-width: 600px) {
     .super-title {
          top: 150px;
          left: 5%;
          transition: all 1s ease-out;     
     }

     .contact-form {
          flex-direction: column;
          align-items: center;
          justify-items: center;
     }

     #hero-section{
          grid-template-columns: 1fr;
          height: 60vh;
     }
}


@media (max-width: 800px) {

     .desktop-head {
          display: none;
     }

     .super-title {
          right: 15%;
          transition: all 1s ease-out;     
     }

     .contact-title {
          width: 540px;
          padding-left: 5%;
     }

     .contact-title > span {
          width: 500px;
     }

     .about-content {
          display: flex;
          flex-direction: column;
          width: 98%;
          margin: 0 auto;
     }

     .about-content p {
          font-weight: 400;
     }
     
     .video-wrapper {
          margin: 0 auto;
     }
 



     main {
          padding-top: 40px;
     }


     .mobile-logo {
     height: 35px;
     position: relative;
     left: 43%;
     top: -38px;
     }


     .mobile-head {
          display: block;
          height: 45px;
     }


     #menuToggle
     {
       display: block;
       position: relative;
       
       z-index: 1;
       left: 10px;
       top: -5px;
       -webkit-user-select: none;
       user-select: none;
     }
     
     #menuToggle a
     {
       text-decoration: none;
       color: #ffffff;
       
       transition: color 0.3s ease;
     }
     
     #menuToggle input
     {
       display: block;
       width: 50px;
       height: 32px;
       position: absolute;

       left: -12px;
       top: -8px;

       cursor: pointer;
       
       opacity: 0; 
       z-index: 2; 
       
       -webkit-touch-callout: none;
     }
     
     #menuToggle span
     {
       display: block;
       width: 33px;
       height: 4px;
       margin-bottom: 5px;
       position: relative;
       
       background: white;
       border-radius: 3px;
       
       z-index: 1;
       
       transform-origin: 4px 0px;
       
       transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
                   background 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
                   opacity 0.55s ease;
     }
     
     #menuToggle span:first-child
     {
       transform-origin: 0% 0%;
     }
     
     #menuToggle span:nth-last-child(2)
     {
       transform-origin: 0% 100%;
     }
     

     #menuToggle input:checked ~ span
     {
       opacity: 1;
       transform: rotate(45deg) translate(-2px, -1px);
       background: white;
     }
     

     #menuToggle input:checked ~ span:nth-last-child(3)
     {
       opacity: 0;
       transform: rotate(0deg) scale(0.2, 0.2);
     }
     
     #menuToggle input:checked ~ span:nth-last-child(2)
     {
       transform: rotate(-45deg) translate(0, -1px);
     }
     
     #menu
     {
       position: absolute;
       width: 100%;
       height: 100vh;
       margin: 0 0 0 -10px;

       padding: 50px;
       
       background: var(--pink-color);
       -webkit-font-smoothing: antialiased;
       /* to stop flickering of text in safari */
       
       transform-origin: 0% 0%;
       transform: translate(-100%, 0);
       
       transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0);
     }
     
     #menu li
     {
       padding: 10px 0;
       font-size: 22px;
     }
     
     #menuToggle input:checked ~ ul
     {
       transform: none;
     }

} 




/******************************************
/* THANKS PAGE
/*******************************************/

.thanks-body {
     overflow-y: hidden;
     overflow-x: hidden;
     background-color: var(--pink-color);
}

.thanks-main {
     background-color: var(--pink-color);
     height: 100vh;
     min-height: 400px;
}

.thanks-content img {
     width: 250px;
     margin-bottom: -20px;
     transform: translateX(20px);
}

.thanks-content h1 {
     font-family: 'sugar_peachyblack', sans-serif;
     font-size: 8rem;
     font-weight: 100;
     padding-bottom: 30px;
     color: var(--pink-color);
     text-shadow:
     10px 10px 0px var(--yellow-color),
     13px 13px 0px rgb(6, 6, 88),
     9px 13px 0px rgb(6, 6, 88),
     8px 7px 0px rgb(6, 6, 88),
     13px 7px 0px rgb(6, 6, 88),
     23px 23px 0px var(--blue-color),
     26px 26px 0px rgb(6, 6, 88),
     21px 26px 0px rgb(6, 6, 88),
     26px 20px 0px rgb(6, 6, 88),
     36px 36px 0px var(--teal-color),
     39px 39px 0px rgb(6, 6, 88),
     39px 33px 0px rgb(6, 6, 88),
     33px 39px 0px rgb(6, 6, 88);

     -webkit-text-stroke: 3px rgb(24, 24, 55);
}

.thanks-content p {
     font-size: 1.5rem;
}

.thanks-content a {
     border: 5px solid var(--yellow-color);
     margin-top: 20px;
     padding: 5px 30px;
     border-radius: 15px;
     box-shadow: 0px 10px 0px var(--yellow-color);
     transition: all ease-in-out .2s;
}

.thanks-content a:hover {
     box-shadow: 0px 0px 0px var(--yellow-color);
     transform: translateY(10px);
}


.thanks-content {
     width: 500px;
     min-height: 400px;
     text-align: center;
     align-items: center;
     justify-items: center;
     display: flex;
     flex-direction: column;
     position: absolute;
     top: 50%;
     left: 50%;
     transform: translate(-50%, -50%);
}

@media (max-width: 800px) {
     .thanks-content h1 { 
     font-size: 5rem;
     }

     .thanks-content p {
          width: 80%;
     }

     .thanks-content img {
          margin: 0 auto;
          transform: translateX(15px);
     }
}
