/*
Author: Courtney Lewis
Date: 05/07/2026
File: styles.css
*/

/* CSS Reset */
* {
	margin: 0px;
	padding: 0px;
	border: 0px;
}
body {
    font-family: "DM Serif Display", serif;
    background-color: #b0b0b0;
    line-height: 20px;
}
/* Global Styles */
img {
	display: block;
    max-width: 100%;
    max-height: 100%;
}
header, section, main, article, blockquote, footer {
    background-color: #2e2e2e;
    color: #eaeaea;
    text-align: center;
	border-radius: 12px;
}
/* Navigation Styles */

.mobile-nav {
	position: relative;
}

.mobile-nav a {
	color: #fff;
	font-family: 'Francois One', sans-serif;
	text-align: center;
	font-size: 2em;
	text-decoration: none;
	padding: 3%;
	display: block;
}

.mobile-nav a.menu-icon {
	display: block;
	position: absolute;
	right: 0;
	top: 0;
}
.menu-icon {
	z-index: 9999;
	cursor: pointer;
}

/* Stacking Strategically */
nav li a {
    display: inline-block;
    color: #ff4500;
    text-decoration: none;
    padding: 20px;
    font-size: 20px;
	transition: transform 0.2s ease, background-color 0.2s ease;
}
nav li a:hover {
    background-color: #222;
	transform: scale(1.15);
}

/* Style rules for header content */
header h1,
header h2 {
	font-size: 20px;
}
header p {
	font-size: 15px;
}

/* Style rules for section content */
section {
	display: inline-block;
	padding: 10px;
	text-align: center;
	font-size: 10px;
	background-color: #2e2e2e;
	color: #eaeaea;
	border-radius: 12px;
}

/* Style rules for main content */
main {
	margin: 10px;
	padding: 10px;
	border: 5px solid;
	display: block;
	background-color: #2e2e2e;
	color: #eaeaea;
	text-align: center;
	border-radius: 12px;
}

/* Style rules for article content */
article {
	padding: 10px;
	display: block;
	background-color: #2e2e2e;
	color: #eaeaea;
	text-align: center;
	font-size: 10px;
	border-radius: 12px;
}

/* Style rules for blockquote content */
blockquote {
	padding: 10px;
	display: block;
	background-color: #2e2e2e;
	color: #eaeaea;
	text-align: center;
	font-size: 10px;
	border-radius: 12px;
}

/* Style rules for footer content */
footer {
	clear: left;
	background-color: #2e2e2e;
	color: #eaeaea;
	text-align: center;
	font-size: 15px;
	padding: 10px;
	border-radius: 12px;
}

footer a {
	color: #4b0082;
	text-decoration: none;
	color: #eaeaea;
}

/* Class style rules according to each page */



/* Class Selectors */
.block-style {
    background-color: #2e2e2e;
    padding: 15px;
    margin: 15px;
    border-radius: 12px;
}

.raidexp, .tech-skills {
	display: none;
}

.mobile {
	display: block;
}

.tablet-desktop {
	display: none;
}
#menu-links {
	display: none;
	flex-direction: column;
	background-color: #2e2e2e;
	position: absolute;
	top: 100%;
	right: 0;
	width: 200px;
	z-index: 1000;
	border-radius: 12px;
	transform: translateY(-10px);
	opacity: 0;
	transition: transform 0.25s ease, opacity 0.25s ease;
}
#menu-links a {
	padding: 12px;
	border-bottom: 1px solid #444;
	font-size: 1.2em;
}
#menu-links a:last-child {
	border-bottom: none;
}
#menu-links.active {
	display: flex;
	transform: translateY(0);
	opacity: 1;
}
#wka-logo.hidden {
	display: none;
}

.linked-in {
	text-align: center;
	margin-bottom: 10px;
}
.linked-in img {
	display: block;
	margin: 0 auto;
	width: 50px;
	height: auto;
	transition: transform 0.3s ease;
}
.linked-in a:hover {
	transform: scale(1.15);
}
.linked-in a:hover {
	
}
.linked-in a:hover {
	
}
.linked-in a:hover {
	
}

/* Form rules for mobile */

