@import url("https://fonts.googleapis.com/css2?family=SN+Pro:ital,wght@0,200..900;1,200..900&display=swap");

body, html {
  font-family: "SN Pro", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  margin: 0;
  padding: 0;
  height: 100%;
  background-color: #272C3F;
}
  
  /* 
  This is for the main face of the screen. 
  To start the user off with simplistic information 
  */
.background-main {
    height: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    text-align: center;
}
.profile-picture-container {
    border: 0;
    border-radius: 50%;
    overflow: hidden;
    width: 150px;
    height: 150px;
}
.profile-picture-container img {
    width: 100%;
    height: 99%;
    object-fit: cover;
}
.content {
    position: absolute;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.name {
    font-size: 50px;
    margin-bottom: 20px;
    color: white;
}
.description {
    font-size: 20px;
    margin-bottom: 40px;
    color: white;
}
.button-index,
.portfolio-links {
    text-decoration: none;
    color: white;
    margin: 0 10px;
    font-size: 20px;
}
.button-index:hover,
.portfolio-links:hover {
    color: #5D7B5F;
}

/*This is for the repeating frog moon emblem*/
.frog-container,
body {
  overflow-x: hidden;
}
.frog-moon-bar {
    height: 90px;
    width: 5076px;
    background-image: url('https://i.pinimg.com/736x/56/90/54/569054a2bf3370abf4b0c3fd2e06bc0f.jpg') ;
    background-repeat: repeat-x; 
    background-size: contain;
    position: absolute; 
    bottom: 0;
    left: 0;
    animation: slide 60s linear infinite;
}
@keyframes slide {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(-1692px, 0, 0);
  }
}

/* Specific Sections */
.about-me-section {
  color: #FFFFFF;
  font-weight: 300;
  padding: 1.5rem;
  font-size: 1.5rem;
  margin: 0 auto;
  max-width: 900px;
}
.portfolio-section {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  max-width: 1100px;
  margin: 0 auto;
  padding: 1.5rem;
  color: #FFFFFF;
}
.portfolio-section p {
  flex: 1;
  font-size: 25px;
}
.portfolio-section-beginning {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 1.5rem;
  color: #FFFFFF;
}
.portfolio-section-beginning p {
  text-align: center;
  font-size: 40px;
}


/* Frog image at the bottom. Wil take you to Roy Henry Vickers, the orginal artist. */
/* .tlingit-frog {
  width: 6%;
  position: absolute;
  right: 0;
  bottom: 0;
  margin-bottom: 10px;
  margin-right: 10px;
}  */

/* Navigation Bar CSS */
header {
  width: 100%;
  display: flex;
  position: fixed;
  flex-flow: row wrap;
  align-items: center;
  justify-content: space-between;
  left: 95%;
  top: 0.5rem;
}
nav {
  padding: 0 14px;
  display: inline-block;
}
a.active {
    pointer-events: none;
    cursor: default;
    color: #5D7B5F;
    text-decoration: underline;
}
.menu {
  width: 30px;
  height: 30px;
  position: relative;
  cursor: pointer;
}
.menu:hover .bar-1 {
  width: 30px;
  top: 15px;
  transform: rotate(135deg);
}
.menu:hover .bar-2 {
  top: 15px;
  transform: rotate(-135deg);
}
.menu:hover .dropdown-menu {
  right: 0;
  opacity: 1;
  visibility: visible;
}
.dropdown-menu {
  right: 0;
  padding: 10px 0;
  top: 30px;
  position: absolute;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition:
    opacity 220ms ease,
    transform 500ms ease,
    visibility 0s linear 500ms;
}
.menu:hover .dropdown-menu,
.menu:focus-within .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition:
    opacity 500ms ease,
    transform 500ms ease,
    visibility 0.5s;
}
[class*=bar-] {
  background: white;
  height: 3px;
  right: 0;
  position: absolute;
  transition: all 0.5s ease;
}
.bar-1 {
  width: 30px;
  top: 10px;
}
.bar-2 {
  width: 30px;
  top: 18px;
}

