/*Make box-sizing consistent for all elements*/
*,
*::before,
*::after {
  box-sizing: border-box;
}

/*Applying smooth transitions and a base font*/
* {
  transition: all 0.3s ease-in-out;
  font-family: "Fira Code", monospace;
}

/*Body styling with background image and fade-in*/
body {
  display: flex;
  flex-direction: column;
  font-family: "Fira Code", monospace;
  font-size: 18px;
  color: #ffffff;
  background-image: url('../images/background2.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  max-width: auto;
  min-height: 100vh;
  padding: 0;
  margin: 0;
  opacity: 0;
  animation: fadeIn 0.6s ease forwards;
  will-change: opacity;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

main{
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  justify-content: center;
  flex: 1;
}

main p{
  font-size: 20px;
  text-align: center;
  color: #ffffff;
  font-weight: 200;
  margin-top: 0;;
}

/*Fade-in animation for body*/
@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

/*Headings font and style*/
h1, h2, h3, h4 {
  font-family: "Fira Code", monospace;
  text-align: center;
  letter-spacing: 1px;
  text-shadow: 0 1px 2px rgba(0,0,0,0.8);
  margin-top: 0;
}

/*Styling for h1*/
h1 {
  color: #ffffff;
  font-size: 45px;
  margin-bottom: 32px;
  font-weight: 800;
}

h2, h3{
  color: #e4c560;
  margin-bottom: 20px;
}

h3{
  font-size: 25px;
}

h4{
  color: #e4e4e4;
  font-weight: 600;
  font-size: 20px;
  margin-bottom: 20px;
}

/*Cursor blinking animation*/
@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

/*Used for elements showing typing cursor*/
.typing::after {
  content: '|';
  animation: blink 1s step-start infinite;
  margin-left: 5px;
}

/*Remove cursor when stopped*/
.stopped::after {
  content: none;
}

/*Disable pseudo-elements for these*/
#typed-title::after,
#typed-heading::after {
  content: none;
}

/*
  Layout Containers
*/

/*Typed heading minimum height and inline-block*/
#typed-heading {
  color: #ffffff;
  text-align: left;
  font-weight: 900;
  margin-bottom: 10px;
}

#typed-title{
  text-align: left;
  margin-left: 5px;
  color: #ffffff;
}

/*
  Navigation Styles
*/

/*Header container with sticky positioning*/
header {
  top: 0;
  z-index: 100;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: transparent;
  padding: 16px 32px;
  margin-top: 15px;
}

nav{
  background: linear-gradient(145deg, #2c2f35, #1f1f23);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.7);
  padding: 10px 30px;
  border-radius: 12px;
  height: 70px;
  display: flex;
  align-items: center;
  padding: 0 30px; 
}

/*Navigation list - flex row*/
nav ul {
  display: flex;
  flex-direction: row;
  gap: 25px;
  justify-content: center;
  align-items: center;
  padding: 0;
  margin: 0;
  list-style: none;
}

/*Navigation list items*/
nav li {
  list-style: none;
}

/*Navigation links styling*/
nav li a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  font-size: 20px;
  font-weight: 600;
  color: #ffffff;
  text-decoration: none;
  border-radius: 6px;
  position: relative;
  overflow: hidden;
  background: none;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
}

/*Navigation link hover background animation*/
nav li a::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: #578b9b;
  z-index: -1;
  transition: left 0.3s ease;
}

/*Move hover background on hover*/
nav li a:hover::before {
  left: 0;
}

/*Change link color and weight on hover*/
nav li a:hover {
  color: #121212;
  font-weight: 700;
  transform: translateY(-2px);
}

/*Active navigation link style*/
nav li a.active {
  background-color: #fc9ad1;
  color: #1e1e1e;
  font-weight: 600;
}

/*
  Lists & Preparing Page
*/

/*Remove default bullets from all lists*/
li {
  list-style-type: none;
}

/*----Home Page Sections----*/

.home-container{
  max-width: 1200px;
  padding: 32px;
  margin: 0 auto;
}