form {
    width: 90%;
    margin: 20px auto;
    display: flex;
    flex-direction: column;
}

label {
    margin-top: 10px;
    font-weight: bold;
}

input,
select,
textarea {
    padding: 10px;
    margin-top: 5px;
    border: 1px solid #777;
    border-radius: 5px;
}

textarea {
    min-height: 120px;
}

input[type="submit"] {
    margin-top: 20px;
    background-color: #333;
    color: white;
    cursor: pointer;
}

input[type="submit"]:hover {
    background-color: #555;
}


/* Tablet Design */

@media screen and (min-width: 426px) and (max-width: 768px) {
	body {
		display: grid;
		grid-template-columns: 1fr 1fr 1fr 1fr;
		grid-template-rows: auto auto auto auto auto auto;
		line-height: 20px;
	}
	
	nav {
		grid-column: 1/5;
		grid-row: 1/2;
		background-color: #0d0d0d;
		margin: 0;
		border-radius: 12px;
		padding: 15px 0;
	}

	nav ul {
		list-style-type: none;
		display: flex;
		justify-content: space-evenly;
		align-items: center;
		margin: 0;
		padding: 0;
	}

	nav li a {
		text-decoration: none;
		color: #ff7a1a; /* ember orange */
		font-weight: bold;
		font-size: 1.1em;
		transition: color 0.3s ease;
	}

	nav li a:hover {
		color: #ffb347; /* lighter ember glow */
	}
	header {
		grid-column: 1/5;
		grid-row: 2;
		column-count: 2;
		column-gap: 20px;
	}
	header figure {
		margin: 0;
		display: flex;
		flex-direction: column;
		align-items: center;
		gap: 8px;
	}
	header figure img {
		display: block;
		width: 100%;
		max-width: 180px;
		height: auto;
		border-radius: 15px;
	}
	header figcaption {
		display: block;
		text-align: center;
	}
	header section {
		display: block;
	}
	.discord {
		display: block;
	}
	section {
		grid-column: 1/5;
		grid-row: 3;
		display: flex;
		gap: 30px;
		align-items: flex-start;
	}
	section aside img {
		height: auto;
		width: auto;
	}
	section img {
		display: block;
		width: 50%;
		height: auto;
		border-radius: 15px;
	}
	main {
		grid-column: 2/5;
		grid-row: 4/6;
		display: grid;
		grid-template-columns: 1fr 1fr;
		grid-template-rows: auto auto auto auto;
		grid-gap: 20px;
	}
	main img {
		grid-column: 2/3;
		grid-row: 3/5;
		display: block;
		width: 100%;
		height: auto;
	}
	main aside ul {
		list-style-type: none;
	}
	.introtext {
		grid-column: 1/2;
		grid-row: 1/2;
		display: block;
	}
	.tech-skills {
		grid-column: 2/3;
		grid-row: 1/2;
		display: block;
		width: 100%;
		height: 100%;
	}
	.mainfocus {
		grid-column: 1/2;
		grid-row: 1/2;
		display: block;
	}
	.raids {
		grid-column: 2/3;
		grid-row: 1/2;
		display: block;
	}
	.raidexp {
		display: block;
		grid-column: 1/3;
		grid-row: 2/5;
	}
	
	
	
	article {
		grid-column: 1/2;
		grid-row: 4;
	}
	blockquote {
		grid-column: 1/2;
		grid-row: 5;
	}
	footer {
		grid-column: 1/5;
		grid-row: 6/7;
	}
	footer p, footer a {
		font-size: 15px;
		box-shadow: 0 6px 18px rgba(0, 0, 100, 0.2);
}
	article,
	blockquote,
	.block-style,
	.header-style {
		display: block;
	}
	nav ul {
		display: flex;
		list-style: none;
	}
	header h1,
	main h2,
	section h2,
	article h2,
	article h3,
	blockquote h2,
	blockquote h3 {
		font-size: 15px;
	}
	header p,
	main p,
	section p,
	article p,
	blockquote p {
		font-size: 15px;
	}
	header ul {
	}
	section ul {
		font-size: 10px;
	}
	 form {
        width: 70%;
    }
	
	.tablet-desktop {
		display: block;
	}
	
	.mobile, .mobile-nav {
		display: none;
	}
	.linked-in {
        width: 45px;
    }
}

