

/* ======= THE SHELL ======= */

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}
:root {
  /* Primary */
  --mintbanshee-green: #7DB092;

  /* Neutrals */
  --moonmilk: #F7F5F2;
  --mistveil: #D7DAD6;
  --spruce-fog: #A6A8A3;

  /* Darks */
  --nightroot: #1F1F1F;
  --shadowmint: #2F463B;

  /* Lunar Accents */
  --moonbeam: #E3E8E7;
  --dewleaf: #9EBDAE;
}
.parisienne-regular {
  font-family: "Parisienne", cursive;
  font-weight: 400;
  font-style: normal;
}
.cormorant-garamond-pretty {
  font-family: "Cormorant Garamond", serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
}
.red-hat-text-calm {
  font-family: "Red Hat Text", sans-serif;
  font-optical-sizing: auto;
  font-weight: 350;
  font-style: normal;
}
p {
  font-family: "Red Hat Text", sans-serif;
  font-size: 1.125rem;
  line-height: 1.7;
  max-width: 900px;
  margin: 1rem;
}
h1 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  font-size: 3rem;
  line-height: 1.15;
  margin-bottom: 1rem;
}
h2 {
  font-family: "Parisienne", cursive;
  font-size: 2rem;
  line-height: 1.2;
  margin: 0.75rem 0;
}
h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.8rem;
  line-height: 1.2;
  margin: 0.75rem 0;
}
html, body {
  overflow-x: hidden;
}
header {
  overflow-x: hidden;
  width: 100%;
  height: 350px;
  background: url('../assets/images/shell/header1.png');
  border-bottom: 2px solid var(--mintbanshee-green);
  background-repeat: none;
  background-size: cover;
}
#logo {
  max-width: 100%;
  overflow: hidden;
  text-align: center;
  align-items: center;
}
  #logoIMG {
    width: 350px;
    animation: softPulse 2.2s ease-in-out infinite;
  }
  #social {
    width: 70px;
    margin: 5px;
  }
  #social:hover {
    box-shadow: 0 0 6px var(--dewleaf);
    transition: 0.2s ease;
  }
#socials {
  position: absolute;
  z-index: 7;
  top: 50px;
  left: 30px;
  width: 120px;
  text-align: center;
}
  #navLogo {
    width: 80px;
    position: fixed;
  }
  #navEmail {
    position: relative;
    width: 60px;
    top: 80px;
    left: 10px;
  }
#burgerMenu {
  position: fixed;
  z-index: 13;
  width: 75px;
  height: 60px;
  top: 50px;
  right: 45px;
  margin: 15px;
  cursor: pointer;
  opacity: 0.8;
}
  #burgerMenu:hover {
    opacity: 1;
  }
  .bar {
    width: 100%;
    height: 16px;
    margin: 4px 0;
    background: var(--nightroot);
    border: 1px solid var(--mistveil);
    border-radius: 4px;
  }
nav {
  position: fixed;
  z-index: 7;
  width: 225px;
  background: var(--dewleaf);
  opacity: 0.8;
  height: 100vh;
  right: 0;
  transform: translateX(100%);
  transition: transform 0.42s ease;
  text-align: right;
  padding-top: 145px;
  padding-right: 35px;
  border-left: 1px solid var(--nightroot);
}
  nav > a {
    display: block;
    font-size: 1.6em;
    color: var(--nightroot);
    text-decoration: none;
    opacity: 0.8;
    margin: 5px;
  }
  nav > a:hover {
    color: var(--moonbeam);
    opacity: 1;
  }
  nav.open {
    transform: translateX(0);
  }
body {
  width: 100%;
  font-size: 1.6em;
  background: var(--spruce-fog);
}
footer {
    font-size: 1rem;
    color: var(--nightroot);
    height: 200px;
    background: url(../assets/images/shell/header1.png);
    text-align: center;
    padding: 25px;
    background-repeat: none;
    background-size: cover;
  }
    #footerSocials {
      margin-bottom: 1rem;
    }
    #footerText {
      text-align: center;
      margin-top: 0.5rem;
      font-family: "Red Hat Text", sans-serif;
      font-size: 0.9rem;
      color: var(--nightroot);
    }



/* ======= HOME PAGE ======= */

#welcome {
  background: #E3E8E7;  /* fallback for old browsers */
  background: -webkit-linear-gradient(to right, var(--mistveil), var(--moonmilk));  /* Chrome 10-25, Safari 5.1-6 */
  background: linear-gradient(to right, var(--mistveil), var(--moonmilk)); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
  font-size: 1.6em;
  border-bottom: 2px solid var(--mintbanshee-green);
  padding: 2.5rem 2rem;
  width: 100%;
  display: grid;
  place-items: center;
  text-align: center;
}
.dividerFlair {
    font-size: 1.4rem;
    color: var(--shadowmint);
    margin: 0.5rem auto 1.2rem auto;
    opacity: 0.7;
}
.accordion {
  max-width: 550px;
  margin: 1.5rem auto 2rem auto;
  font-size: 1rem;
}
  .accordion-toggle {
    width: 100%;
    background: var(--moonbeam);
    border: 2px solid var(--dewleaf);
    padding: 0.9rem 1.2rem;
    border-radius: 10px;
    cursor: pointer;
    font-family: "Cormorant Garamond", serif;
    font-size: 1.2rem;
    color: var(--nightroot);
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    gap: 0.75rem;
  }
  .accordion-toggle:hover {
    background: var(--moonmilk);
  }
  .arrow {
    transition: transform 0.3s ease;
  }
  .accordion.open .arrow {
    transform: rotate(180deg);
  }
  .accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s ease, padding .3s ease;
    background: transparent;
  }
  .accordion.open .accordion-content {
    max-height: 500px;
    padding: 1rem;
  }