/*About Me section with background, shadow, and hover effect*/
.about-me {
  background: linear-gradient(145deg, #2e2f31, #1f1f23);
  padding: 32px 40px;
  border-radius: 16px;
  margin: 20px auto;
  max-width: 900px;
  color: #f5f5f5;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.6);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/*Hover lift for about me section*/
.about-me:hover {
  transform: translateY(-5px);
}

/*Wrapper to align image and text side by side*/
.about-wrapper {
  display: flex;
  align-items: center;
  gap: 32px;
}

/*Image style*/
.about-photo {
  width: 250px;
  height: 250px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
  flex-shrink: 0;
  border: 4px solid #ffffff;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.6);
}

/*Text section*/
.about-text {
  flex: 1;
}

.about-text p {
  max-width: 700px;
  margin: 0;
  font-size: 17px;
  line-height: 1.6;
}

.about-text h3{
  margin-bottom: 10px;
}

/*--Resume Styling--*/
.resume-download {
  text-align: center;
  margin-top: 20px;
  margin-left: auto;
  margin-right: auto;
  background: linear-gradient(145deg, #5a5a5a, #1f1f23);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.6);
  padding: 10px 20px;
  border-radius: 12px;
  max-width: 200px;
}

.resume-download a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: #ffffff;
  font-weight: 700;
  font-size: 16px;
}

.resume-download:hover {
  transform: translateY(-5px);
}

.resume-download:hover a {
  color: #FFD700;
}

/*---Education Section---*/

.education-section {
  max-width: 900px;
  background: linear-gradient(145deg, #2e2f31, #1f1f23);
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.4);
  margin: 0;
  padding: 20px;
  margin: 20px 0;
}

.education-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/*List of skills with flexible wrapping*/
.education ul {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.education-degree {
  min-width: 250px;
}

.education-degree p{
  font-size: 19px;
}


.education:hover {
  transform: translateY(-9px);
}

.degree{
  text-align: center;
  padding: 0;
}

.grad-date {
  display: block;
  margin-top: 4px;
  font-style: italic;
  color: #cfcfcf;
}

.certifications-list {
  display: flex;
  flex-direction: row;
  gap: 12px;
  padding: 0;
  margin-top: 16px;
  list-style: none;
  align-items: center;
}

.certifications-list li {
  list-style: none;
}

.certification-btn {
  padding: 8px 16px;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  font-weight: 200;
  border-radius: 12px;
  background: linear-gradient(145deg, #3a3b3f, #2d2d31);
  border: 1px solid rgba(230, 230, 230, 0.25);
  box-shadow: 0 4px 20px rgba(255, 255, 255, 0.05), 0 0 10px rgba(255, 255, 255, 0.04);
  color: #e4e4e4;
  transition: background-color 0.3s ease, transform 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 6px; 
}

.certification-btn:hover {
  background-color: #333c42;
  transform: translateY(-5px);
}

/*Skills section container - Home page*/
.skills-section {
  max-width: 900px;
  background: linear-gradient(145deg, #2e2f31, #1f1f23);
  border-radius: 12px;
  margin: 20px 0;
  padding: 20px;
}

.skills-section h2 {
  margin-bottom: 20px;
}

/*List of skills with flexible wrapping*/
.skills-list {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.skill-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  padding: 0;
  margin-top: 16px;
}

.skill-list li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  margin: 8px;
  border-radius: 12px;
  background: linear-gradient(145deg, #3a3b3f, #2d2d31);
  border: 1px solid rgba(230, 230, 230, 0.25);
  box-shadow: 0 4px 20px rgba(255, 255, 255, 0.05), 0 0 10px rgba(255, 255, 255, 0.04);
  color: #e4e4e4;
  transition: transform 0.3s ease;
}

.skill-list li:hover {
  transform: translateY(-9px);
}

.skill-list img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

/*Skills categorys*/
.skill {
  width: 100%;
  cursor: default;
  color: #ffffff;
  font-weight: 200;
  box-sizing: border-box;
}

/*----Projects.html Section----*/

.project-container{
    max-width: 1200px;
    padding: 32px;
    margin: 0 auto;
    padding: 32px 40px;
    border-radius: 12px;
}

/*Projects section container*/
.projects {
  max-width: 1000px;
  margin: 0 auto 60px;
}

/*List of projects with flexible wrapping*/
.project-list {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

/*Individual project card styling*/
.project {
  border: 1px solid rgb(38, 37, 48);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.7);
  border-radius: 8px;
  background: linear-gradient(145deg, #2e2f31, #1f1f23);
  padding: 20px;
  width: calc(50% - 15px);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  box-sizing: border-box;
  text-align: center;
  display: flex;
  flex-direction: column;
}


/*Project image styling*/
.project img {
  width: 100%;
  height: auto;
  margin-bottom: 16px;
  display: block;
}

/*Project title*/
.project h3 {
  margin-bottom: 10px;
}

.projects h2 {
  margin-bottom: 10px;
  color: #FBFF00;;
}

/*Project description paragraph*/
.project p {
  font-size: 17px;
  text-align: center;
  margin-bottom: 16px;
}

/*Footer for each Project*/
.project-footer {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

/*Individual Project links*/
.project-footer a {
  display: inline-block;   
  color: #ffffff;  
  font-weight: 600;
  background: linear-gradient(145deg, #5a5a5a, #1f1f23);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.6);
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 8px;
  transition: all 0.3s ease;
  text-align: center;
  margin: 0 auto; 
}

.project-footer a:hover {
  background-color: #d4b24a;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.button-group {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

/*Project Icons for projects page*/
.tech-icons {
  margin-top: 12px;
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}

.tech-icons img {
  height: 38px;
  width: auto;
  transition: transform 0.2s ease;
  filter: drop-shadow(0 2px 2px rgba(0, 0, 0, 0.4));
}

.tech-icons img:hover {
  transform: scale(1.1);
  cursor:default;
}

/*----All Project pages Styling----*/
.project-wrapper {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
  border-radius: 12px;
}

.project-wrapper p{
  font-size: 18px;
  font-weight: 300;
  text-align: center;
}

/*Each Section on the projects page*/
.project-section {
  margin-top: 32px;
  background: linear-gradient(145deg, #2e2f31, #1f1f23);
  border-radius: 12px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.7);
  padding: 20px;
  box-sizing: border-box;
}

.project-section:hover{
  transform: translateY(-5px);
}

.project-section h2 {
  font-size: 27px;
  margin: 15px 0px;
}

.project-section h1 {
  color: #e4c560;
}

.project-content {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: center;
  justify-content: center;
  margin: 22px 10px;
}

.project-content img {
  max-width: 500px;
  max-height: 500px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
  flex: 1 1 500px;
}

/*The image for all projects*/
.project-image{
  max-width: 500px;
  max-height: 500px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
}

.project-image:hover {
  cursor: pointer;
  opacity: 0.9;
  transform: scale(1.02);
  transition: 0.2s ease;
}

.project-content p {
  flex: 1 1 400px;
  color: #ffffff;
  font-size: 18px;
  line-height: 1.6;
  padding: 5px;
}

.project-content ul {
  flex: 1 1 250px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.project-content ul li{
  display: inline-block; 
  font-weight: 300;
  padding: 9.6px 16px;
  background: linear-gradient(145deg, #3a3b3f, #2d2d31);
  border: 1px solid rgba(230, 230, 230, 0.25);
  box-shadow: 0 4px 20px rgba(255, 255, 255, 0.05), 0 0 10px rgba(255, 255, 255, 0.04);
  border-radius: 12px;
  color: #e4e4e4;
  cursor: default;
  transition: transform 0.2s;
  text-align: center;
  margin: 10px;
  font-size: 16px;
}

.project-content ul li:hover{
  transform: translateY(-3px);
}

.tech-section {
  margin-top: 32px;
  display: flex;
  background: linear-gradient(145deg, #2e2f31, #1f1f23);
  padding: 15px;
  border-radius: 12px;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.tech-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 32px;
  padding: 0;
  margin: 16px 0;
  list-style: none;
  color: #ffffff;
}

.tech-list li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  margin: 8px;
  border-radius: 12px;
  background: linear-gradient(145deg, #3a3b3f, #2d2d31);
  border: 1px solid rgba(230, 230, 230, 0.25);
  box-shadow: 0 4px 20px rgba(255, 255, 255, 0.05), 0 0 10px rgba(255, 255, 255, 0.04);
  color: #e4e4e4;
  transition: transform 0.3s ease;
  cursor: default;
}

.tech-list img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.tech-list li:hover{
  transform: translateY(-5px);
}

.github-btn {
  margin: 25px 0;
  text-align: center;
  background: linear-gradient(145deg, #5a5a5a, #1f1f23);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.6);
  padding: 10px 20px;
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  border: none;
  cursor: pointer;
  border-radius: 8px;
  font-family: inherit;
  transition: background-color 0.3s ease, transform 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px; 
  text-decoration: none; 
}

.github-btn:hover {
  background-color: #272727;
  color: #e4c560;
  transform: translateY(-2px);
}

.github-icon {
  width: 40px;
  height: 40px;
}

.project-btn-group{
  display: flex;
  justify-content: center;
  flex-direction: row;
  gap: 20px;
  flex-wrap: wrap;
}

.project-btn {
  margin: 25px 0;
  text-align: center;
  background: linear-gradient(145deg, #5a5a5a, #1f1f23);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.6);
  padding: 10px 20px;
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  cursor: pointer;
  border-radius: 8px;
  font-family: inherit;
  transition: background-color 0.3s ease, transform 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.project-btn:hover {
  background-color: #272727;
  color: #e4c560;
  transform: translateY(-2px);
}

.gif-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 24px;
}

.styled-gif {
  max-width: 100%;
  width: 500px;
  border-radius: 12px;
  background-color: rgba(255, 255, 255, 0.05);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  padding: 16px;
}

/*----Keyboard Vault page Styles----*/

.kv-intro {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 32px;
  background: linear-gradient(145deg, #2e2f31, #1f1f23);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.7);
  border-radius: 12px;
  padding: 20px;
  gap: 20px;
  text-align: center;
  max-width: 1000px;
  margin: 20px auto;
}

.kv-intro h1{
  color: #e4c560;
  margin-bottom: 0px;
}


.intro-gif-col {
  flex: 1 1 400px;
}

.intro-gif-col img {
  width: 100%;
  max-width: 700px;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.9);
}

/*----Footer Styles----*/

/*Footer text styling*/
footer {
  width: 100%;
  text-align: center;
  justify-content: flex-end;
  padding: 32px 16px;
  color: #ffffff;
  font-weight: 600;
  border-radius: 0 0 12px 12px;
  margin-top: 2rem;
  background: linear-gradient(135deg, #2a2b2f, #1f2022);
  border-radius: 0;
}

/* Social media icons container */
.footer-socials {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 16px;
}

/* Social icon images */
.footer-socials img {
  width: 40px;
  height: auto;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
  flex-shrink: 0;
  border: .5px solid #ffffff;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.6);
  transition: transform 0.3s ease, filter 0.3s ease;
}

.footer-socials img:hover {
  transform: scale(1.15);
  filter: none;
}

/*Footer link styling*/
.footer-copyright {
  margin: 0;
  font-size: 0.95rem;
}

/* Footer link styling */
.footDesign {
  color: #FBFF00;;
  font-weight: 600;
  text-decoration: none;
}

.footDesign:hover {
  text-decoration: underline;
  color: #ffffff;
}

/*----Contact Page----*/

/*Wrapper for all of the content*/
.projects-h1{
  font-size: 35px;
  color: #e4c560;
  padding: 10px;
  text-align: center;
  margin-bottom: 0;
}

.project-intro{
  background: linear-gradient(145deg, #2e2f31, #1f1f23);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.7);
  border-radius: 12px;
  margin: 15px auto 20px;
  padding: 20px;
  text-align: center;
  max-width: 800px;
  color: #e0e0e0;
}

.contact-wrapper {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px;
  gap: 48px;
}

.left-column {
  display: flex;
  flex-direction: column;
  gap: 24px;
  flex-shrink: 0;
}

iframe {
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
}

.contact-column,
.social-column,
.contact-form {
  background: linear-gradient(145deg, #2e2f31, #1f1f23);
  padding: 24px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

/* Hover effect for both left columns and form */
.contact-column:hover,
.social-column:hover,
.contact-form:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4), 0 12px 30px rgba(0, 0, 0, 0.2);
}

.contact-info {
  width: 100%;
  color: #ffffff;
  font-family: "Fira Code", monospace;
  font-size: 20px;
  font-weight: 200;
  text-align: center;
}

.contact-info p {
  margin: 8px 0;
  font-weight: 200;
  color: #ddd;
}

.social-link {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 12px;
}

.social-link img {
  width: 50px;
  height: 50px;
  transition: transform 0.3s ease;
}

.social-link img:hover {
  transform: scale(1.1);
}

.contact-form, form {
  flex: 1;
  max-width: 500px;
  font-family: "Fira Code", monospace;
}

/*Fieldset border and padding*/
fieldset {
  border-style: none;
  padding: 15px 20px 20px;
}

/*Label and legend styling*/
label, legend {
  font-size: 18px;
  color: #ffffff;
  font-weight: 600;
}

/*Inputs and selects styling*/
input,
textarea {
  width: 100%;
  padding: 10px 12px;
  font-size: 16px;
  background-color: #dbdbdb;
  border: 2px solid #2b2b2b;
  border-radius: 6px;
  box-sizing: border-box;
}
/*Padding space for form elements*/
.formSpace {
  padding: 5px;
}

/*Form buttons container*/
.form-buttons {
  display: flex;
  justify-content: center;
  gap: 25px;
  margin-top: 10px;
}

/*Submit and reset button styling*/
.submit, .reset {
  padding: 12px 28px;
  font-size: 16px;
  font-weight: 800;
  color: #ffffff;
  background: linear-gradient(145deg, #5a5a5a, #1f1f23);
  border-radius: 12px;
  border: none;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.6);
  transition: background-color 0.3s ease, transform 0.3s ease;
}
/*Hover for buttons*/
.submit:hover, .reset:hover {
  background-color: #272727;
  color: #e4c560;
  transform: translateY(-2px);
}



/*
  Responsive Design
*/

/*Media query for smaller screens like phones*/
@media screen and (max-width: 650px) {
  /*----Styling for all----*/
  h1 {
    font-size: 25px;
    margin: 0 auto 20px 0;
  }

  h2 {
    width: 100%;
    font-size: 22px;
    margin: auto;
  }

  h1, h2 {
    margin-top: 16px;
  }

  /*----Home page styling----*/
  .home-container{
    max-width: 1100px;
    padding: 10px;
    margin: 10px 10px;
  }

  #typed-heading{
    font-size: 23px;
    text-align: center;
  }

  #typed-title{
    font-size: 19px;
    text-align: center;
  }

  /*index.html styles*/
  .about-me {
    padding: 20px;
    width: 95%;
    margin-bottom: 0;
  }

  .about-me p{
    padding: 10px;
  }

  .about-me h2{
    margin-bottom: 20px;
  }

  .about-wrapper {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
  }

  .about-photo {
    margin: 10px;
  }

  .about-text p {
    font-size: 16px;
  }

  .education{
    padding: 10px 10px;
  }

  .education p{
    font-size: 16px;
  }

  .education-degree p {
    font-size: 17px;
  }

  .certifications-list {
    display: flex;
    flex-direction: column;
  }

  .skill-list li {
  font-size: 16px;
}

  /*----Navigation Styling----*/
  header {
    width: 100%;
    padding: 16px;
    justify-content: center;
    align-items: flex-start;
  }

  nav{
    width: 100%;
    height: auto;
    background: none;
    box-shadow: none;
    padding: 0 10px;
    display: flex;
    justify-content: center;
  }
  
  /*Navigation becomes vertical and full width*/
  nav ul {
    flex-direction: column;
    width: 100%;
    gap: 10px;
    padding: 0;
  }

  /*Nav items full width and centered*/
  nav li {
    width: 100%;
    text-align: center;
    background: linear-gradient(145deg, #2c2f35, #1f1f23);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.7);
    padding: 5px 10px;
    border-radius: 12px;
  }

  /*Nav links full width for easy tapping*/
  nav li a {
    display: block;
    width: 100%;
    padding: 15px 50px;
    font-size: 25px;
  }

  /*Hover and active nav link styles*/
   nav li a:hover::before {
    left: 0;
  }

  nav li a.active {
    background-color: #fc9ad1;
    color: #1e1e1e;
    font-weight: 600;
  }

  /*----Contact page styling----*/

  /*Form width adjustment for small screens*/
  .left-column{
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 95%;
    margin: 0 auto 20px auto;
    gap: 0;
  }

  .contact-column {
    padding: 20px 15px;
    margin-bottom: 15px;

  }

  .contact-info{
    justify-content: center;
    text-align: center;

  }

  .contact-column, .social-column {
    width: 100%;
    max-width: 100%;
    margin-bottom: 20px;
    text-align: center;
    padding: 20px 15px;
  }

  .social-column{
    margin-bottom: 0;
  }

  .contact-form {
    width: 100%;
    max-width: 95%;
    margin: 0;
    padding: 20px 15px;
    box-sizing: border-box;
  }

  fieldset {
    padding: 10px 0;
  }

  .formSpace {
    padding: 10px 0;
  }

  input,
  textarea {
    font-size: 16px;
    padding: 10px;
    width: 100%;
    box-sizing: border-box;
  }

  .form-buttons {
    flex-direction: column;
    gap: 12px;
  }

  .submit, .reset {
    width: 100%;
    padding: 12px;
    font-size: 16px;
  }

  .contact-info p{
    font-size: 18px;
  }

  .contact-info h2, .contact-column h2, .social-column h2{
    margin-bottom: 15px;
    margin-top: 0;
  }

  .contact-wrapper {
    flex-direction: column;
    align-items: center;
    width: 100%;
    padding: 16px;
    gap: 0;
  }

  /*----Projects Page Styling----*/

  .project-container{
    padding: 0;
  }

  /*Projects list changes to column*/
  .project-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 90%;
    margin: 0 auto;
  }

  /*Project cards full width*/
  .project {
    width: 100%;
    margin: 10px auto;
  }

  .projects-h1{
    width: 90%;
    font-size: 25px;
    margin: 5px auto;
    padding: 10px;
  }

  .project-intro {
    max-width: 90%;
    padding: 15px 10px;
    margin: 10px auto;
  }

  .project-intro p{
    font-size: 16px;
  }

  .project h3{
    font-size: 22px;
    margin-bottom: 15px;
  }

   .project p{
    font-size: 16px;
  }

  .project-img {
    flex: 1 1 100%;
    margin-bottom: 0;
  }

  .tech-section{
    margin: 20px 20px;
  }

  /*----Styling for all projects page----*/

  .project-container{
    margin: 20px auto;
  }

  .project-content {
    flex-direction: column;
    gap: 16px;
    margin: 10px auto;
  }

  .project-content p {
    font-size: 16px;
    text-align: center;
    flex: unset;
    width: 100%; 
    margin: 0 auto;
  }

  .project-content ul {
    padding: 0;
    margin: 0 auto;
    text-align: center;
  }

  .project-content ul li {
    display: block;
    font-size: 16px;
    padding: 5px 10px;
    margin: 15px auto;
    width: fit-content;
    white-space: normal;
  }

  .project-content img,
  .project-image {
    width: 100%;
    max-width: 100%;
    height: auto;
    flex: unset;
    align-self: center; 
  }

  .project-section {
    margin: 20px 20px;
    padding: 20px;
  }

  .project-image {
    width: 100%;
    max-width: 95%;
  }

  .project-section h2 {
    font-size: 22px;
  }

  .project-section p {
    font-size: 16px;
    margin-bottom: 15px;
    padding: 5px;
  }

  .tech-section h2{
    font-size: 22px;
  }

  .tech-list {
    flex-direction: column;
    gap: 16px;
  }

  .tech-list li {
    font-size: 16px;
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
    justify-content: center;
  }
  
  .tech-list {
    flex-direction: column;
    gap: 16px;
  }

  .github-btn {
    width: 90%;
    max-width: 250px;
    font-size: 16px;
    margin: 5px auto;
    padding: 5px;
    justify-content: center;
  }

  .project-btn {
    margin: 5px auto 10px;
  }

  /*----Keyboard Vault page styling----*/

  .kv-intro {
    padding: 20px;
    max-width: 100%;
    margin: 20px 20px;
  }

  .kv-intro h1{
    margin: 10px auto;
  }

  .kv-intro p{
    font-size: 16px;
    margin: 0;
  }

  .intro-gif-col{
    flex: none;
    margin: 10px auto;
  }

  .intro-gif-col img {
    width: 100%;
    max-width: 100%;
    height: auto;
  }
  /*----Footer Styling----*/

  footer {
    width: 100%;
    padding: 16px;
    box-sizing: border-box;
    margin-top: 0;
  }

  .footer-copyright {
    margin: 0;
    font-size: 13px;
  }

}


