/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center,
dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */

/* includes fonts */
@font-face {
    font-family: 'PP Agrandir';
    src: url(../files/PPAgrandir-Regular.woff);
    font-weight: normal;
}
@font-face {
    font-family: 'PP Agrandir';
    src: url(../files/PPAgrandir-Bold.woff);
    font-weight: bold;
}
@font-face {
    font-family: 'PP Radio Grotesk';
    src: url(../files/PPRadioGrotesk-Regular.woff);
    font-weight: normal;
}
@font-face {
    font-family: 'PP Radio Grotesk';
    src: url(../files/PPRadioGrotesk-Black.woff);
    font-weight: bold;
}

/* Variables for max-width & brand colours */
:root {
    --flam: rgba(239, 041, 093, 1); /**Flamingo**/
    --rasp: rgba(155, 000, 056, 1); /**Raspberry Jam**/
    --silv: rgba(242, 242, 242, 1); /**Silver Lining**/
    --seaf: rgba(154, 216, 204, 1); /**Seafoam**/
    --summ: rgba(064, 168, 173, 1); /**Summer Skies**/
    --deep: rgba(001, 015, 061, 1); /**Deep Space**/

    --max-width: 1440px;

}

.flam {
    color: var(--flam);
}

.rasp {
    color: var(--rasp);
}

.silv {
    color: var(--silv);
}

.seaf {
    color: var(--seaf);
}

.summ {
    color: var(--summ);
}

.deep {
    color: var(--deep);
}

/* Icons! */
.icon-1 {
    height: 1em;
    width: 1em;
}
.icon-2 {
    height: 2em;
    width: 2em;
}
.icon-3 {
    height: 3em;
    width: 3em;
}

.icon-bag {
    background-image: url(../img/icon-bag.svg);
    display: block;
}

.icon-user {
    background-image: url(../img/icon-user.svg);
    display: block;
}

/* They told me this would make scrolling smooth */
html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--deep);
    /* margin: 5%; */
    font-family: 'PP Agrandir', Arial, Helvetica, sans-serif;
    font-weight: normal;
    font-size: 1em;
    text-rendering: optimizeLegibility;
    background-image: url(../img/visual-garden-5.jpg);
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
    height: 100%;
    scroll-behavior: smooth;
    color: var(--silv);
}

p {
    font-family: 'PP Radio Grotesk', Arial, Helvetica, sans-serif;
    font-size: 1em;
    line-height: 1.6;
    font-weight: normal;
    color: var(--silv);
    margin-bottom: 1em;
}

h1 {
    font-family: 'PP Agrandir', Arial, Helvetica, sans-serif;
    font-size: 4em;
    font-weight: bold;
    color: var(--silv);
    line-height: 1;
}

h2 {
    font-family: 'PP Agrandir', Arial, Helvetica, sans-serif;
    font-weight: normal;
    font-size: 3em;
    text-decoration: none;
    color: var(--silv);
}

h3 {
    font-family: 'PP Agrandir', Arial, Helvetica, sans-serif;
    font-weight: normal;
    font-size: 2em;
    text-decoration: none;
    color: var(--silv);
    line-height: 1.25em;
}

a {
    text-decoration: none;
}

/* Header
 */
.header-top {
    max-width: var(--max-width);
    margin: 4rem auto 1rem;
    padding: 0 5%;
    position: relative;
    display: flex;
    flex-flow: column nowrap;
    justify-content: center;
}

#title {
    /* For JS */
    opacity: 100%;
}

.logo {
    height: 4rem;
    display: flex;
    justify-content: center;
    padding-bottom: 2%;
}

#nav {
    background-color: rgba(001, 015, 061, 0);
    z-index: 10;
}

.main-nav {
    max-width: var(--max-width);
    width: 80%;
    /* width: auto; */
    margin: 0 auto;
    padding: 24px 5%;
    font-weight: bold;
    font-size: 120%;
    text-transform: uppercase;
    position: sticky;
    top: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-radius: 24px;
}

.main-nav ul {
    flex: 0 0 100%;
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
}

.main-nav li {
    flex: 0 1 auto;
    /* text-shadow: 0 2px 12px var(--deep); */
    z-index: 3;
}

.main-nav a:link,
.main-nav a:visited {
    text-decoration: none;
    color: var(--silv);
    transition: all 0.1s;
    padding: 10px 0;
}