.grade-list {
  list-style: none;
  padding: 0;
  margin: 0;
  font-family: "Red Hat Text", sans-serif;
  font-size: 0.95rem;
  line-height: 1.6;
}
  .grade-list li {
    padding: 0.4rem 0;
    border-bottom: 1px solid var(--mintbanshee-green);
  }
#skillsRow {
  display: grid;
  grid-auto-flow: column;
  gap: 1.2rem;
  margin-top: 1rem;
  margin-bottom: 0.5rem;
  padding: 0.8rem 1.2rem;
  background: var(--moonbeam);
  backdrop-filter: blur(6px);
  border-radius: 1.4rem;
  border: 1px solid var(--mintbanshee-green);
  font-family: "Red Hat Text", sans-serif;
  font-size: 0.95rem;
  text-align: center;
  place-items: center;
}
  #skillsRow span {
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    background: var(--moonmilk);
    color: var(--nightroot);
    white-space: nowrap;
  }
#featureCard {
  background: rgba(247, 245, 242, 0.25);
  border: 2px solid var(--mintbanshee-green);
  backdrop-filter: blur(12px); 
  -webkit-backdrop-filter: blur(12px);  
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.18),
              0 0 16px rgba(125, 176, 146, 0.4);
  padding: 1.5rem 2rem 1.25rem;
  width: 70%;
  border-radius: 16px;
  text-align: center;
  margin-bottom: 1rem;
}
  #featureCard p {
    max-width: none;
    margin-bottom: 1rem;
  }
#featureSkillsRow {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.8rem;
  width: fit-content;    
  max-width: 600px;         
  margin: 1.5rem auto 0 auto; 
  padding: 0.8rem 1rem;
  background: var(--moonbeam);
  backdrop-filter: blur(6px);
  border-radius: 1.4rem;
  border: 1px solid var(--mintbanshee-green);
  font-family: "Red Hat Text", sans-serif;
  font-size: 0.95rem;
  text-align: center;
}
  #featureSkillsRow span {
    padding: 0.25rem 0.5rem;
    border-radius: 1rem;
    background: var(--moonmilk);
    color: var(--nightroot);
  }
  #graphicIcon {
    width: 50px;
  }
#projectThumb {
  width: 600px;
  border-radius: 16px;
  filter: drop-shadow(4px 6px 12px var(--shadowmint));
  margin-top: 0.75rem;
  margin-bottom: 1rem;
}
#featuredMedia {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.featureLink {
  display: inline-block;
  padding: 0.4rem 0.6rem;
  border: 2px solid var(--mintbanshee-green);
  border-radius: 8px;
  color: var(--shadowmint);
  text-decoration: none;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.2rem;
  transition: 0.2s ease;
  margin-bottom: 0.5rem;
}
.featureLink:hover {
  background: var(--moonbeam);
  box-shadow: 0 0 6px var(--mintbanshee-green);
}



/* ======= ABOUT PAGE ======= */

#aboutWelcome {
  background: #E3E8E7;  /* fallback for old browsers */
  background: -webkit-linear-gradient(to left, var(--mistveil), var(--moonmilk));  /* Chrome 10-25, Safari 5.1-6 */
  background: linear-gradient(to left, var(--mistveil), var(--moonmilk)); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
  border-bottom: 2px solid var(--mintbanshee-green);
  padding: 2.5rem 2rem;
  width: 100%;
  text-align: center;
}
  #aboutWelcome  p {
    margin: 1rem auto;
    max-width: 80%;
  }
#bioImg {
  width: 250px;
  border-radius: 75px;
  margin-bottom: 25px;
  margin-top: 15px;
}
#bioPic > p {
  margin: 1rem auto;
  max-width: 80%;
  font-size: 1rem;
}



/* ======= PROJECTS PAGE ======= */

#projectsTop {
  background: #E3E8E7;  /* fallback for old browsers */
  background: -webkit-linear-gradient(to left, var(--mistveil), var(--moonmilk));  /* Chrome 10-25, Safari 5.1-6 */
  background: linear-gradient(to left, var(--mistveil), var(--moonmilk)); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
  font-size: 1.6em;
  border-bottom: 2px solid var(--mintbanshee-green);
  padding: 2.5rem 2rem;
  width: 100%;
  text-align: center;
}
  #projectsTop p {
    margin: 1rem auto;
    max-width: 70%;
  }
.projectLink {
  display: inline-block;
  padding: 0.4rem 0.6rem;
  border: 2px solid var(--mintbanshee-green);
  border-radius: 8px;
  color: var(--shadowmint);
  text-decoration: none;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.2rem;
  transition: 0.2s ease;
  margin: 0.5rem;
}
.projectLink:hover {
  background: var(--moonbeam);
  box-shadow: 0 0 6px var(--mintbanshee-green);
}
#thumbnailRow {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin: 1.8rem auto 2.5rem auto; 
  flex-wrap: wrap; 
  max-width: 900px;
}
.projectsThumbnail {
  width: 160px;
  height: 100px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}



/* ======= CODING PAGE ======= */

