:root {
    --dark-background: #1A1829;
    --bright-background: #BFBFBF;
    /*F0F0F0 light grey*/
    --secondary-color: #F25F4C;
    --tertiary-color: #e53170;
    --button-color: #078080;
    --bonus-color: #014040;
    --bs-navbar-color: #1A1829;
    --bs-dark: #1A1829;
}

::placeholder {
    opacity: 1;
    color: var(--bright-background);
}

*, ::after, ::before {
    box-sizing: border-box;
}

a:link {
    color: #FFFFFF;
}
  
a:visited {
    color: #FFFFFF;
}
  
a:hover {
    color: #FFFFFF;
}
  
a:active {
    color: #FFFFFF;
}



html {
    box-sizing: border-box;
}

body {
    background-color: var(--bright-background);
    font-family: 'Quicksand', Arial, sans-serif;
}


/* Entrance Animation */
.hidden {
    opacity: 0;
    filter: blur(5px);
    transform: translateX(-100%);
    transition: all 1s;
}

.show {
    opacity: 1;
    filter: blur(0);
    transform: translateX(0);
}

.hidden2 {
    opacity: 0;
    filter: blur(5px);
    transition: all 1s;
}

.show2 {
    opacity: 1;
    filter: blur(0);
}


section {
    scroll-snap-align: start;
    scroll-snap-stop: always;
    
}

#navbar {
    background-color: var(--dark-background);
    color: var(--dark-background);

}

.dark {
    background-color: var(--dark-background);
}

.bright {
    background-color: var(--bright-background);
}

.secondary {
    color: var(--secondary-color);
}

.text {
    color: #FFFFFF;
}

.higherText {
    line-height: 2em;
}

.highlight {
    color: var(--secondary-color);
}

.spacer {
    height: 5vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

#hero-section h1 {
    font-weight: bold;
    /*font-size: 64px;*/
}
#hero-section content {
    line-height: 1.75em;
}


#cta-btn {
    background: var(--button-color);
    /*max-width: 180px;*/
    font-weight: bold;
}

#cta-btn:hover {
    /*letter-spacing: 2px;*/
    opacity: 0.7;
}

#section-one {
    box-shadow: rgba(0, 0, 0, 0.09) 0px 2px 1px, rgba(0, 0, 0, 0.09) 0px 4px 2px, rgba(0, 0, 0, 0.09) 0px 8px 4px, rgba(0, 0, 0, 0.09) 0px 16px 8px, rgba(0, 0, 0, 0.09) 0px 32px 16px;
    /*height: 95vh;*/
}

.scroll-down {
    /*position: relative;
    right: 100px;
    bottom: 10px;*/
    display: block;
    text-align: center;
    font-size: 20px;
    z-index: 100;
    text-decoration: none;
    text-shadow: 0;
    width: 13px;
    height: 13px;
    border-bottom: 2px solid var(--dark-background);
    border-right: 2px solid var(--dark-background);
    z-index: 9;
    left: 50%;
    -webkit-transform: translate(-50%, 0%) rotate(45deg);
    -moz-transform: translate(-50%, 0%) rotate(45deg);
    transform: translate(-50%, 0%) rotate(45deg);
    -webkit-animation: fade_move_down 4s ease-in-out infinite;
    -moz-animation:    fade_move_down 4s ease-in-out infinite;
    animation:         fade_move_down 4s ease-in-out infinite;
  }
  
  #bright-cursor {
    border-bottom: 2px solid var(--bright-background);
    border-right: 2px solid var(--bright-background);
  }
  /*animated scroll arrow animation*/
  @-webkit-keyframes fade_move_down {
    0%   { -webkit-transform:translate(0,-10px) rotate(45deg); opacity: 0;  }
    50%  { opacity: 1;  }
    100% { -webkit-transform:translate(0,10px) rotate(45deg); opacity: 0; }
  }
  @-moz-keyframes fade_move_down {
    0%   { -moz-transform:translate(0,-10px) rotate(45deg); opacity: 0;  }
    50%  { opacity: 1;  }
    100% { -moz-transform:translate(0,10px) rotate(45deg); opacity: 0; }
  }
  @keyframes fade_move_down {
    0%   { transform:translate(0,-10px) rotate(45deg); opacity: 0;  }
    50%  { opacity: 1;  }
    100% { transform:translate(0,10px) rotate(45deg); opacity: 0; }
  }

.feature-box {
    background-color: var(--dark-background);
    box-shadow: rgba(0, 0, 0, 0.09) 0px 2px 1px, rgba(0, 0, 0, 0.09) 0px 4px 2px, rgba(0, 0, 0, 0.09) 0px 8px 4px, rgba(0, 0, 0, 0.09) 0px 16px 8px, rgba(0, 0, 0, 0.09) 0px 32px 16px;
}