.main-nav a:hover {
    color: var(--summ);
}

.main-nav img {
    width: 10%;
    margin: auto;
    padding-bottom: 1%;
}

.merch-nav {
    max-width: var(--max-width);
    width: 80%;
    height: 1rem;
    margin: 0 auto;
    padding: 24px 5%;
    font-weight: bold;
    font-size: 120%;
    text-transform: uppercase;
    position: sticky;
    top: 140px;
    display: flex;
    flex-direction: row;
    justify-content: end;
    border-radius: 24px;
}

.merch-nav img {
    height: 2rem;
}

.learn-more {
    animation: bounceText .5s ease-out none infinite alternate;
    width: 100%;
    margin-top: 6%;
    /* bottom: 5%; */
    text-align: center;
    /* background-color: #BD081C; */
}

@keyframes bounceText {
    from {transform: translateY(0);}

    to {transform: translateY(-10px);}
}

.hero {
    max-width: var(--max-width);
    margin: auto;
    padding: 5%;
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    align-items: center;
}

.hero h2 {
    flex: 0 1 66%;
    padding-right: 5%;
}

.hero button {
    /* float: right; */
    flex: 0 1 33%;
}

.container-fluid {
    background-color: var(--summ);
}

.row {
    max-width: 1200px;
    background-color: var(--flam);
    margin: 0 auto;
    overflow: auto;
}

.col {
    width: 8.33333%;
    float: left;
    background-color: var(--seaf);
}

.filler {
    min-height: 25vh;
    max-width: var(--max-width);
    /* background-color: lime; */
}

.btn, .btn:link, .btn:visited {
    /* display: inline-block; */
    padding: 1rem;
    font-family: 'PP Agrandir',Arial, Helvetica, sans-serif;
    font-weight: bold;
    font-size: 300%;
    text-transform: uppercase;
    background-color: var(--silv);
    color: var(--flam);
    border-radius: 5px;
    border: none;
    transition: all 0.2s;
    text-align: center;
    /* line-height: .8; */
}

.btn2, .btn2:link, .btn2:visited {
    /* display: inline-block; */
    padding: 1rem;
    font-family: 'PP Agrandir',Arial, Helvetica, sans-serif;
    font-weight: bold;
    font-size: 2.5rem;
    text-transform: uppercase;
    background-color: var(--flam);
    color: var(--silv);
    border-radius: 12px;
    border: none;
    transition: all 0.2s;
    text-align: center;
    /* line-height: .9; */
}

.btn:hover, .btn2:hover {
    background-color: #e0e0e0;
}

.btn:active, .btn2:active {
    background-color: var(--seaf);
    color: var(--silv);
}

.btn-invis, .btn-invis:link, .btn-invis:visited {
    display: inline;
    padding: 0;
    margin: 0;
    background-color: transparent;
    border: none;
    box-shadow: none;
    font-size: 3em;
    transition: all 0.2s;
    line-height: 1;
}

.btn-invis:hover {
    color: var(--summ);
}

.btn-invis:active {
    color: var(--flam);
}

/* Sections */

section {
    padding: 80px 0 0;
}

section > h1 {
    /* color: var(--flam); */
    text-align: center;
    margin-bottom: 48px;
}

article {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 5%;
}

article > h1 {
    text-align: center;
    margin-bottom: 48px;
}

article p {
    width: 66%;
    margin: auto;
    margin-bottom: 1em;
}

.dark-background {
    /* background-image: url(../img/visual-garden-11.jpg); */
    background-color: var(--deep);
    background-size: cover;
    background-position: bottom;
    background-attachment: fixed;
}

/* .form {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 5%;
    text-align: center;
}

form {
    display: inline-block;
}

h2 + h2 {
    margin-top: 1em;
}

h2 input {
    font-size: .6em;
    width: 40%;
    background-color: var(--silv);
    border-radius: 2em;
    border: none;
    padding: 1rem;
    float: right;
}

form label {
    display: inline-block;
    min-width: 90px;
    text-align: right;
}

input {
    box-sizing: border-box;
}

input:focus {
  
} */

/* 
form label {
    font-size: 2em;
}

form input {
    margin: 2em;
} */

/* Section: Form */

.form {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 5%;
    display: flex;
    flex-flow: column;
    border-radius: 24px;
}

.form > h1 {
    text-align: center;
    margin-bottom: 48px;
}