#codingMain {
  background: #E3E8E7;  /* fallback for old browsers */
  background: -webkit-linear-gradient(to right, var(--mistveil), var(--moonmilk));  /* Chrome 10-25, Safari 5.1-6 */
  background: linear-gradient(to right, var(--mistveil), var(--moonmilk)); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
  font-size: 1.6em;
  border-bottom: 2px solid var(--mintbanshee-green);
  padding: 2.5rem 2rem;
  width: 100%;
  display: grid;
  place-items: center;
  text-align: center;
}
.codeCard {
  background: rgba(247, 245, 242, 0.25);
  border: 2px solid var(--mintbanshee-green);
  backdrop-filter: blur(12px); 
  -webkit-backdrop-filter: blur(12px);  
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.18),
              0 0 16px rgba(125, 176, 146, 0.4);
  padding: 1.5rem 2rem 1.25rem;
  width: 80%;
  border-radius: 16px;
  text-align: center;
  margin-bottom: 1rem;
}
  .codeCard p {
    max-width: none;
    margin-bottom: 1rem;
  }
.projectSkillsRow {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.8rem;
  width: fit-content;    
  max-width: 600px;         
  margin: 1.5rem auto 0 auto; 
  margin-bottom: 0.8rem;
  padding: 0.8rem 1rem;
  background: var(--moonbeam);
  backdrop-filter: blur(6px);
  border-radius: 1.4rem;
  border: 1px solid var(--mintbanshee-green);
  font-family: "Red Hat Text", sans-serif;
  font-size: 0.95rem;
  text-align: center;
}
  .projectSkillsRow span {
    padding: 0.25rem 0.5rem;
    border-radius: 1rem;
    background: var(--moonmilk);
    color: var(--nightroot);
  }
.codeThumb {
  width: 450px;
  height: 300px;
  object-fit: cover;
  border-radius: 16px;
  filter: drop-shadow(4px 6px 12px var(--shadowmint));
  margin-top: 0.75rem;
  margin-bottom: 1rem;
}
.projectMedia {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: center;
  width: 100%;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}
  .projectMedia > video {
    width: 600px;
  }
.projectLink {
  display: inline-block;
  padding: 0.4rem 0.6rem;
  border: 2px solid var(--mintbanshee-green);
  border-radius: 8px;
  color: var(--shadowmint);
  text-decoration: none;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.2rem;
  transition: 0.2s ease;
  margin-bottom: 0.5rem;
}
.projectLink:hover {
  background: var(--moonbeam);
  box-shadow: 0 0 6px var(--mintbanshee-green);
}



/* ======= DESIGN PAGE ======= */

#gallery {
  width: 100%;
  max-width: 1200px; 
  margin-inline: auto;
  margin: 0 auto;
  padding-bottom: 5rem; 
  display: block;
}
#designMain {
  background: #E3E8E7;  /* fallback for old browsers */
  background: -webkit-linear-gradient(to right, var(--mistveil), var(--moonmilk));  /* Chrome 10-25, Safari 5.1-6 */
  background: linear-gradient(to right, var(--mistveil), var(--moonmilk)); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
  font-size: 1.6em;
  border-bottom: 2px solid var(--mintbanshee-green);
  padding: 2.5rem 2rem;
  width: 100%;
  display: grid;
  place-items: center;
  text-align: center;
  padding-bottom: 6rem;
}
.designCard {
  background: rgba(247, 245, 242, 0.25);
  border: 2px solid var(--mintbanshee-green);
  backdrop-filter: blur(12px); 
  -webkit-backdrop-filter: blur(12px);  
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.18),
              0 0 16px rgba(125, 176, 146, 0.4);
  padding: 1.5rem 2rem 1.25rem;
  width: 80%;
  border-radius: 16px;
  text-align: center;
  margin-bottom: 1rem;
}
  .designCard p {
    max-width: none;
    margin-bottom: 1rem;
  }
#BotaniCuteThumb {
  width: 100%;
  max-width: 360px;      
  height: auto;  
  object-fit: cover;
  border-radius: 20px; 
  filter: drop-shadow(4px 6px 12px rgba(0,0,0,0.2));
  margin: 1.5rem auto;   
  display: block;  
}
#ScribesHavenThumb {
  width: 100%;
  max-width: 800px;      
  height: auto;  
  object-fit: cover;
  border-radius: 20px; 
  filter: drop-shadow(4px 6px 12px rgba(0,0,0,0.2));
  margin: 1.5rem auto;   
  display: block;  
}
#designsRow {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 180px;
  gap: 1.5rem;
}
.designProject {
  position: relative;
  text-align: center;
  width: 100%;
  max-width: 260px;
  justify-self: center;
}
  .designProject img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-radius: 16px;
    border: 2px solid #fff;
    display: block;
  }
  .designProject p {
    margin: 8px 0 0 0;
    color: #fff;
    background: rgba(79, 111, 111, .45);
  }
  .designProject:hover {
    filter: drop-shadow(12px 12px 18px #333);
    cursor: pointer;
  }
.backLink {
  display: inline-block;
  padding: 0.4rem 0.6rem;
  border: 2px solid var(--mintbanshee-green);
  border-radius: 8px;
  color: var(--shadowmint);
  text-decoration: none;
  font-family: "Cormorant Garamond", serif;
  font-size: 0.8rem;
  transition: 0.2s ease;
  margin: 0.5rem;
}
.projectLink:hover {
  background: var(--moonbeam);
  box-shadow: 0 0 6px var(--mintbanshee-green);
}

/* ======= LIGHTBOX ======= */

#lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  display: none; 
  justify-content: center;
  align-items: center;
  z-index: 999;
  text-align: center;
}
#lightbox.active {
  display: flex;
}
#modalContent {
  background: var(--moonmilk);
  padding: 1.5rem;
  border-radius: 16px;
  max-width: 900px;
  width: 90%;
  display: flex;
  gap: 1.5rem;
  position: relative;
  box-shadow: 0 8px 24px rgba(0,0,0,0.25);
}
#modalLeft img {
  width: 100%;
  max-width: 400px;
  border-radius: 12px;
}
#modalRight {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
#closeBtn {
  position: absolute;
  top: 10px;
  right: 20px;
  font-size: 2rem;
  cursor: pointer;
  color: var(--nightroot);
}
#viewProjectBtn {
  display: inline-block;
  padding: 0.5rem 1rem;
  border: 2px solid var(--mintbanshee-green);
  border-radius: 8px;
  background: var(--moonbeam);
  color: var(--shadowmint);
  font-family: "Cormorant Garamond", serif;
  font-size: 1.2rem;
  cursor: pointer;
  transition: 0.2s ease;
  margin-top: 1rem;
}
#viewProjectBtn:hover {
  background: var(--moonbeam);
  box-shadow: 0 0 6px var(--mintbanshee-green);
}



