@charset "UTF-8";

/**
 * (ﾉ◕ヮ◕)ﾉ*:･ﾟ✧ S T Y L E S
 * flower power ✿ hyper daisy portfolio theme
 * 2024 ✿ hyperdaisy.com
 * by noemi m. martínez
 **/

 /* ------------------------------
	LAYOUT 
 ------------------------------ */

html, body {
  scroll-behavior: smooth !important; /* TROUBLESHOOT */
}

/*
@media screen and (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}
} */

html {
  height: calc(100% - 20px);
  width: 100%;
  overflow: scroll;
}

body {
  height: 100%;
  margin: 0;
  border: 10px solid;
  border-image: linear-gradient(to right, fuchsia, blueviolet, blue);
  border-image-slice: 1;
}

hr {
  border-top: 2px dashed fuchsia; 
  border-bottom: none;
  margin-top: 6%; 
  margin-bottom: 6%;
}

::selection {
  background: yellow; /* WebKit/Blink Browsers */
  color: darkblue;
}

::-moz-selection {
  background: yellow /* Gecko Browsers */
}


/* ------------------------------
	TYPOGRAPHY 
 ------------------------------ */

h1 {
  font-family: 'IBM Plex Sans', Helvetica, Arial, sans-serif;
  font-weight: 400;
  font-size: 3.5rem;
	text-align: left;

}

h1 .text-highlight {
  color: fuchsia;
  font-family: 'IBM Plex Mono', 'Courier New', Courier, monospace;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.5rem;
}

p {
  font-size: 1rem;
}

h2, h3, h4, h5, h6, p, ul, ol {
    font-family:  'IBM Plex Mono', 'Courier New', Courier, monospace;
    color: black;
	text-align: left;
}

p, ul, ol {
	font-family:  'IBM Plex Sans', Helvetica, Arial, sans-serif;
    color: black;
    font-weight: 400;
	text-align: left;
}

.mono {
  color: fuchsia;
  font-family: 'IBM Plex Mono', 'Courier New', Courier, monospace;
}

.mono-black {
  color: black;
  font-family: 'IBM Plex Mono', 'Courier New', Courier, monospace;
}

.sans {
  color: black;
  font-family: 'IBM Plex Sans', Helvetica, Arial, sans-serif;
}

a {
  color: fuchsia;
  text-decoration: solid underline blue;
  transition: color 0.35s, text-decoration 0.35s;
}

a:hover {
  color: blue;
  text-decoration: wavy underline fuchsia;
}



/* ------------------------------
	MENU 
 ------------------------------ */

/* HAMBURGER CONTAINER */

.button-container {
  background-color: black;
  border-radius: 50%;
  position: fixed;
  height: 50px;
  width: 50px;
  top: 28px;
  right: 28px;
  z-index: 99;
}

/* HAMBURGER ICON AREA */

.button-menu {
  position: fixed;
  height: 20px;
  width: 24px;
  top: 44px;
  right: 41px;
  cursor: pointer;
  z-index: 100;
  transition: opacity 0.25s ease;
}

.button-menu:hover {
  opacity: 0.6;
}

/* HAMBURGER COMPONENTS */

.button-menu.active .top {
  transform: translateY(8px) rotate(45deg);
  background: white;
}

.button-menu.active .middle {
  opacity: 0;
  background: white;
}

.button-menu.active .bottom {
  transform: translateY(-8px) rotate(-45deg);
  background: white;
}

.button-menu span {
  background: white;
  border: none;
  height: 2px;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  transition: all 0.35s ease;
  cursor: pointer;
}

.button-menu span:nth-of-type(2) {
  top: 8px;
}

.button-menu span:nth-of-type(3) {
  top: 16px;
}

/* OVERLAY BACKGROUND */

.overlay {
  position: fixed;
  background: blue;
  top: 0;
  left: 0;
  width: 100%;
  height: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s, visibility 0.35s, height 0.35s;
  overflow: hidden;
  z-index: 90;
}

.overlay.open {
  opacity: 0.95;
  visibility: visible;
  height: 100%;
}

.overlay.open li {
  animation: fadeInRight 0.5s ease forwards;
  animation-delay: 0.35s;
}

.overlay.open li:nth-of-type(2) {
  animation-delay: 0.4s;
}

