 /*Fonts*/
@font-face {
    font-family: 'Jacquard12-Regular';
    font-weight: 1000;
    src: url(../fonts/Jacquard12-Regular.ttf);
}

h1, h2 {
    font-family: "Jacquard12-Regular", sans-serif;
}

h1 {
    font-size: 70px;    /*set to 24-30, prob 26 for mobile*/
    color: var(--text-color);
}

h2 {
    font-size: 35px;    /*set to 20-26, prob 22 for mobile      deff. of 4px between headings seems to be the pattern*/
    color: var(--text-color);
}

h3 {
    font-size: 20px;    /*set to 16-20, prob 18 for mobile*/
    color: var(--secondary-text)
}

p {
    font-size: 17px;
}


/*Lightmode or Default*/
:root {
    --base-color: hsl(113, 49%, 90%);
    --base-varient: hsl(146, 40%, 70%);
    --text-color: hsl(163, 14%, 10%);
    --secondary-text: hsl(164, 26%, 17%);
    --primary-color: hsl(165, 27%, 30%);
    --accent-color: hsl(263, 40%, 65%);
    --accent-hover: hsl(263, 37%, 52%);
    /*cat homepage logo button*/
    --cat-base: black;
    --cat-eyes: #a0df33;

    --color: #94d1ae;

    cursor: url('/images/icons/custom_mouse/paw_default_lightmode.png'), auto;
    --hover-paw: url('/images/icons/custom_mouse/paw_hover_lightmode.png');
    
    /*background*/
    --home-background: url('/images/backgrounds/catpink_tile.webp');
    --subsection-background: hsl(115, 100%, 98%);
}

/*Darkmode*/
.darkmode {
    --base-color: hsl(163, 14%, 10%);
    --base-varient: hsl(164, 26%, 17%);
    --text-color: hsl(113, 50%, 90%);
    --secondary-text: hsl(146, 40%, 70%);
    --primary-color: hsl(146, 40%, 50%);
    --accent-color: hsl(263, 37%, 52%);
    --accent-hover: hsl(263, 40%, 65%);
    /*cat homepage logo button*/
    --cat-base: hsl(113, 10%, 90%);
    --cat-eyes: #7ec405;

    cursor: url('/images/icons/custom_mouse/paw_default.png'), auto;
    --hover-paw: url('/images/icons/custom_mouse/paw_hover.png');

    /*background*/
    --home-background: url('/images/backgrounds/lavanderghost_tile.webp');
    --subsection-background: hsl(167, 20%, 18%);
}


/*Most buttons*/
/*WILL CHANGE! Once I figure out graphics for buttons, possibly svg*/ 
.button{
    background-color: var(--primary-color);
    color: var(--base-varient);
    cursor: var(--hover-paw), auto;
}
.button:hover{
    background-color: var(--secondary-text);
}

/*Special buttons?*/
/*WILL CHANGE! Once I figure out graphics for buttons, possibly svg*/ 
.cta-button{
    background-color: var(--accent-color);
    color: white;
    cursor: var(--hover-paw), auto;
}
.cta-button:hover{
    background-color: var(--accent-hover);
}

/*_____________________Switch between darkmode and lightmode______________________*/
#theme-switch{
    height: 50px;
    width: 50px;
    padding: 0;
    border-radius: 50%;
    background-color: var(--base-varient);
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    top: 10px;
    float: right;
    cursor: var(--hover-paw), auto;
    
}
#theme-switch svg{
    fill: var(--primary-color);
    stroke: var(--primary-color);
    stroke-width: 2;
    stroke-linecap: round;
}
#theme-switch svg:last-child{
    display: none;
}
.darkmode #theme-switch svg:first-child{
    display: none;
}
.darkmode #theme-switch svg:last-child{
    display: block;
}


/*__________Universal styling; applied to EVERY element, unless coded otherwise________________*/
* {
    margin: 0;
    border: none;
}

html {
    font-family: Courier New;
    overflow-y: scroll; overflow-x: auto;
}

body {
    min-width: 1024px;
    position: center;
    padding: 15%;
    padding-top: 5vh;
    padding-bottom: 3vh;
    background-image: var(--home-background);
    color: var(--text-color);
}

a {
    cursor: var(--hover-paw), auto;
}

p a {
    color: deeppink;
    text-decoration: none;
}



.blinkie_chain {
    background-color:var(--accent-color);
    height: 20px;
    width: 100%;
    overflow-y: hidden;
    overflow-x: hidden;
    display: flex;
    justify-content: space-evenly;
}

.blinkie_chain img{
    height: 20px;  
}

/*_______Introudction/Welcome Section & First Content Row__________________________________*/
.content_row1 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(1, 1fr);
    grid-gap: 30px 40px;
    margin-bottom: 20px;
}

.intro_box {
    background-color: var(--subsection-background);
    border-radius: 20px;
    grid-column: 1/3;

    padding: 15px;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-template-rows: repeat(2, 2fr);
    grid-column-gap: 10px;
    grid-row-gap: 20px;
}
.muse_box {
    border: dashed var(--primary-color) 4px;
    background-color: var(--base-color);
    padding: 20px;
    border-radius: 45px;
    grid-column: 3/7;
    text-align: center;
}

.updates {
    text-align: center;
}
.update_box {
    border: dotted var(--accent-color) 5px;
    overflow-y: scroll;
    height: 300px;
    border-radius: 20px;
    margin-top:10px;
    padding: 10px;
    margin-left: 15px;
    margin-right: 25px;
}

