/* start light mode styling */
	:root {
		
		--text: rgb(34, 44, 23);
		--border: rgb(54, 58, 53);
		--accent: rgb(53, 128, 0);
		--bg: #a1b499;
		--gradientTop: white;
		--gradientBottom: rgba(242, 255, 240, 0.8);
	}
	header {
		background: url('***light mode banner image***');
	}
/* end light mode styling */


/* start dark mode styling */
	@media (prefers-color-scheme: dark) {
		:root {
			--text: white;
			--border: #5a7678;
			--accent: #74C365;
			--bg: rgba(31, 60, 0, 0.8);
			--gradientBottom: rgb(20, 60, 0);
			--gradientTop: rgb(55, 79, 47);
			a:link { color: rgb(199, 230, 173); }
		}
		header {
			background: url('***dark mode banner image***');
		}
	}
/* end dark mode styling */


* { 
	box-sizing: border-box;
}
body {
	padding: 10px;
	font-family: 'MS PGothic', sans-serif;
	color: var(--text);
	/* page background pattern */
	background-color: black;
	background-image: url("/media/stars.gif");
	background-size: cover;
	background-position: 0 0, 0 0, 10px 18px, 10px 18px, 0 0, 10px 18px;
}


.container {
	max-width: 55rem;
	margin: 5vw auto 12px auto;
	border: 6px ridge var(--border);
	outline: 3px solid var(--gradientTop);
	outline-offset: 4px;
	border-radius: 10px;
	display: flex;
	flex-wrap: wrap;
	padding: 5px;
	gap: 5px;
	position: relative;
	z-index: index 9;

	/* container background pattern */
	background-color: var(--gradientBottom);
	background-image:  repeating-radial-gradient( circle at 0 0, transparent 0, var(--gradientBottom) 9px ), repeating-linear-gradient( var(--bg), var(--bg));
}
.container-blog {
	max-width: 77rem;
	margin: 5vw auto 12px auto;
	border: 6px ridge var(--border);
	outline: 3px solid var(--gradientTop);
	outline-offset: 4px;
	border-radius: 10px;
	display: flex;
	flex-wrap: wrap;
	padding: 5px;
	gap: 5px;
	position: relative;
	z-index: index 9;

	/* container background pattern */
	background-color: var(--gradientBottom);
	background-image:  repeating-radial-gradient( circle at 0 0, transparent 0, var(--gradientBottom) 9px ), repeating-linear-gradient( var(--bg), var(--bg));
}
.rcorner1-sticker {

	position:absolute;
	bottom: -125px;
	right: -150px;

}
.rtcorner1-sticker {

	position:absolute;
	top: -50px;
	right: -70px;

}
.rcorner2-sticker {

	position:absolute;
	bottom: -125px;
	right: -100px;
	transform: rotate(20deg);

}
.lcorner1-sticker {

	position:absolute;
	bottom: -90px;
	left: -50px;

}
.lcorner2-sticker {

	position:absolute;
	bottom: -200px;
	left: -25px;
	z-index: 1;

}
.instagram-sticker {

	position:absolute;
	bottom: -165px;
	left: 50px;
	z-index: 1;

}
.instagram-sticker:hover {
filter: drop-shadow(1px 1px 0 black) 
    drop-shadow(-1px 1px 0 black) 
    drop-shadow(1px -1px 0 black) 
    drop-shadow(-1px -1px 0 black);
}