.form form {
    margin: auto;
    display: flex;
    flex-flow: column;
}

.form-field {
    margin-bottom: 2rem;
    font-size: 2em;
    width: 100%;
}

.form-field label {
}

.form-field input {
    margin-top: .2em;
    padding: 12px;
    border-radius: 24px;
    border: none;
    font-size: 1em;
}

.form-2 {
    display: flex;
    flex-flow: row nowrap;
    gap: 2em;
}


/* Section: Landing */

.col2 {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 5%;
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    gap: 2rem;
}

.col2-img {
    flex: 0 1 100%;
    width: 50%;
    height: 32em;
    border-radius: 24px;
    overflow: hidden;
}

.col2-img img {
    min-height: 100%;
    max-width: 100%;
    object-position: center;
    object-fit: cover;
}

.col2-logo {
    object-fit: cover;
    width: 100%;
}

.col2-text {
    flex: 0 1 100%;
    width: 50%;
    display: flex;
    flex-flow: column wrap;
    gap: 2rem;
    justify-content: space-between;
    /* align-items: center; */
}

.img-fill {
    object-fit: fill;
}

/* Section: Featured */

.section-featured {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 5%;
    display: flex;
    flex-flow: column wrap;
    /* background-color: var(--deep); */
    justify-content: space-between;
}

.features-list {
    flex: 0 1 auto;
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
}

.section-featured h2 {
    text-align: center;
}

.section-featured > p {
    font-size: 1.5em;
    padding-bottom: 36px;
    line-height: 1.3;
    max-width: 66.66%;
    text-align: center;
    margin: auto;
}

.features-list .content {
    flex: 0 1 30%;
    margin-top: 5%;
}

.features-list .content > p{
    margin-top: 32px;
    font-size: 1.3em;
    line-height: 1.2;
}

.features-list .fa-solid {
    text-align: center;
    display: block;
    margin-bottom: 12px;
}

/* Section: Portfolio */
.section-portfolio {
    display: flow-root;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 5%;
}

.image-showcase {
    display: flex;
    flex-flow: row wrap;
    width: 100%;
    justify-content: space-between;
    gap: 1rem;
}

.image-showcase figure {
    flex: 1 1 20%;
    aspect-ratio: 1/1;
    overflow: hidden;
    border-radius: 12px;
    background-color: var(--summ);
}

.section-portfolio img {
    width: 100%;
    aspect-ratio: 1/1;
    /* height: 101%; */
    object-fit: cover;
    transition: all 0.15s;
}

.section-portfolio img:hover {
    opacity: .40;
    transform: scale(1.2);
    cursor: pointer;
}

/* Section: Testimonials */

.section-testimonials {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 5%;
    display: flow-root;
}

.section-testimonials article {
    width: 27%;
    float: left;
    padding: 3%;
}

.section-testimonials blockquote {
    position: relative;
    font-size: 1.2em;
    line-height: 1.2;
}

.section-testimonials blockquote::before {
    content: "\201c";
    font-size: 4em;
    display: block;
    position: absolute;
    top: -48px;
    left: -8px;
}

.section-testimonials cite {
    font-size: 1.6em;
    font-weight: bold;
    display: block;
    margin-top: 16px;
}

.section-testimonials cite img {
    width: 20%;
    max-height: 75px;
    object-fit: cover;
    border-radius: 10%;
    margin-right: 16px;
    vertical-align: middle;
}

/* Section: File List */
.filelist {
    max-width: var(--max-width);
    display: flex;
    flex-flow: column nowrap;
    justify-content: center;
    gap: 2rem;
    padding: 5%;
    margin: 0 auto;
}

.filelist h1 {
    margin: 0 auto 24px;
}

.file-entry {
    width: 100%;
    background-color: var(--deep);
    border-radius: 24px;
    /* padding: 24px; */
    display: flex;
    flex-flow: column nowrap;
    justify-content: space-between;
    margin: auto;
}

.file-entry-head {
    background-color: transparent;
    color: var(--silv);
    font-family: 'PP Agrandir', Arial, Helvetica, sans-serif;
    text-align: left;
    padding: 24px;
}

.collapsible:after {
    content: "+";
    float: right;
    margin-left: 4px;
}

.file-entry-active {

}

.file-entry-active:after {
    content: "-";
}

.file-entry-body {
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
    padding: 0;
}