.overlay.open li:nth-of-type(3) {
  animation-delay: 0.45s;
}

.overlay.open li:nth-of-type(4) {
  animation-delay: 0.5s;
}

/* STYLES FOR NAV CONTENT */

.overlay nav {
  position: relative;
  height: 60%;
  top: 50%;
  left: 20%;
  transform: translateY(-50%);
  font-size: 3rem;
  font-family: 'IBM Plex Mono', 'Courier New', Courier, monospace;
  font-weight: 400;
  text-align: left;
}

.overlay nav ul li a.small {
  font-size: 1.5rem;
}

.overlay ul {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  display: inline-block;
  position: relative;
  height: 100%;
}

.overlay ul li {
  display: block;
  height: 20%; 
  min-height: 50px;
  position: relative;
  opacity: 0;
}

.overlay ul li a {
  display: block;
  position: relative;
  color: white;
  text-decoration: none;
  overflow: hidden;
}

.overlay ul li a:hover::after,
.overlay ul li a:focus::after,
.overlay ul li a:active::after {
  width: 100%;
}

.overlay nav ul li a.flower {
  display: block;
  transition: transform 0.35s, content 0.35s;
}

.overlay nav ul li a.flower:hover::after {
  content: ' ✿';
  transition: content 0.35s;	
}

.overlay nav ul li a.flower:hover {
  transform: translateX(10%);
}

/* FADE-IN ANIMATION */

@keyframes fadeInRight {
  0% {
    opacity: 0;
    left: 20%;
  }
  100% {
    opacity: 1;
    left: 0;
  }
}


/* ------------------------------
	FOOTER 
 ------------------------------ */

.home-footer {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  transition: transform 0.35s, text-decoration 0.35s;
}

.home-footer:hover {
  transform: translateY(-4%);
  transition: transform 0.35s, text-decoration 0.35s;
}

.home-footer p {
  display: inline-block;
  background-color: black;
  color: white;
  padding: 10px;
  font-size: 0.8em;
  text-align: center;
  margin-bottom: 30px;
}

.home-footer p a {
  color: white;
  text-decoration: wavy underline black;
  transition: color 0.35s, text-decoration 0.35s;
}

.home-footer p a:hover {
  color: white;
  text-decoration: wavy underline fuchsia;
}

.pages-footer {
  display: block;
  background-color: black;
  padding: 8px;
  margin-top: 6%;
}

.pages-footer p {
  color: white;
  text-align: center;
  font-size: smaller;
}

.pages-footer p a {
  color: fuchsia;
  font-family: 'IBM Plex Mono', 'Courier New', Courier, monospace;
  text-decoration: wavy underline black;
  transition: color 0.35s, text-decoration 0.35s;
}

.pages-footer p a:hover {
  color: fuchsia;
  font-family: 'IBM Plex Mono', 'Courier New', Courier, monospace;
  text-decoration: wavy underline fuchsia;
  transition: color 0.35s, text-decoration 0.35s;
}


/* ------------------------------
	HOMEPAGE 
 ------------------------------ */

.flower-field {
  background-image: url(/images/flower-field.jpg);
  background-attachment: fixed;
  background-size: cover;
  height: 100%;
  width: 100%;
  overflow: scroll;
}

.intro-container {
  margin-top: 10%;
  max-width: 350px;
}

span.intro-word {
  padding: 0 20px;
  background-color: white;
  display: inline-block;
}

#text-change {
  color: fuchsia;
  font-family: 'IBM Plex Mono', 'Courier New', Courier, monospace;
  display: inline-block;
}

.intro-button-container {
  max-width: 350px;
  margin-bottom: 10%;
}

a.intro-link {
  color: black;
  text-decoration: none;
  display: inline-block;
  background-color: white;
  padding: 10px 20px;
  font-family: 'IBM Plex Mono', 'Courier New', Courier, monospace;
  font-weight: 600;
  text-transform: lowercase;
  font-size: 1.5rem;
  margin-right: .75rem;
  margin-top: .75rem;
  transition: transform 0.35s, color 0.35s, text-decoration 0.35s, box-shadow 0.35s;
  box-shadow: -5px 5px fuchsia;
}

a.intro-link:hover {
  transform: translateY(-10%);
  box-shadow: -5px 5px blue;
}