/* Laptop Viewport */

@media screen and (min-width: 769px) and (max-width: 1024px) {
	body {
		display: grid;
		grid-template-columns: 1fr 2fr 1fr;
		grid-template-rows: auto auto auto auto auto auto;
		font-family: "DM Serif Display", serif;
		line-height: 40px;
	}
	nav {
		grid-column: 1/4;
		grid-row: 1/2;
		background-color: #0d0d0d;
		margin: 0;
		border-radius: 12px;
		padding: 15px 0;
	}

	nav ul {
		list-style-type: none;
		display: flex;
		justify-content: space-evenly;
		align-items: center;
		margin: 0;
		padding: 0;
	}

	nav li a {
		text-decoration: none;
		color: #ff7a1a; /* ember orange */
		font-weight: bold;
		font-size: 1.1em;
		transition: color 0.3s ease;
	}

	nav li a:hover {
		color: #ffb347; /* lighter ember glow */
	}
	
	
	header {
		grid-column: 1/4;
		grid-row: 2/3;
		display: grid;
		grid-template-columns: 1fr 1fr;
		grid-template-rows: auto auto;
	}
	header img {
		height: 80%;
		width: 80%;
	}
	header section {
		grid-column: 2/3;
		grid-row: 1/3;
	}
	figure {
		grid-column: 1/2;
		grid-row: 1/3;
	}
	figcaption {
		text-align: center;
	}
	main {
		grid-column: 1/3;
		grid-row: 3/5;
		display: grid;
		grid-template-columns: 1fr 1fr;
		grid-template-rows: auto auto auto auto;
	}
	section {
		grid-column: 3/4;
		grid-row: 3/4;
	}
	article {
		grid-column: 3/4;
		grid-row: 4/5;
	}
	blockquote {
		grid-column: 1/4;
		grid-row: 5/6;
	}
	footer {
		grid-column: 1/4;
		grid-row: 6/7;
	}
	
	header h1,
	header h2,
	main h2,
	section h2,
	article h3,
	blockquote h3 {
		font-size: 40px;
	}
	header p,
	main p,
	section p,
	article p,
	blockquote p,
	footer p {
		font-size: 35px;
	}
	header ul,
	section ul {
		font-size: 30px;
	}
	
	.mainfocus {
		grid-column: 1/3;
		grid-row: 1/2;
	}
	.raids {
		grid-column: 1/3;
		grid-row: 2/3;
	}
	.raidexp {
		grid-column: 1/3;
		grid-row: 3/4;
	}
	
	
	.introduction {
		grid-column: 1/3;
		grid-row: 1/2;
	}
	.introtext {
		grid-column: 1/3;
		grid-row: 2/3;
	}
	.tech-skills {
		grid-column: 1/3;
		grid-row: 3/4;
	}
	.intro {
		grid-column: 1/3;
		grid-row: 4/5;
	}
	
	
	.raids ul {
		list-style-type: none;
	}
	.raidexp, .tech-skills {
		display: table;
	}
	.raidexp th, .raidexp td, .tech-skills th, .tech-skills td {
		border: 1px solid gray;
	}
	 form {
        width: 50%;
    }

    input,
    select,
    textarea {
        font-size: 1rem;
    }
	.tablet-desktop {
		display: block;
	}
	
	.mobile, .mobile-nav {
		display: none;
	}
    .linked-in {
        width: 45px;
    }
}

/* Large Laptop/Desktop Viewport */