/* ======= CONTACT PAGE ======= */

#contactMain {
  background: #E3E8E7;  /* fallback for old browsers */
  background: -webkit-linear-gradient(to left, var(--mistveil), var(--moonmilk));  /* Chrome 10-25, Safari 5.1-6 */
  background: linear-gradient(to left, var(--mistveil), var(--moonmilk)); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
  border-bottom: 2px solid var(--mintbanshee-green);
  padding: 2rem 2rem;
  width: 100%;
  text-align: center;
}
  #contactMain p {
    margin: 1rem auto;
    max-width: 70%;
  }
#contactFormSection {
  max-width: 700px;
  margin: 0 auto;
  padding: 3rem 2rem;
  text-align: center;
}
#contactFormSection h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}
.contactIntro {
  margin-bottom: 2rem;
  font-size: 1.1rem;
}
#mintForm {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2.5rem;
  margin-top: 2rem;
}
#mintForm > label {
  text-align: left;
  font-weight: 600;
  color: var(--mintbanshee-green);
}
#mintForm > input,
#mintForm > textarea {
  padding: 0.9rem;
  border-radius: 8px;
  border: 1px solid rgba(0,0,0,0.15);
  background: rgba(255,255,255,0.7);
  font-size: 1rem;
}
#mintForm > textarea {
  min-height: 150px;
  resize: vertical;
}
.mintButton {
  padding: 0.9rem 1.2rem;
  font-size: 1.1rem;
  font-weight: 600;
  background: var(--nightroot);
  color: white;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.25s ease;
}
.mintButton:hover {
  background: var(--mintbanshee-green);
}
#arrow {
  margin-top: 1.5rem;
  font-size: 2rem;
  animation: bounce 1.6s infinite ease-in-out;
  display: inline-block;
  color: var(--mintbanshee-green);
}


/* ======= MIXEDTAPE API ======= */

#mixtapeTop {
  background: #E3E8E7;  /* fallback for old browsers */
  background: -webkit-linear-gradient(to right, var(--mistveil), var(--moonmilk));  /* Chrome 10-25, Safari 5.1-6 */
  background: linear-gradient(to right, var(--mistveil), var(--moonmilk)); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
  font-size: 1.6em;
  border-bottom: 2px solid var(--mintbanshee-green);
  padding: 2.5rem 2rem;
  width: 100%;
  display: grid;
  place-items: center;
  text-align: center;
}
#mixtapeIntro {
  background: #E3E8E7;  /* fallback for old browsers */
  background: -webkit-linear-gradient(to right, var(--mistveil), var(--moonmilk));  /* Chrome 10-25, Safari 5.1-6 */
  background: linear-gradient(to right, var(--mistveil), var(--moonmilk)); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
  font-size: 1.6rem;
  border-bottom: 2px solid var(--mintbanshee-green);
  padding: 1rem 2rem;
  width: 100%;
  display: grid;
  place-items: center;
  text-align: center;
}
#recentlyPlayed {
  margin: 1.5rem 0;
  text-align: center;
}
  #recentlyPlayed ul {  
  list-style: none;
  padding: 0;
  }
  #recentlyPlayed li {
    margin: 0.3rem 0;
    opacity: 0.85;
    font-size: 1.2rem;
  }
  #recentlyPlayed a {
    text-decoration: none;
    font-weight: normal;
    color: var(--shadowmint)
  }
    #recentlyPlayed a:hover {
      background-color: var(--moonmilk);
      opacity: 1;
      color: var(--nightroot);
    }
#buttonRow {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;    
  margin-top: 2rem;
}
#dualityIMG {
  width: 260px; 
  border-radius: 1rem;
}
.musicButton {
  width: 140px;     
  cursor: pointer;  
}
  .musicButton.pulse {
    animation: softPulse 2.2s ease-in-out infinite;
  }
  .musicButton.selected {
    box-shadow: 0 0 6px var(--mintbanshee-green);
  }
#resetMixtape {
  background: none;
  display: inline-block;
  padding: 0.4rem 0.6rem;
  border: 2px solid var(--mintbanshee-green);
  border-radius: 8px;
  color: var(--shadowmint);
  text-decoration: none;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.2rem;
  transition: 0.2s ease;
  margin-top: 1rem;
  margin-bottom: 1rem;
}
#resetMixtape:hover {
  background: var(--moonbeam);
  box-shadow: 0 0 6px var(--mintbanshee-green);
}
#playlistResults {
  background: rgba(247, 245, 242, 0.25);
  border: 2px solid var(--mintbanshee-green);
  backdrop-filter: blur(12px); 
  -webkit-backdrop-filter: blur(12px);  
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.18),
              0 0 16px rgba(125, 176, 146, 0.4);
  padding: 1.5rem 2rem 1.25rem;
  width: 70%;
  border-radius: 16px;
  text-align: center;
  margin-bottom: 1rem;
}
  #playlistResults > h2 {
    text-decoration: underline;
    margin-bottom: 2rem;
    margin-top: 2rem;
    font-size: 2.5rem;
  }