/*_______________________Stamps__________________________________________________________*/
.content_row2 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(1, 1fr);
    grid-gap: 30px 40px;
}

.stamps {
    grid-column: 1/2;
    display: block; 
    text-align: center;
    background-image: url(/images/backgrounds/purple_space.gif);
    padding: 10px;
    padding-top: 50px;
    padding-bottom: 40px;
    border-radius: 30px;
}
.stamps img{
    height: auto;
    width: 75%;
    margin-bottom: 10px;
}

#chatbox{
    width:90%;
    height: 400px; 
    align-self: center;
    display: block; 
    margin: auto;
    margin-top: 30px;
    margin-bottom: 30px;
    border-radius: 20px;
}

/*_______________________Showcase__________________________________________________________*/
.showcase{ 
    display: block;
    text-align: center;
    padding: 10px;
}
.showcase_card{
    padding: 10px;
    padding-top: 25px;
    width: 30%;
    background-color: var(--subsection-background);
    height: 300px;
}
.showcase_card_yt{
    padding: 10px;
    width: 28%;
    background-color: var(--subsection-background);
    height: 510px;
}
.showcase_card img{
    max-width: 80%;
    margin-bottom: 15px;
}

.card_group{
    display: inline-flex;
    justify-content: space-around;
}



/*_______________________Scrollbar___________________________________________________________*/
::-webkit-scrollbar {
    width: 0.5em;
}
::-webkit-scrollbar-track {
    background-image: linear-gradient(to bottom, #fe9d5d, #e60f77, #0d38af, #27d3a2);
}
::-webkit-scrollbar-thumb {
    background-color: rgba(253, 253, 253, 0.26);
    border-radius: 100vw;
    border: 0.25em solid rgba(255, 255, 255, 0.44);
}


/*_____Home Button (cat logo) and Title FelineDruid_______*/
#banner{
    display: flex;
    padding: 20px;
    padding-bottom: 0;
    padding-right: 20px;
    background-color: var(--base-varient);
    justify-content: space-between;
}
#cat_title{
    display:inline-flex;
}

#home_cat{
    padding: 0;
    background-color: transparent;
    display: flex;
    
}
#home_cat svg{
    background-color: transparent;
    stroke: var(--cat-base);
    fill: var(--cat-base);
    stroke-width: 2;
    stroke-linecap: round;
    cursor: url(/images/icons/custom_mouse/petting_hand.png), auto;
}
#cat_eye{
    fill: var(--cat-eyes);
    stroke: none;
}
#cat_pupil{
    fill: black;
    stroke: none;
}


/*______________________________Navigation Bar________________________________________*/
nav {
                background: var(--primary-color);
                overflow: hidden; 
                height: 75;
                position: relative;
                top: 0;
                z-index: 10;
}

.navbar a {
                float: left;
                display: block;
                text-align: center;
                padding: 14px 16px;
                text-decoration: none;
                color: hsl(113, 50%, 90%);
                font-size: 17px;
                margin-top: 13;
}
.navbar a:hover {
                color: rgb(255, 255, 255, 1);
}
.navbar .icon {
    display: none;
}


.icon {
    right: 0;
}
.icon svg {
    background-color: transparent;
    stroke: hsl(113, 50%, 90%);
    fill: none;
    stroke-width: 25;
    stroke-linecap: round;
}
.icon svg:hover {
    stroke: rgb(255, 255, 255, 1);
}


.menu a {
    display: flex; 
    float: center;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    color: white;
    font-size: 17px;
    width: 94%;
    background-color:var(--base-varient);
    z-index: 9;
}
 

/*______________________________Main Body________________________________________*/

.body_container {
    background-color: var(--base-color);
    display: block;
    padding: 20px;
    min-height: 1px;
}


/*______________________________Footer________________________________________*/
footer{
    background-color: var(--base-varient);
    padding: 10px;
    text-align: center;
}



/*________________________Media Queries for Mobile Phone Screens______________________________*/
@media screen and (max-width: 600px) {
    body{
        padding: 0px;
        min-width: 630px;
    };

    #banner{
        min-height: 90vh;
    }

    nav{
        height: 75px; 
        position: sticky;
    }
    #myMenu {
        position: sticky;
        top: 75px;
    }
    .navbar a:not(:last-child) {
        display: none;
    }
    .navbar a.icon {
        float: right;
        display: flex;
    };

    
    .menu a {
        display: none;
    }
    .menu a:hover {
        color: white;
        background-color: var(--accent-color);
    };


    .content_row1{
        display: block;
    }
    .intro_box{
        grid-column: 1/4;
    }
    .updates{
        grid-column: 1/4;
    }
    .update_box{
        margin-right: 15px;
    }

    .content_row2{
        display: block;
    }
    .showcase h1{
        font-size: 30px;
        padding-top: 10px;
    }
    .showcase img{
        width: 80%;
        height: auto;
    }
    .showcase_card{
        min-height: 500px;
        width: 90%;
        float: center;
        margin: auto;
        margin-bottom: 20px;
    }
    .showcase_card_yt{
        min-height: 400px;
        width: 90%;
        float: center;
        margin: auto;
        margin-bottom: 20px;
        padding-top: 20px;
    }

    #tower{
        min-width: 70%;
        padding-top: 40px;
        height: 60vw;
    }
    .card_group{
        display: block;
    }

}