.bluesky-sticker {

	position:absolute;
	bottom: -165px;
	left: 120px;
	z-index: 1;

}
.bluesky-sticker:hover {
filter: drop-shadow(1px 1px 0 black) 
    drop-shadow(-1px 1px 0 black) 
    drop-shadow(1px -1px 0 black) 
    drop-shadow(-1px -1px 0 black);

}
.imgtxt-tama {
 position:absolute;
	bottom: -125px;
	left: -150px;
}
.imgtxt-tama span {
  opacity: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 99;
  font-size: 2.5rem;
  color: #FFF; 
  filter: drop-shadow(1px 1px 0 black) 
    drop-shadow(-1px 1px 0 black)
    drop-shadow(1px -1px 0 black)
    drop-shadow(-1px -1px 0 black);
}
.imgtxt-tama:hover span, .imgtxt-tama:focus span {
  opacity: 1;
}
.imgtxt-tama:hover img, .imgtxt-tama:focus img {
	transform: rotate(10deg);
	filter:brightness(70%);
  /* add hover effects like transform or filter to your images here! */
}
.imgtxt-wii {

	
	z-index: -1;
}
.imgtxt-wii span {
  opacity: 0;
  position:absolute;
  top: 27%;
  right: 8%;
  transform: translate(-50%, -50%);
  z-index: 99;
  font-size: 2.5rem;
  color: #FFF;
  filter: drop-shadow(1px 1px 0 black) 
    drop-shadow(-1px 1px 0 black)
    drop-shadow(1px -1px 0 black)
    drop-shadow(-1px -1px 0 black);
}
.imgtxt-wii:hover span, .imgtxt-wii:focus span {
  opacity: 1;
}
.imgtxt-wii:hover img, .imgtxt-wii:focus img {
	filter:brightness(70%);
}
.tama-sticker {
	position:inherit;
	bottom: 10px;
	left: -20px;
	
	

}
.DS-sticker {
	position: absolute;
	right: -370px;
	top: 10px;
	z-index: -1;
}
/* these control the column widths */
.smaller { flex: 0%; }
.small { flex: 1 1 9%; }
.medium { flex:1 1 1%; }
.large { flex: 1 1 82%; }
.full { flex: 1 1 100%; }
.half { flex: 1 1 49%; }


/*Ashley's Classes, feel free to copy code*/

.smallernoborder { flex: 0%; border: 0px; }
.smallnoborder { flex: 1 1 9%; border: 0px; }
.mediumnoborder { flex:1 1 1%; border: 0px; }
.largenoborder { flex: 1 1 82%; border: 0px; }
.fullnoborder { flex: 1 1 100%; border: 0px; }

.halfnoborder { 
	flex: 1 1 45%; 
	border: 0px; 
	
}

.pinkhalfnoborder { 
	flex: 1 1 45%; 
	border: 0px; 
	--gradientTop: rgb(125, 95, 125);
	--gradientBottom: rgb(234, 214, 233);
	
}




.turnflexbackon { display: inline-flex; width: 100%; }
/*endof Ashley's Classes*/

header {
	background-image: url("/media/cb3eb23280eed794d28892cc647053e6.jpg");
	background-color: black;
	background-size: 100%;
	background-repeat: no-repeat;
	background-position: right;
	background-position: bottom;
	width: 100%;
	height: 120px; /* change banner height here*/
	border: 2px ridge var(--border);
	border-radius: 5px;
	position: relative;
}
header span {
	font-size: 2.5rem;
	position: absolute;
	bottom: 0;
	left: 10px;
	margin: 10px;
	font-weight: bold;
	text-shadow: 3px 3px white,
		-1px 1px var(--text),
		1px -1px var(--accent),
		-1px -1px var(--accent);
	color: black;
}


nav {
	font-size: 25px;
	border: 2px ridge var(--border);
	border-radius: 5px;
	padding: 5px;
	background: linear-gradient(var(--gradientTop),var(--gradientBottom));
}
nav a {
	/*font-size: 20px;*/
	display: block;
	margin: 5px;
	background: linear-gradient(to right,var(--bg),var(--gradientBottom));
	border-radius: 5px;
	padding: 2px 7px;
	text-decoration: none;
}
nav a:link, nav a:visited { 
	color: var(--text);
}
nav a:hover, nav a:focus {
	background: linear-gradient(to right,var(--bg), var(--gradientBottom), var(--gradientTop));
}



/* optional button styling like in the preview */
div.small > img {
	display: block;
	margin: 5px auto;
	border:2px ridge var(--border);
	border-radius: 5px;
}