.songRow {
  margin: 1rem auto;
  width: 100%;
  max-width: 600px;
  text-align: left;
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}
  .songRow:hover {
    background-color: var(--moonmilk);
  }
.songInfo {
  font-size: 1.4rem;
  display: flex;
  flex-direction: column;
  margin-left: 0.5rem;
}
  .songInfo h4 {
    margin: 0;
    font-weight: 500;
    color: var(--nightroot);
  }
  .songInfo p {
    margin: 2px 0;
    font-size: 0.9rem;
    opacity: 0.8;
    color: var(--nightroot);
  }
.songThumb {
  width: 100px;
  height: 80px;
  border-radius: 8px;
  flex-shrink: 0;
}



/* ======= starWars ======= */

#projectHero {
  background: #E3E8E7;  /* fallback for old browsers */
  background: -webkit-linear-gradient(to right, var(--mistveil), var(--moonmilk));  /* Chrome 10-25, Safari 5.1-6 */
  background: linear-gradient(to right, var(--mistveil), var(--moonmilk)); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
  font-size: 1.6em;
  border-bottom: 2px solid var(--mintbanshee-green);
  padding: 2.5rem 2rem;
  width: 100%;
  display: grid;
  place-items: center;
  text-align: center;
}
#starWarsFull {
  width: 80%;
  margin-top: 25px;
}



/* ======= cozyPixel ======= */

#projectHero {
  background: #E3E8E7;  /* fallback for old browsers */
  background: -webkit-linear-gradient(to left, var(--mistveil), var(--moonmilk));  /* Chrome 10-25, Safari 5.1-6 */
  background: linear-gradient(to left, var(--mistveil), var(--moonmilk)); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
  font-size: 1.6em;
  border-bottom: 2px solid var(--mintbanshee-green);
  padding: 2.5rem 2rem;
  width: 100%;
  display: grid;
  place-items: center;
  text-align: center;
}
#laptopMockup {
  width: 60%;
}
#starWarsFull {
  width: 80%;
  margin-top: 25px;
}




/* ======= StyleStudio ======= */

#projectHero {
  background: #E3E8E7;  /* fallback for old browsers */
  background: -webkit-linear-gradient(to left, var(--mistveil), var(--moonmilk));  /* Chrome 10-25, Safari 5.1-6 */
  background: linear-gradient(to left, var(--mistveil), var(--moonmilk)); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
  font-size: 1.6em;
  border-bottom: 2px solid var(--mintbanshee-green);
  padding: 2.5rem 2rem;
  width: 100%;
  display: grid;
  place-items: center;
  text-align: center;
}
#styleStudioLogo {
  margin-top: 25px;
  width: 70%;
}
#styleStudioWIP {
  width: 30%;
  margin-top: 25px;
}



/* ======= StellarNest ======= */

#projectHero {
  background: #E3E8E7;  /* fallback for old browsers */
  background: -webkit-linear-gradient(to left, var(--mistveil), var(--moonmilk));  /* Chrome 10-25, Safari 5.1-6 */
  background: linear-gradient(to left, var(--mistveil), var(--moonmilk)); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
  font-size: 1.6em;
  border-bottom: 2px solid var(--mintbanshee-green);
  padding: 2.5rem 2rem;
  width: 100%;
  display: grid;
  place-items: center;
  text-align: center;
}
#stellarCompare {
  margin-top: 25px;
  width: 70%;
}
#stellarLogo {
  width: 80%;
  margin-top: 25px;
}



/* ======= MintBanshee ======= */

#projectHero {
  background: #E3E8E7;  /* fallback for old browsers */
  background: -webkit-linear-gradient(to left, var(--mistveil), var(--moonmilk));  /* Chrome 10-25, Safari 5.1-6 */
  background: linear-gradient(to left, var(--mistveil), var(--moonmilk)); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
  font-size: 1.6em;
  border-bottom: 2px solid var(--mintbanshee-green);
  padding: 2.5rem 2rem;
  width: 100%;
  display: grid;
  place-items: center;
  text-align: center;
}
#mintLogo {
  margin-top: 25px;
  width: 50%;
}
#logoProcess {
  width: 60%;
  margin-top: 25px;
}

.logoRow {
  display: flex;
  justify-content: center;
  gap: 2rem; 
  align-items: center;
  margin: 2rem 0;
  flex-wrap: wrap;
}
.logoRow img {
  width: 45%;
  max-width: 600px;
  height: auto;
  border-radius: 10px; 
}




/* ======= midnightAtTheMintforge ======= */

#projectHero {
  background: #E3E8E7;  /* fallback for old browsers */
  background: -webkit-linear-gradient(to left, var(--mistveil), var(--moonmilk));  /* Chrome 10-25, Safari 5.1-6 */
  background: linear-gradient(to left, var(--mistveil), var(--moonmilk)); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
  font-size: 1.6em;
  border-bottom: 2px solid var(--mintbanshee-green);
  padding: 2.5rem 2rem;
  width: 100%;
  display: grid;
  place-items: center;
  text-align: center;
}
#midnightSS {
  width: 80%;
  margin-top: 25px;
}