.center-img {
    display: flex;
    justify-content: center;
}
.feature-headline {
    font-weight: bold;
}

.feature-text {
    line-height: 1.5em;
}

#feature-img-1, #feature-img-2, #feature-img-3, #feature-img-4 {
    max-height: 240px;
}


/* Section 3 */

.bonus-section {
    background-color: var(--dark-background);
    color: black;
}

#about-headline {
    font-weight: bold; 
    color: #ffffff;
}


#portrait-container {
    background-color: #f2c979;
    transition-delay: 200ms;
}

#portrait-container:hover {
    transform: scale(1.1, 1.1);
}

#portrait {
    max-width: 70%;
}

#about-text-container {
    transition-delay: 400ms;
    line-height: 3em;
}

#name {
    font-weight: bold;
}
li:nth-of-type(1) {
    transition-delay: 600ms;
}

li:nth-of-type(2) {
    transition-delay: 800ms;
}

li:nth-of-type(3) {
    transition-delay: 1000ms;
}

li:nth-of-type(4) {
    transition-delay: 1200ms;
}

/* Contact Form */

#contact-container {
    background-color: var(--dark-background);
    box-shadow: rgba(0, 0, 0, 0.09) 0px 2px 1px, rgba(0, 0, 0, 0.09) 0px 4px 2px, rgba(0, 0, 0, 0.09) 0px 8px 4px, rgba(0, 0, 0, 0.09) 0px 16px 8px, rgba(0, 0, 0, 0.09) 0px 32px 16px;
}

#contactRequest {
    color: var(--secondary-color);
    font-weight: bold;
}

#form-container {
  /*border-left: 1px solid var(--secondary-color);*/
}

.inputField {
    color: #FFFFFF;
}

#form-container input, textarea {
    color: #FFFFFF;
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 2px solid #ffffff;
    outline: none;
}

#submitField {
    display: flex;
    justify-content: center;
}


/* Footer */

#logo-footer {
    max-height: 65px;
}

#footer-logo {
    max-height: 60px;
}


#copyright {
    font-size: 12px;
}

.footer-links {
    text-decoration: none;
}

.offcanvas{
    width:40% !important;
    background-color: var(--dark-background);
    color: #FFFFFF;
    padding-left: 20px;
    padding-right: 20px;
}  

.offcanvas h3 {
    color: var(--secondary-color);
}





/* MEDIA QUERIES */

@media screen and (max-width:767px) {
    
    #hero-section h1 {
        font-size: 40px;
        font-weight: bold;
    }

    #hero-section h1:nth-child(1) {
        margin-top: 25px;
    }

    #hero-section h1:nth-child(2) {
        margin-bottom: 45px;
    }
    
    .spacer, .scroll-down {
        display: none;
    }

    #feature-img-1, #feature-img-3 {
        margin-bottom: 30px;
    }

    #feature-img-2, #feature-img-4 {
        margin-top: 30px;
    }

    #section-four {
        border-radius: 5px;
    }

    #about-text-container p {
        text-align: left;
        margin-left: 10px;
    }

    #portrait-container {
        transition-delay: 1400ms;
    }

    #section-five {
        margin-top: 25px;
        margin-bottom: 25px;
    }

    #form-container {
        border-top: 1px solid var(--secondary-color);
    }


    .offcanvas{
        width:90% !important;
        padding-left: 1px;
        padding-right: 1px;
    }  

}

@media screen and (min-width:768px) {
    html {
        scroll-snap-type: y mandatory;
        scroll-behavior: smooth;
    }

    section {
        height: 95vh;
    }

    #hero-section h1 {
        font-size: 68px;
        font-weight: bold;
    }

    #hero-section h1:nth-child(2) {
        margin-bottom: 45px;
    }

    #portrait-container {
        /*max-height: 35vh;*/
    }

    #portrait-container:hover {
        /*height: 45vh;*/
    }
    
    .contact-section {
        height: 80vh;
    }
    
    #form-container {
        border-left: 1px solid var(--secondary-color);
        padding-left: 60px;
    }

}

@media screen and (min-width:992px) {


    h1 {
        font-size: 64px;
    }

    #footer {
        height: 20vh;
    }

}

@media screen and (min-width:1200px) {

    #hero-section {
        min-height: 60vh;
    }

    .contact-section {
        height: 85vh;
    }

    #footer {
        height: 15vh;
    }
}

@media screen and (min-width:1400px) {



    /*#portrait-container {
        height: 25vh;
    }*/

    .contact-section {
        height: 90vh;
    }

    #footer {
        height: 10vh;
    }

    #footer div {
        max-height: 10vh;
    }
}