.item {
  width: 130px;
  margin: 0;
  padding: 5px 0;
  display: inline-block;
  position: relative;
  color: white;
  text-align: right;
  transition: all 0.5s ease;
  text-decoration: none;
}
.item:hover {
  opacity: 0.5;
  color: #5D7B5F;
}
.item:focus {
  letter-spacing: 2px;
}
.item:focus-within::before {
  width: 40px;
}

/* Sub nav menu */
.submenu {
  position: relative;
  display: block;
}
.submenu-menu {
  position: relative;
  top: 0;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(-4px);
  pointer-events: none;
  transition:
    max-height 420ms ease,
    opacity 260ms ease,
    transform 260ms ease;

}
.submenu:hover .submenu-menu,
.submenu:focus-within .submenu-menu {
  max-height: 450px;
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.subitem {
  width: 160px;
  font-size: 0.95rem;
}
.submenu > .item::after {
  opacity: 0;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.8);
}
.submenu:hover > .item::after {
  color: #5D7B5F;
}


/* Parallax Sections */
.nice-mountains,
.wild-fire {
  width: 100%;
}
.codepens,
.btcs {
  width: 50%;
}
#wild_fire_page {
  flex: 0 0 40%;
  height: 300px;
  border: none;
}
.parallax {
  height: 100vh;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.parallax-mtn {
  background-image: url("../images/hope-ca-mountain.jpeg");
}
.parallax-fire {
  background-image: url("../images/wild-fire-background.PNG");
}
.parallax-archery {
  background-image: url("https://imgs.search.brave.com/-sy_72Dan4rZq9tan43fESEEL1adqC1Wfhw88r1VE90/rs:fit:500:0:1:0/g:ce/aHR0cHM6Ly9jZG4u/cGl4YWJheS5jb20v/cGhvdG8vMjAxNC8x/MC8wNC8xMi8wOC9h/cmNoZXJ5LTQ3Mjkz/Ml82NDAuanBn");
}
.parallax-snow-flowers {
  background-image: url("../images/snow-flower-2.PNG");
}
.parallax-archery-nav {
  background-image: url("https://imgs.search.brave.com/K_Q6FK1pp5II1SUnnzxU3ATJZttzc4lWBqNDwut6BQ8/rs:fit:860:0:0:0/g:ce/aHR0cHM6Ly93d3cu/aHVudGVyc2ZyaWVu/ZC5jb20vYXNzZXRz/L2ltYWdlcy9ib3dz/ZWxlY3Rpb24zNS5q/cGc");
}
.parallax-yellow-cedar {
  background-image: url("https://imgs.search.brave.com/e4zSYZKHte5di25AIQWO6mE2PcIivMd1EgKZIwYQZq0/rs:fit:860:0:0:0/g:ce/aHR0cHM6Ly9pMC53/cC5jb20vdGltZW5z/cGFjZS5uZXQvd3At/Y29udGVudC91cGxv/YWRzL1RvdGVtX1Ry/b3QvTUpSXzk4NThf/SERSLUVkaXQuanBn/P3Jlc2l6ZT02MTAs/NDAyJnNzbD0x");
}


/* Java Terminal Style */
.cheerpj-img {
  width: clamp(90px, 8%, 180px);
}
.java-section {
  color: #FFFFFF;
  font-weight: 300;
  font-size: 1.5rem;
  margin: 0 auto;
  max-width: 900px;
}
.java-terminal-section {
  color: white;
  margin: auto;
  max-width: 900px;
}
#terminal {
  background: #000;
  color: #0f0;
  padding: 10px;
  font-family: monospace;
  height: 300px;
  overflow-y: auto;
  border-radius: 5px;
}
#terminal-input {
  width: 100%; 
  padding: 8px; 
  font-family: monospace; 
  font-size: 1rem; 
  margin-top: 10px; 
  border-radius: 3px; 
  border: none;
  background: #222; 
  color: #0f0;
  max-width: 885px;
}
#help-list {
  margin-top: 10px; 
  font-size: 0.9rem; 
  color: #ccc;
}