/* ======= ANIMATIONS ======= */


@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(6px);
  }
}
@keyframes softPulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.08); /* gentle thump */
  }
  100% {
    transform: scale(1);
  }
}





/* ======= @MEDIA ======= */

@media (max-width: 1610px) {
  nav {
    width: 175px;
  }
}
@media (max-width: 1375px) {
  #contactMain h3 {
    width: 100;
    font-size: 1.6rem;
  }
}
@media (max-width: 1315px) {
  .codeThumb {
    width: 425px;
    height: 275px;
  }
  .projectMedia > video {
    width: 425px;
  }
}
@media (max-width: 1255px) {
  .codeThumb {
    width: 400px;
    height: 250px;
  }
  .projectMedia > video {
    width: 400px;
  }
  
}
@media (max-width: 1225px) {
  #welcome h1 {
    font-size: 2.5rem;
  }
  #projectThumb {
    width: 500px;
  }
  #designsRow {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 1210px) {
  #contactMain h3 {
    font-size: 1.4rem;
  }

}
@media (max-width: 1190px) {
  .codeThumb {
    width: 350px;
    height: 200px;
  }
  .projectMedia > video {
    width: 350px;
  }
  #designMain #featureCard {
    width: 60%;
  }
  .designCard p {
    font-size: 1rem;
  }
}
@media (max-width: 1070px) {
  #contactMain h3 {
    font-size: 1.2rem;
  }
  #contactFormSection {
      padding: 1rem;
  }
  .codeCard {
    width: 75%;
  }
  .codeThumb {
    width: 300px;
    height: 150px;
  }
  .projectMedia > video {
    width: 300px;
  }
  .designCard {
    width: 75%;
  }
  #BotaniCuteThumb {
    width: 300px;
  }
}
@media (max-width: 1040px) {
  #welcome h1 {
    font-size: 2rem;
  }
  #projectThumb {
    width: 400px;
  }
  .designCard p {
    font-size: 0.8rem;
  }
}
@media (max-width: 1000px) {
  .codeThumb {
    width: 400px;
    height: 200px;
  }
  .projectMedia > video {
    width: 400px;
  }
}
@media (max-width: 990px) {
  nav {
    opacity: 0.9;
  }
  nav > a {
    opacity: 1;
  }
  #projectsTop h2 {
    font-size: 1.8rem;
  }
  #projectsTop p {
    font-size: 1rem;
  }
}
@media (max-width: 955px) {
  #welcome h1 {
    font-size: 1.8rem;
  }
  #projectThumb {
    width: 300px;
  }
  #skillsRow {
    gap: 0.6rem 0.8rem;
    max-width: 650px;
    margin: 0.5rem;
  }
  #skillsRow span {
    flex: 0 1 auto;
    white-space: nowrap;
    padding: 0.35rem 0.7rem;
  }
  #featureCard {
    width: 90%;
  }
  .projectsThumbnail {
    width: 140px;
  }
}
@media (max-width: 925px) {
  #contactMain h3 {
    font-size: 1rem;
  }
  #contactMain h1 {
    font-size: 2rem;
  }
  #contactFormSection {
      padding: 0.8rem;
  }
  #projectsTop h2 {
    font-size: 1.6rem;
  }
  #projectsTop p {
    font-size: 0.9rem;
  }
  .codeCard {
    width: 70%;
  }
  .songThumb {
    width: 80px;
    height: 60px;
  }
  .songInfo {
    font-size: 1.2rem;
  }
  #designsRow {
     grid-template-columns: repeat(2, 1fr);
  }
  #BotaniCuteThumb {
    width: 275px;
  }
}
@media (max-width: 850px) {
  #mixtapeIntro h2 {
    font-size: 1.6rem;
  }
  #mixtapeIntro h1 {
    font-size: 1.8rem;
  }
  #mixtapeIntro p {
    font-size: 1rem;
  }
  #recentlyPlayed li {
    font-size: 1rem;
  }
  #playlistResults h2 {
    font-size: 2rem;
  }
}
@media (max-width: 830px) {
  .projectsThumbnail {
    width: 120px;
  }
  .codeCard p {
    font-size: 1rem;
  }
}
@media (max-width: 805px) {
  nav {
    opacity: 1;
  }
  #projectsTop h2 {
    font-size: 1.4rem;
  }
  #projectsTop p {
    font-size: 0.8rem;
  }
}
@media (max-width: 790px) {
  header {
    height: 250px;
  }
    #logo {
      width: 100%;
    }
    #logoIMG {
      width: 250px;
    }
    #social {
      width: 50px;
    }
    #social:hover {
      box-shadow: none;
      transition: none;
    }
  #socials {
    left: 20px;
    width: 60px;
  }
  #navLogo {
    width: 80px;
  }
  #navEmail {
    width: 60px;
    left: 10px;
  }
  #burgerMenu {
    width: 40px;
    height: 30px;
    top: 35px;
    right: 30px;
    opacity: 1;
  }
  .bar {
    height: 10px;
  }
  #featureSkillsRow {
    width: 100%;        
    max-width: none;    
    padding: 1rem 1.5rem; 
    justify-content: center;
  }
  #contactMain h3 {
    font-size: 0.9rem;
  }
  #contactFormSection {
      max-width: 550px;
  }
  .codeThumb {
    width: 350px;
    height: 175px;
  }
  .projectMedia > video {
    width: 350px;
  }
  .songThumb {
    width: 70px;
    height: 50px;
  }
  .songInfo {
    font-size: 1rem;
  }
  .songInfo p {
    font-size: 0.8rem;
  }
}
@media (max-width: 765px) {
  #welcome h1 {
    font-size: 1.5rem;
  }
  #welcome h2 {
    font-size: 1.4rem;
  }
  #welcome h3 {
    font-size: 1.2rem;
  }
  #welcome p {
    font-size: 1rem;
  }
  .projectSkillsRow {
    gap: 0.6rem;
    font-size: 0.8rem;
  }
  .projectSkillRow span {
    padding: 0.15rem 0.2rem;
  }
}
@media (max-width: 730px) {
  #projectsTop h2 {
    font-size: 1.3rem;
  }
  #projectsTop p {
    font-size: 0.8rem;
  }
  .projectsThumbnail {
    width: 100px;
    height: 80px;
  }
}
@media (max-width: 710px) {
  #contactMain h3 {
    font-size: 0.8rem;
  }
  #contactFormSection {
      max-width: 525px;
  }
}
@media (max-width: 705px) {
  #skillsRow {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 0.6rem;
  }
  #dualityIMG {
    width: 220px;
  }
  #musicButton {
    width: 120px;
  }
  #buttonRow {
    gap: 1.4rem;
  }
  .codeCard h1 {
    font-size: 2rem;
  }
  .codeCard h2 {
    font-size: 1.5rem;
  }
  #mixtapeIntro h2 {
    font-size: 1.4rem;
  }
  #playlistResults {
    width: 90%;
  }
}
@media (max-width: 680px) {
  #social {
    width: 40px;
  }
  #socials {
    left: 20px;
    width: 40px;
    top: 30px;
  }
  #navLogo {
    width: 60px;
  }
  #navEmail {
    width: 50px;
    left: 5px;
    top: 60px;
  }
  #aboutWelcome  p {
    margin: 0.6rem auto;
    max-width: 90%;
  }
  #aboutWelcome  h3 {
    font-size: 1.4rem;
  }
  #bioImg {
    width: 200px;
  }
  .projectSkillsRow {
    gap: 0.4rem;
    font-size: 0.6rem;
  }
  .projectSkillRow span {
    padding: 0.10rem 0rem;
  }
  .codeThumb {
    width: 300px;
    height: 150px;
  }
  .projectMedia > video {
    width: 300px;
  }
  .codeCard p {
    font-size: 0.8rem;
  }
}
@media (max-width: 655px) {
  #projectsTop h2 {
    font-size: 1.1rem;
  }
  #projectsTop p {
    font-size: 0.7rem;
  }
}
@media (max-width: 640px) {
  nav {
    width: 150px;
  }
  nav > a {
    font-size: 1.3em;
  }
  #burgerMenu {
    top: 30px;
    right: 25px;
    opacity: 1;
  }
  #welcome h1 {
    font-size: 1.2rem;
  }
  #welcome h2 {
    font-size: 1rem;
  }
  #welcome h3 {
    font-size: 1rem;
  }
  #welcome p {
    font-size: 0.8rem;
  }
  #mixtapeTop h2 {
    font-size: 1.5rem;
  }
  .projectsThumbnail {
    width: 80px;
    height: 70px;
  }
  #mixtapeIntro h2 {
    font-size: 1.2rem;
  }
  #mixtapeIntro h1 {
    font-size: 1.6rem;
  }
  #mixtapeIntro p {
    font-size: 0.8rem;
  }
  #recentlyPlayed li {
    font-size: 0.8rem;
  }
  #playlistResults h2 {
    font-size: 1.6rem;
  }