a.intro-link:active {
  transform: translateY(0);
  box-shadow: -3px 3px black;
}

a.intro-link:after {
  content: ' ➺';
  color: blue;
  transition: content 0.35s, color 0.35s;
}

a.intro-link:hover:after {
  content: ' ✿';
  color: fuchsia;
}

a.intro-link:active:after {
  content: ' ✿';
  color: black;
}


/* ------------------------------
	PORTFOLIO 
 ------------------------------ */

.field {
  background-image: url(/images/field-noise.png);
  background-color: lavender;
  background-size: repeat;
  height: 100%;
  width: 100%;
  overflow: scroll;
}

h1.page-title {
  color: fuchsia;
  font-family: 'IBM Plex Mono', 'Courier New', Courier, monospace;
  background-color: white;
  display: inline-block;
  margin-top: 0;
  margin-bottom: 0;
  padding: 10px 20px 20px 20px;
}

.page-blurb {
  max-width: 900px;
}

.page-blurb h2 {
  font-family: 'IBM Plex Sans', Helvetica, Arial, sans-serif;
  font-weight: 400;
  font-size: 1.5rem;
  background-color: white;
  display: block;
  padding: 20px;
}

h2.mono-quote {
  color: fuchsia;
  font-family: 'IBM Plex Mono', 'Courier New', Courier, monospace;
  letter-spacing: -1px;
}

.label {
  color: white;
  font-family: 'IBM Plex Mono', 'Courier New', Courier, monospace;
  background-color: black;
  display: inline-block;
  padding: 8px 10px;
  font-weight: 600;
  font-size: smaller;
  text-transform: lowercase;
  margin-top: 0;
  margin-bottom: 0;
}

a.hyper-button {
  color: black;
  text-transform: lowercase;
  font-size: smaller;
  font-weight: 600;
  margin-top: 4%;
  margin-bottom: 8%;
}

h3.project-title-link, h3.project-title, .hyper-button {
  font-family: 'IBM Plex Mono', 'Courier New', Courier, monospace;
  text-decoration: none;
  background-color: white;
  display: inline-block;
  padding: 10px;
  transition: transform 0.35s, box-shadow 0.35, color 0.35;
  margin: 0;
  
}

h3.project-title-link, .hyper-button {
box-shadow: -5px 5px fuchsia;
transition: transform 0.35s;
}

h3.project-title-link:hover, .hyper-button:hover {
  transform: translateX(5%);
  box-shadow: -5px 5px blue;
}

h3.project-title-link:active, .hyper-button:active {
  transform: translateX(0);
  box-shadow: -3px 3px black;
}

h3.project-title-link a, .hyper-button a{
  color: black;
  text-decoration: none;
  transition: color 0.35s, text-decoration 0.35s, box-shadow 0.35s;
}

h3.project-title-link a:after, a.hyper-button:after {
  content: ' ➺';
  color: blue;
  transition: content 0.35s, color 0.35s;
}

h3.project-title-link a:hover:after, a.hyper-button:hover:after {
  content: ' ✿';
  color: fuchsia;
}

h3.project-title-link a:active:after, a.hyper-button:active:after {
  color: black;
}

p.project-summary, ul.project-summary {
  background-color: white;
  display: inline-block;
  padding: 10px;
  margin: 0;
}

ul.project-summary {
  padding: 10px 30px;
  line-height: 1.4rem;
}

img {
  width: 98%;
  height: auto;
}

img.full {
  width: 100%;
  height: auto;
}

.portfolio-thumb {
  max-width: 900px;
  height: auto;
}

/* ------------------------------
	ABOUT
 ------------------------------ */

img.portrait {
  max-width: 400px;
  height: auto;
}


/* ------------------------------
	DESKTOP Fixes
 ------------------------------ */

 @media screen and (min-width: 900px) {

  h1 {
    font-size: 6rem;
  }
	
  .intro-container,
  .intro-button-container {
    max-width: 768px;
  }

  span.intro-fix {
    margin-left: -32px;
  }

  .page-blurb {
    max-width: 768px;
  }

  .page-blurb h2 {
    font-size: 2rem;
  }

  .portfolio-thumb {
    max-width: 500px;
    height: auto;
  }

}