section {
	border: 2px ridge var(--border);
	border-radius: 5px;
	background: linear-gradient(var(--gradientTop),var(--gradientBottom));
	padding: 5px;
}

.section-2 {
	border: 2px ridge var(--border);
	border-radius: 5px;
	background: linear-gradient(var(--gradientTop),var(--gradientBottom));
	background-image: 
	padding 1px;
}

div.scroll {
  background-color: #fed9ff00;
  width: fill;
  height: 500px;
  overflow-x: auto;
  overflow-y: auto;
  text-align: center;
  padding: 20px;
}

div.scrollnav {
  background-color: #fed9ff00;
  width: 200;
  height:500px;
  overflow-x: auto;
  overflow-y: auto;
  text-align: center;
  padding: 0px;
}
div.scrollnav2 {
  background-color: #fed9ff00;
  width: 200;
  height:300px;
  
  overflow: scroll;
  scrollbar-color: rgb(126, 64, 130) rgba(126, 91, 123, 0.271);
  scrollbar-width: thick;
}


footer {
	text-align: center;
	margin-bottom: 5vw;
	font-size: 0.8rem;
}
footer a { 
	text-decoration: none;
}


h1, h2, h3, h4, h5, h6, p  { 
	margin: 5px;
	line-height: 1.2;
}

h1 { 
	font-size: 1.9rem;
	letter-spacing: 2px;
	font-weight: normal;
	text-align: center;
	border-bottom: 2px ridge var(--border);
	padding-bottom: 5px;
}
h2 { 
	font-size: 1.25rem;
	font-weight: normal;
	text-align: center;
}
h3 { 
	font-size: 1.1rem;
}
h4 { 
	font-size: 1rem;
	color: var(--accent);
	padding-left: 12px;
}
p {
	font-size: 1.65rem;
}

h5 { 
	font-size: 1.25rem;
	letter-spacing: 2px;
	font-weight: normal;
	text-align: center;
	border-bottom: 2px ridge var(--border);
	padding-bottom: 5px;
}

/* prevents overflow on smaller screens */
img { max-width: 100%; }
pre { overflow-x: auto; }


a:hover, a:focus {
	font-style: italic;
}
a:visited {
	color: var(--accent);
}

img {
	height:auto;
}

.slides { flex: 1 1 100%; 
}
.slider-wrapper {
	position:relative;
	max-width: 60rem;
	max-height: 40rem;
	margin: 0 auto;

}
.slider{
	display:flex;
	max-width: 55rem;
	max-height: 10rem;
	overflow-x: hidden;
	scroll-snap-type: x mandatory;
	scroll-behavior: smooth;
	border-radius: 0.5rem;
	 -webkit-overflow-scrolling: touch; /* Smooth scrolling on iOS */
}
.slider::-webkit-scrollbar {

    display: none; /* Safari and Chrome */

}
.slider img {
	flex: 1 0 100%;
	scroll-snap-align: start;
	object-fit:cover;
	object-position: center;
}

.slider-nav {
display:flex;
column-gap: 1rem;
position: absolute;
bottom: 1.25rem;
left: 47%;
transform:translateX (-50%);
z-index: 1;
}
.slider-nav a {
	width: 1.5rem;
	height: 1rem;
	border-radius: 50%;
	background-color: #fff;
	opacity: 0.75;
	transition: opacity ease 250ms;
}
.slider-nav a:hover {
	opacity: 1;
}



/* GALLERY SIDE BUTTON FUNCTIONING*/
.gallery-sidebutton {
	position: relative;
}

/* Dropup content (Hidden by Default) */
.sidebutton-content {
	display:none;

	padding: 0px;
	margin: 0px;
	position: absolute;
	left: 100%;
	top: -5px; /* margin of parent */
	z-index: 1;
}

/* Show the dropup menu on hover */
.gallery-sidebutton:hover .sidebutton-content {
	display: contents;
}