/* for anyone who might be looking at this: hello! let it be known that I do not entirely know what I am doing */
/* so I would like to thank the people who do */
/* most of this comes from sadgrl's layout builder, so a lot of the comments here come from that! highly recommend it, it was essential in getting this started */
/* it's very easy to set up and easy to modify :) link --> https://codepen.io/sadness97/full/XJbLxNj */

/* the corkboard image map stuff comes from https://www.fla-shop.com/image-map/ ! */
/* the basic html image map, by default, doesn't scale and isn't responsive - using an svg image map fixes that, and this made it really easy to set up! */

/* if there's anything else here I didn't learn myself, it's probably from w3schools. really good resource for html/css and other stuff I know less about */
/* I know some html/css, I've taken classes, but don't get it twisted - I still have to refresh myself a ton so this site really helps lol */
/* I'll try my best to credit anything else that comes up :) */

            /* user styles */

            /* styles are what change the color and sizes of stuff on your site. */

            /* these are variables that are being used in the code
    these tended to confuse some people, so I only kept 
    the images as variables */

            :root {
                --body-bg-image: url("../img/background.png");

                /* colors */
                --content: #43256E;
				--kibpink: #EB43F3;
				--kibdarkpink: #E85DE6;
				--kibborderpink: #b340c9;
				--kibblue: #8064EA;
            }

            /* if you have the URL of a font, you can set it below */
            /* feel free to delete this if it's not your vibe */

            /* this seems like a lot for just one font and I would have to agree 
    but I wanted to include an example of how to include a custom font.
    If you download a font file you can upload it onto your Neocities
    and then link it! Many fonts have separate files for each style
    (bold, italic, etc. T_T) which is why there are so many!
    
    */

            @font-face {
                font-family: Nunito;
                src: url('../fonts/Nunito-Regular.woff');
            }

            @font-face {
                font-family: Nunito;
                src: url('../fonts/Nunito-Bold.woff');
                font-weight: bold;
            }

            @font-face {
                font-family: Nunito;
                src: url('../fonts/Nunito-Italic.woff');
                font-style: italic;
            }

            @font-face {
                font-family: Nunito;
                src: url('../fonts/Nunito-BoldItalic.woff');
                font-style: italic;
                font-weight: bold;
            }

            body {
                font-family: 'Nunito', sans-serif;
                margin: 0;
                background-color: #08031A;
                /* you can delete the line below if you'd prefer to not use an image */
                /* background-size: 65px; */
                background-image: var(--body-bg-image);
				background-size: 100% 100%;
				background-repeat: no-repeat;
				background-attachment: fixed;
            }

            * {
                box-sizing: border-box;
            }

            /* below this line is CSS for the layout */

            /* this is a CSS comment
    to uncomment a line of CSS, remove the * and the /
    before and after the text */


            /* the "container" is what wraps your entire website */
            /* if you want something (like the header) to be Wider than
    the other elements, you will need to move that div outside
    of the container */
            #container {
                max-width: 900px;
                /* this is the width of your layout! */
                /* if you change the above value, scroll to the bottom
      and change the media query according to the comment! */
                margin: 0 auto;
                /* this centers the entire page */
            }

            /* the area below is for all links on your page
    EXCEPT for the navigation */
            #container a {
                color: var(--kibpink);
                font-weight: bold;
				text-decoration:none;
                /* if you want to remove the underline
      you can add a line below here that says:
      text-decoration:none; */
            }

            #header {
                width: 100%;
                background-color: #5e4e8c;
                /* header color here! */
                height: 150px;
                /* this is only for a background image! */
                /* if you want to put images IN the header, 
      you can add them directly to the <div id="header"></div> element! */
                background-image: url("../img/header.png");
                background-size: cover;
				background-repeat: no-repeat;
				background-position: bottom left
            }

            /* navigation section!! */
            #navbar {
                height: 40px;
                background-color: var(--kibblue);
                /* navbar color */
                width: 100%;
				display: flex;
				justify-content: center;
				align-items: center;
            }
			
			#navbar a {
				color: white;
				font-size: 18px;
			}

			#navbar a:hover {
				color: #a49cba;
				filter: brightness(1.5)
			}

			.nav-links {
				padding: 0 10px;
			}

			.navbutton {
				background: none;
				border: none;
				font-weight: 800;
				color: white;
				font-size: 18px;
				font-family: 'Nunito', sans-serif;
				padding: 0 10px;
			}

			.navbutton:hover {
				cursor: pointer;
				color: #a49cba;
				filter: brightness(1.5)
			}

			.dropdown-entries {
				display: none;
				min-width: 120px;
			}

			.dropdown-entries a {
				padding: 2px 8px;
				text-align: center;
				border: solid #27195e 2px;
				border-top: solid #27195e 1px;
				background-color: #5b39b3;
			}

			.dropdown-entries a:nth-child(2) {
				background-color: var(--kibblue);
			}

			.dropdown-entries a:hover {
				background-color: var(--kibborderpink);
			}

			.dropdown-entries a:focus-within {
				background-color: var(--kibpink);
			}

			.dropdown:focus-within .dropdown-entries {
				display: flex;
				flex-direction: column;
				position: absolute;
			}

			.dropdown:hover .dropdown-entries {
				display: flex;
				flex-direction: column;
				position: absolute;
			}
			
			/* rest in peace to the old ul/li layout... the sacrifices we make for dropdown menus. currently here if the new layout goes south but will probably be removed later */
			
            /* #navbar ul {
                display: flex;
                padding: 0;
                margin: 0;
                list-style-type: none;
                justify-content: center;
            }

            #navbar li {
				padding: 10px 15px;
            }

            #navbar li a {
                color: #ffffff;
                font-weight: 800;
                text-decoration: none;
            }

            #navbar li a:hover {
                color: #a49cba;
            } */

            #flex {
                display: flex;
            }

            /* this colors BOTH sidebars
    if you want to style them separately,
    create styles for #leftSidebar and #rightSidebar */
            aside {
                background-color: var(--kibdarkpink);
                width: 200px;
                padding: 20px;
                font-size: smaller;
				border-radius: 15px;
				color: #fceaff;

                /* this makes the sidebar text slightly smaller */
            }


            /* this is the color of the main content area,
    between the sidebars! */
            main {
                background-color: white;
                flex: 1;
                padding: 20px;
                order: 2;
				color: black;
				border-radius: 15px;
            }
			
			#simple-main { 
				border: 3px solid var(--kibpink);
				border-radius: 10px;
			}

            /* what's this "order" stuff about??
    allow me to explain!
    if you're using both sidebars, the "order" value
    tells the CSS the order in which to display them.
    left sidebar is 1, content is 2, and right sidebar is 3! */

            */ #leftSidebar {
                order: 1;
            }

            #rightSidebar {
                order: 3;
            }

            footer {
                background-color: var(--kibblue);
                /* background color for footer */
                width: 100%;
                height: 40px;
                padding: 10px;
                text-align: center;
				border-radius: 10px;
                /* this centers the footer text */
				color: #fceaff;
            }

            h1,
            h2,
            h3 {
                color: var(--kibpink);
            }

            h1 {
                font-size: 25px;
				margin-top: 10px;
				margin-bottom: 10px;
            }
			
			h3 {
				margin-bottom: 0px;
				margin-top: 5px;
			}
			
			h4 {
				margin-bottom: 0px;
			}
			
			p {
				margin-bottom: 10px;
				margin-top: 5px;
			}
			
			h1.sidebar,
			h2.sidebar,
			h3.sidebar {
				color: white;	
			}
			a:link {
				text-decoration:none
			}
			
			a:hover {
				filter: brightness(1.5)
			}
			
			.postimage {
				img {
					width: 75%;
					display: block;
					margin-left: auto;
					margin-right: auto;
				}
			
			}

            strong {
                /* this styles bold text */
                color: var(--kibpink);
            }
			strong.sidebar {
				color: white;
			}

            /* this is just a cool box, it's the darker colored one */
            .box {
                background-color: #27195E;
                border: 3px solid #fff;
				border-radius: 15px;
				margin-top: 10px;
				max-height: 150px;
				overflow: auto;
            }
			
			h2.box-heading {
			color: white;
			text-align: center;
			padding: 0;
			margin-bottom: 0;
			}
			
			p.box-text {
				color: white;
				padding: 0 15px;
				font-size: 14px;
			}
			
			ul.box-text {
				padding-left: 25px;
				padding-right: 20px;
				margin-top: 5px;
			}
			
			hr {
				border: 1px solid var(--kibpink);
			}

            /* CSS for extras */

            #topBar {
                width: 100%;
                height: 30px;
                padding: 10px;
                font-size: smaller;
                background-color: #13092D;
            }
			
			/* it's time for unique stuff! */
			
			.sidebar-assets {
				img {
					height: 100%;
					width: 100%;
					object-fit: contain;
				}
				
				object {
					height: 100%;
					width: 100%;
					object-fit: contain;
				}
				
				p {
				}
			}
			
			.floater-BL {
					position: fixed;
					bottom: 0;
					left: 0;
					transition: transform .2s;
				
				a:hover {
					transform: scale(1.1);
					filter: brightness(1.1);
					animation: duckspin 3s linear infinite;
				}
				
			}
			
			@keyframes duckspin {
					0% {transform: rotate(0deg);}
					25% {transform: rotate(90deg);}
					50% {transform: rotate(180deg);}
					75% {transform: rotate(270deg);}
					100% {transform: rotate(360deg);}
				}
			
			.floater-BR {
				a {
					position: fixed;
					bottom: 0;
					right: 0;
					padding: 5px;
					padding-right: 10px;
					animation: chaofloat 1.5s linear infinite;
				}

				a:hover {
					filter: brightness(1.1);
				}
			}
			
			@keyframes chaofloat {
					0% {bottom: 0px;}
					10% {bottom: 0px;}
					25% {bottom: 2px;}
					50% {bottom: 7px;}
					60% {bottom: 7.1px;}
					75% {bottom: 4px;}
					90% {bottom: 1px;}
					100% {bottom: 0px;}
			}
			
			/* corkboard image map stuff */

			.image-mapper-shape {
				fill: rgba(0, 0, 0, 0);
			}
			g:hover .image-mapper-shape {
				stroke: white;
				stroke-width: 2px;
				opacity: 20%;
			}
			
			/* other stuff */
			
			@keyframes rainbow-text {
				0% {color: crimson;}
				20% {color: tomato}
				40% {color: mediumseagreen}
				60% {color: royalblue}
				80% {color: darkviolet}
				100% {color: crimson}
			}
			
			.rainbow-text {
				animation: rainbow-text 1.5s linear infinite;
			}

            /* BELOW THIS POINT IS MEDIA QUERY */

            /* so you wanna change the width of your page? 
    by default, the container width is 900px.
    in order to keep things responsive, take your new height,
    and then subtrack it by 100. use this new number as the 
    "max-width" value below
    */

            @media only screen and (max-width: 1000px) {
				
				#container {
				margin: 0;
				max-width: 100%;
				}
				
                #flex {
                    flex-wrap: wrap;
                }

                aside {
                    width: 100%;
                }

                /* the order of the items is adjusted here for responsiveness!
      since the sidebars would be too small on a mobile device.
      feel free to play around with the order!
      */
                main {
                    order: 1;
                }
				
				#simple-main {
				border: none;
			}

                #leftSidebar {
                    order: 2;
                }
				
				#leftSidebar p {
					font-size: 16px;
				}

                #rightSidebar {
                    order: 3;
                }

                /* #navbar ul {
                    flex-wrap: nowrap;
					justify-content: space-evenly;
                }
				
				#navbar li {
					font-size: 18px;
					padding-top: 8px;
					padding-left: 10px;
					padding-right: 10px;
				} */
				
				#navbar {
					justify-content: space-evenly;
				}
				
				#navbar a {
					font-size: 16.5px;
				}
				
				.nav-links {
					padding: 0 5px;
				}
				
				.navbutton {
					padding: 0;
					font-size: 16.5px;
				}
				
				.dropdown-entries {
					min-width: 70px;
				}
				
				.sidebar-assets
					img {
						display: none;
					} /* bunnybee doesn't display when the size is too small */
			
				.floater-BL {
					display: none
					}
					
				.floater-BR {
					display: none
					}
				
				.box {
					width: 75%;
					margin-left: auto;
					margin-right: auto;
				}
				
				.box li {
					font-size: 16px;
				}