@media screen and (min-width: 1025px) and (max-width: 1440px) {
	body {
		display: grid;
		grid-template-columns: 2fr 1fr;
		grid-template-rows: auto auto auto auto auto;
		gap: 20px;
		line-height: 40px;
		margin: 0;
		padding: 20px;
		box-sizing: border-box;
	}
	nav {
		grid-column: 1/3;
		grid-row: 1/2;
		background-color: #0d0d0d;
		margin: 0;
		border-radius: 12px;
		padding: 15px 0;
	}

	nav ul {
		list-style-type: none;
		display: flex;
		justify-content: space-evenly;
		align-items: center;
		margin: 0;
		padding: 0;
	}

	nav li a {
		text-decoration: none;
		color: #ff7a1a; /* ember orange */
		font-weight: bold;
		font-size: 1.1em;
		transition: color 0.3s ease;
	}

	nav li a:hover {
		color: #ffb347; /* lighter ember glow */
	}
	header {
		grid-column: 1 / 2;
		grid-row: 2 / 3;
		padding: 20px;
	}
	section {
		grid-column: 2 / 3;
		grid-row: 2 / 3;
		padding: 20px;
	}
	main {
		grid-column: 1 / 2;
		grid-row: 3 / 4;
		padding: 20px;
	}
	article {
		grid-column: 2 / 3;
		grid-row: 3 / 4;
		padding: 20px;
	}
	blockquote {
		grid-column: 1 / 2;
		grid-row: 4 / 5;
		padding: 20px;
	}
	footer {
		grid-column: 1 / 3;
		grid-row: 5 / 6;

		padding: 20px;
		text-align: center;
	}
	.block-style {
		display: block;
	}
	.header-style {
		display: block;
	}

	header h1,
	header h2,
	main h2, 
	section h2,
	article h2,
	article h3,
	blockquote h3 {
		font-size: 40px;
	}

	header p,
	main p,
	section p,
	article p,
	blockquote p,
	footer p {
		font-size: 35px;
	}

	header ul,
	section ul {
		font-size: 30px;
	}
	aside.raids ul {
		list-style-type: none;
	}
	 form {
        width: 50%;
    }

    input,
    select,
    textarea {
        font-size: 1rem;
    }
	.tablet-desktop {
		display: block;
	}
	
	.mobile, .mobile-nav {
		display: none;
	}
	.linked-in {
        width: 45px;
    }
}
/* Large Desktop Viewport */

@media screen and (min-width: 1441px) and (min-width: 2560px) {
	body {
		display: grid;
		grid-template-columns: 2fr 1fr;
		grid-template-rows: auto auto auto auto auto;
		gap: 20px;
		line-height: 40px;
		margin: 0;
		padding: 20px;
		box-sizing: border-box;
	}
	nav {
		grid-column: 1/3;
		grid-row: 1/2;
		background-color: #0d0d0d;
		margin: 0;
		border-radius: 12px;
		padding: 15px 0;
	}

	nav ul {
		list-style-type: none;
		display: flex;
		justify-content: space-evenly;
		align-items: center;
		margin: 0;
		padding: 0;
	}

	nav li a {
		text-decoration: none;
		color: #ff7a1a; /* ember orange */
		font-weight: bold;
		font-size: 1.1em;
		transition: color 0.3s ease;
	}

	nav li a:hover {
		color: #ffb347; /* lighter ember glow */
	}
	header {
		grid-column: 1 / 2;
		grid-row: 2 / 3;
		padding: 20px;
	}
	section {
		grid-column: 2 / 3;
		grid-row: 2 / 3;
		padding: 20px;
	}
	main {
		grid-column: 1 / 2;
		grid-row: 3 / 4;
		padding: 20px;
	}
	article {
		grid-column: 2 / 3;
		grid-row: 3 / 4;
		padding: 20px;
	}
	blockquote {
		grid-column: 1 / 2;
		grid-row: 4 / 5;
		padding: 20px;
	}
	footer {
		grid-column: 1 / 3;
		grid-row: 5 / 6;

		padding: 20px;
		text-align: center;
	}
	.block-style {
		display: block;
	}
	.header-style {
		display: block;
	}

	header h1,
	header h2,
	main h2, 
	section h2,
	article h2,
	article h3,
	blockquote h3 {
		font-size: 40px;
	}

	header p,
	main p,
	section p,
	article p,
	blockquote p,
	footer p {
		font-size: 35px;
	}

	header ul,
	section ul {
		font-size: 30px;
	}
	aside.raids ul {
		list-style-type: none;
	}
	 form {
        width: 50%;
    }

    input,
    select,
    textarea {
        font-size: 1rem;
    }
	.tablet-desktop {
		display: block;
	}
	
	.mobile, .mobile-nav {
		display: none;
	}
	.linked-in {
        width: 45px;
    }
}