#dualityIMG {
  width: 220px;
}
.musicButton {
  width: 120px;
}
}
@media (max-width: 610px) {
  #aboutWelcome p {
    margin: 0 auto;
    font-size: 1rem;
  }
  .songThumb {
    width: 50px;
    height: 30px;
  }
  .songInfo {
    font-size: 0.8rem;
  }
  .songInfo p {
    font-size: 0.6rem;
  }
   #designsRow {
     grid-template-columns: repeat(1, 1fr);
  }
}
@media (max-width: 580px) {
  #dualityIMG {
    width: 200px;
  }
  #musicButton {
    width: 100px;
  }
  #buttonRow {
    gap: 1.2rem;
  }
  #projectsTop h2 {
    font-size: 1rem;
  }
  #projectsTop p {
    font-size: 0.6rem;
  }
  .projectSkillsRow {
    gap: 0.2rem;
    font-size: 0.4rem;
  }
  .projectSkillRow span {
    padding: 0;
  }
  .codeThumb {
    width: 250px;
    height: 150px;
  }
  .projectMedia > video {
    width: 250px;
  }
  .codeCard p {
    font-size: 0.6rem;
  }
  #playlistResults {
    width: 100%;
  }
  #BotaniCuteThumb {
    width: 250px;
  }
  .designCard p {
    font-size: 0.6rem;
  }
  .designCard h1 {
    font-size: 2rem;
  }
  .designCard h3 {
    font-size: 1.3rem;
  }
}
@media (max-width: 560px) {
  #mixtapeIntro h2 {
    font-size: 1rem;
  }
  #buttonRow {
    flex-direction: column;
    gap: 1.25rem;
  }
}
@media (max-width: 550px) {
  #aboutWelcome p {
    max-width: 100%;
    font-size: 0.95rem;
  }
}
@media (max-width: 528px) {
  #welcome h1 {
    font-size: 1rem;
    line-height: 1.2;
  }
  #mixtapeTop h2 {
    font-size: 1.4rem;
  }
  #dualityIMG {
    width: 180px;
  }
  #musicButton {
    width: 80px;
  }
  #buttonRow {
    gap: 1rem;
  }
  .projectsThumbnail {
    width: 70px;
    height: 50px;
  }
  #projectsTop h2 {
    font-size: 0.8rem;
  }
  .projectLink {
    margin-bottom: 2rem;
  }
  .codeCard h1 {
    font-size: 1.5rem;
  }
  .codeCard h2 {
    font-size: 1.2rem;
  }
  #BotaniCuteThumb {
    width: 225px;
  }
}
@media (max-width: 510px) {
  .projectMedia > video {
    width: 225px;
  }
}
@media (max-width: 490px) {
  header {
    height: 200px;
  }
    #logo {
      padding-inline: 0;
    }
    #logoIMG {
      width: 200px;
    }
    #social {
      width: 30px;
    }
    #socials {
    left: 10px;
    width: auto;
    top: 20px;
    left: 15px;
    }
  #navLogo {
    width: 60px;
  }
  #navEmail {
    width: 40px;
    left: 10px;
  }
  #burgerMenu {
    width: 40px;
    height: 20px;
    opacity: 1;
    top: 20px;
    right: 10px;
  }
  nav {
    width: 100px;
  }
  nav > a {
    font-size: 1rem;
  }
  #skillsRow {
    gap: 0.4rem 0.6rem;
    max-width: 600px;
    margin: 0 auto;
  }
  #skillsRow span {
    padding: 0.1rem 0.5rem;
    font-size: 0.6rem;
  }
  .accordion {
    max-width: 550px;
    margin: 1.5rem auto 2rem auto;
    font-size: 1rem;
  }
  #featureSkillsRow {
    font-size: 0.6rem;
    gap: 0.5rem;
    width: 100%;
    max-width: 100%;
    flex-wrap: wrap;
  }
  #projectThumb {
    width: 200px;
  }
  footer {
    height: 150px;
  }
  #bioImg {
    width: 150px;
    margin-bottom: 5px;
  }
  #aboutWelcome > p {
    font-size: 0.8rem;
  }
  #bioPic > p {
    font-size: 0.8rem;
  }
  #aboutWelcome h3 {
    font-size: 1.2rem;
  }
  #contactMain h1 {
    font-size: 1.5rem;
  }
  #contactFormSection {
      max-width: 400px;
  }
  #contactFormSection h2 {
    font-size: 1.5rem;
  }
  .contactIntro {
    font-size: 0.8rem;
  }
  #mixtapeTop h2 {
    font-size: 1.2rem;
  }
  #mixtapeTop p {
    font-size: 0.6rem;
  }
  #mixtapeTop h1 {
    font-size: 2.5rem;
  }
  #dualityIMG {
    width: 160px;
  }
  #musicButton {
    width: 60px;
  }
  #buttonRow {
    gap: 0.8rem;
  }
  .projectsThumbnail {
    width: 60px;
    height: 50px;
  }
  .codeCard {
    width: 75%;
  }
  #mixtapeIntro h2 {
    font-size: 1rem;
  }
  #mixtapeIntro h1 {
    font-size: 1.4rem;
  }
  #mixtapeIntro p {
    font-size: 0.6rem;
  }
  #recentlyPlayed li {
    font-size: 0.8rem;
  }
  #playlistResults h2 {
    font-size: 1.2rem;
  }
  .songThumb {
    width: 40px;
    height: 20px;
  }
  .songInfo {
    font-size: 0.7rem;
  }
  .songInfo p {
    font-size: 0.4rem;
  }
}
@media (max-width: 450px) {
  .codeThumb {
    width: 200px;
    height: 125px;
  }
  .projectMedia > video {
    width: 200px;
  }
  #BotaniCuteThumb {
    width: 175px;
  }
  #designMain h1 {
    font-size: 2rem;
  }
  #designMain p {
    font-size: 0.8rem;
  }
}
@media (max-width: 435px) {
  #aboutWelcome > h1 {
    font-size: 2rem;
  }
  #aboutWelcome > p {
    font-size: 0.6rem;
  }
  #bioPic > p {
    font-size: 0.6rem;
  }
  #aboutWelcome h3 {
    font-size: 1rem;
  }
  #mixtapeTop p {
    font-size: 0.8rem;
  }
  #mixtapeTop h2 {
    font-size: 1rem;
  }
  .projectsThumbnail {
    width: 50px;
    height: 50px;
  }
  #projectsTop h2 {
    font-size: 0.7rem;
  }
  .codeCard h1 {
    font-size: 1.2rem;
  }
  .codeCard h2 {
    font-size: 1rem;
  }
  .codeCard p {
    font-size: 0.5rem;
  }
  #recentlyPlayed li {
    font-size: 0.7rem;
  }
  #mixtapeIntro h2 {
    font-size: 0.8rem;
  }
  #mixtapeIntro h1 {
    font-size: 1.2rem;
  }
  #mixtapeIntro p {
    font-size: 0.5rem;
  }
  #playlistResults h2 {
    font-size: 1rem;
  }
  #dualityIMG {
    width: 150px;
  }
  .musicButton {
    width: 70px;
  }

  
}
@media (max-width: 390px) {
  #social {
    width: 25px;
    margin: 3px;
  }
  #welcome h2 {
    font-size: 0.8rem;
  }
  #welcome h3 {
    font-size: 0.8rem;
  }
  #projectsTop h2 {
    font-size: 0.6rem;
  }
  #recentlyPlayed li {
    font-size: 0.6rem;
  }
}