.file-entry-body img {
    /* margin-top: 24px; */
    width: 100%;
    border-radius: 12px;
}

.table {
    width: 100%;
}

.table td {
    padding: 1em;
    text-align: center;
}

.table th {
    padding: 1em;
    text-align: center;
    font-weight: bold;
}

/* Section: Cards */

.cards {
    text-align: center;
    padding: 5%;
}

.cards h1:first-child {
    margin: 0 auto 48px;
}

.card-gallery {
    max-width: var(--max-width);
    display: flex;
    flex-flow: row wrap;
    gap: 2rem;
    justify-content: space-between;
    margin: 0 auto;
}

.card-item {
    flex: 1 1 24%;
    padding: 1.6rem;
    border-radius: 2rem;
    background-color: var(--silv);
    display: flex;
    flex-flow: column nowrap;
    justify-content: space-between;
    gap: 1rem;
    align-items: center;
    transition: all 0.2s;
}

.card-item:hover {
    box-shadow: 0 0 50px -16px var(--flam);
    transform: translateY(-4px);
}

.card-item:hover img {
    animation: hover .5s none alternate infinite;
    background-color: var(--seaf);
}

@keyframes hover {
    from {transform: scale(100%);}
    to {transform: scale(102%);}
}

.card-item h1{
    /* margin-bottom: 24px; */
    font-size: 3rem;
    color: var(--deep);
    /* line-height: .8; */
}

.card-item h2 {
    color: var(--deep);
    /* line-height: .8; */
}

.card-item p {
    /* margin-bottom: 24px; */
    color: var(--deep);
}

.card-image {
    height: 360px;
    width: 100%;
    /* margin-bottom: 24px; */
    overflow: hidden;
    border-radius: 12px;
}

.card-image img {
    min-height: 100%;
    max-width: 100%;
    object-position: center;
    object-fit: cover;
    transition: all 0.2s;
}

.merch-image img {
    height: 100%;
    width: 100%;
    object-fit: scale-down;
}

.card-item-2 {
    flex: 1 1 28%;
    display: flex;
    flex-flow: column nowrap;
    justify-content: space-between;
    gap: 2rem;
    align-items: center;
    transition: all 0.2s;
}

/* Section: Footer */

.section-footer {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 5%;
    display: flow-root;
}

footer p {
    clear: both;
    text-align: center;
    margin-top: 120px;
}

footer a:link, a:visited {
    color: var(--silv);
    transition: all 0.1s;
    text-decoration: none;
    font-weight: bold;
}

footer a:hover {
    color: var(--flam);
}

.footer-nav {
    list-style-type: none ;
    float: left;
}

.footer-nav li {
    margin-right: 24px;
}

.footer-social li {
    margin-left: 24px;
}

.footer-social {
    list-style-type: none ;
    float: right;
}

.footer-nav li,
.footer-social li {
    display: inline-block;
}

/* Socials Brand Colours */
.fa-instagram:hover {
    color: #E4405F;
}

.fa-tiktok:hover {
    color: #EE1D51;
}

.fa-youtube:hover {
    color: #CD201F;
}

.fa-pinterest:hover {
    color: #BD081C;
}

.active {
    padding: 2px 4px;
    border-radius: 4px;
    background-color: var(--rasp);
}

/* Tablet View */
@media screen and (max-width:900px){

    .main-nav {
        max-width: var(--max-width);
        width: 80%;
        /* width: auto; */
        margin: 0 auto;
        padding: 24px 5%;
        font-weight: bold;
        font-size: 1rem;
        text-transform: uppercase;
        position: sticky;
        top: 50px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        border-radius: 24px;
    }

    .features-list {
        flex: 0 1 auto;
        display: flex;
        flex-flow: column wrap;
        justify-content: space-between;
    }

    .features-list .content > p{
        max-width: 66.66%;
        margin-left: auto;
        margin-right: auto;
        text-align: center;
    }


/* Section: Portfolio */
    .section-portfolio {
        display: flow-root;
        max-width: var(--max-width);
        margin: 0 auto;
        padding: 5%;
    }

    .image-showcase {
        display: flex;
        flex-flow: row wrap;
        width: 100%;
        justify-content: space-between;
        gap: 1rem;
    }

    .image-showcase figure {
        flex: 1 1 45%;
        /* aspect-ratio: 1/1; */
        overflow: hidden;
        border-radius: 12px;
        background-color: var(--summ);
    }
}

/* Mobile View */
@media screen and (max-width:600px){
   
    .main-nav ul {
        flex: 0 0 100%;
        display: flex;
        flex-flow: row wrap;
        justify-content: space-between;
    }
    
    .main-nav li {
        flex: 0 1 auto;
        /* text-shadow: 0 2px 12px var(--deep); */
        z-index: 3;
    }

    .main-nav {
        max-width: var(--max-width);
        width: auto;
        margin: 24px auto;
        padding: 2% 5% 2%;
        font-weight: bold;
        font-size: 120%;
        text-transform: uppercase;
        position: sticky;
        top: 0;
        border-radius: 0;
    }
    
    .main-nav ul {
        display: flex;
        flex-flow: row wrap;
        justify-content: space-between;
        gap: 8%;
    }
    
    .main-nav li {
        flex: 0 1 auto;
        margin: 2% 0;
    }   

    h2 {
        line-height: 1.2;
    }

    .btn, .btn:link, .btn:visited {
        font-size: 200%;
    }

    .hero {
        flex-flow: column nowrap;
    }
    
    .hero h2 {
        flex: 0 1 66%;
        padding-right: 0;
        margin-bottom: 12%;
        margin-top: 24%;
    }
    
    .hero button {
        flex: 0 1 33%;
    }

    .section-featured > p {
        max-width: 100%;
        text-align: left;
    }

    .features-list {
        flex: 0 1 auto;
        display: flex;
        flex-flow: column wrap;
        justify-content: space-between;
    }

    .features-list .content > p{
        max-width: 100%;
        text-align: left;
    }
    
    /* Section: Portfolio */
    .section-portfolio {
        padding: 5% 0;
    }

    .image-showcase {
        gap: 0;
    }

    .image-showcase figure {
        flex: 1 1 50%;
        border-radius: 0;
    }

    /* Section: Testimonials */
    .section-testimonials article {
        width: 100%;
        float: left;
        padding: 3%;
        margin-bottom: 10%;
    }

    .section-testimonials article:last-child {
        margin-bottom: 0;
    }

    .card-gallery {
        flex-flow: column;
        gap: 5em;
    }

    .card-item {
        flex: 1 1 100%;
        padding: 24px;
        border-radius: 24px;
        background-color: var(--silv);
        display: flex;
        flex-flow: column nowrap;
        justify-content: space-between;
        gap: 1rem;
        align-items: center;
        transition: all 0.2s;
    }

    .card-item-2 {
        flex: 1 1 20%;
        display: flex;
        flex-flow: column nowrap;
        justify-content: space-between;
        gap: 1rem;
        align-items: center;
        transition: all 0.2s;
    }

    /* Footer */

    .section-footer nav {
        display: flex;
        flex-flow: column nowrap;
        gap: 30px;
    }

    .footer-nav {
        flex: auto;
        justify-content: space-between;
        display: flex;
        flex-flow: row wrap;
    }

    .footer-social {
        flex: auto;
        justify-content: space-between;
        display: flex;
        flex-flow: row-reverse wrap;
    }

    .footer-nav li {
        margin-right: 0;
    }
    
    .footer-social li {
        margin-left: 0;
    }

    /* Section: Landing */

    .col2 {
        flex-flow: column nowrap;
    }

    .col2-img {
        flex: 0 1 100%;
        width: 100%;
        height: 50%;
    }

    .col2-img img {
        min-height: 100%;
        max-width: 100%;
        object-position: center;
        object-fit: cover;
    }

    .col2-logo {
        object-fit: cover;
        width: 100%;
    }

    .col2-text {
        width: 100%;
    }

    /* Section: File List */
    .filelist {
        padding: 5% 0;
    }

    .file-entry {
        border-radius: 0;
    }

    .collapsible:after {
        content: "+";
        float: right;
        margin-left: 4px;
    }

    .file-entry-body img {
        /* margin-top: 24px; */
        width: 100%;
        border-radius: 12px;
    }

    .table {
        width: 100%;
        font-size: 16px;
    }

    .table td {
        padding: 1em 0.2em;
        text-align: center;
    }

    .table th {
        padding: 1em 0.2em;
        text-align: center;
        font-weight: bold;
    }

    article p {
        width: 100%;
        margin: auto;
        margin-bottom: 1em;
    }
    
}