@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&family=Pacifico&display=swap');
.pacifico {
    font-family: "pacifico", serif;
}
* {
    padding: 0;
    margin: 0;
}
:root {
    --color1:#0A0F0D;
    --color2:rgba(255, 255, 255, 0.92);
    --color3:#FF7F11;
    --color3Light:#ff8011be;
    --color4:#bf0603;
    --color5:#f5f749;
    --color6:#069e2d;
    --hover:#c3c4c7;
}
::selection {
    background-color: var(--color3);
}
body {
    width: 100%;
    display: flex;
    flex-direction: column;
    background-color: black;
    font-family: "Manrope", sans-serif;
    color: var(--color2);
}
.topHeader {
    width: 100%;
    height: 5em;
    position: fixed;
    z-index: 100;
    display: flex;
    padding: 1em;
    box-sizing: border-box;
    justify-content: space-between;
}
.logoHeader {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0.5em 1em;
    font-size: 1.5em;
    gap: .25em;
    font-weight: 900;
    box-sizing: border-box;
    position: relative;
    z-index: 1;
}
.logoHeader > span {
    font-weight: 100;
}

.contactMeButton {
  padding: 1em 2.5em;
  border-radius: 2em;
  background-color: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--color2);
  font-weight: 500;
  letter-spacing: 0.5px;
  backdrop-filter: blur(8px);
  transition: all 0.3s ease;
  cursor: pointer;
}

.contactMeButton:hover {
  border-color: rgba(255, 180, 100, 0.8);
  box-shadow: 0 0 10px rgba(255, 150, 80, 0.3);
  transform: translateY(-2px);
}
.contactMeButton:active {
    background-color: rgba(255,255,255,0.2);
    transform: translateY(-2px) scale(1.05);
}


@keyframes moveGradient {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.heroSection {
    width: 100%;
    height: 100vh;
    position: relative;
    background: radial-gradient(circle at 40% 30%, rgba(255, 140, 60, 0.3), rgba(0, 0, 0, 1) 70%),
                linear-gradient(120deg, #b34700, #3a0a00, #1a0000);
    background-size: 200% 200%;
    animation: moveGradient 15s ease infinite;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2em;
    position: relative;
    flex-direction: column;
    gap: 1em;
}

.heroSection::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url("https://grainy-gradients.vercel.app/noise.svg");
  opacity: 0.75;
  pointer-events: none;
  mix-blend-mode:overlay;
}
.availWork {
    background-color: var(--color2);
    color: var(--color1);
    position: relative;
    z-index: 1;
    padding: 1em;
    display: flex;
    gap: 1em;
    font-size: .5em;
    align-items: center;
    border-radius: 10px;
    box-shadow: 0px 15px 41px 12px rgba(0,0,0,0.1);
}
.dot {
    background-color:var(--color6);
    width: .3em;
    height: .3em;
    border-radius: 10px;
}
.title {
    display: inline-block;
    position: relative;
    z-index: 1;
    color: rgba(255, 255, 255, 0.92);
}
.title > h1{
    text-align: center;
    font-weight: 500;
}
.accent1 {
    font-weight: 900;
}
.accent2 {
    font-weight: 600;
}
.accent3 {
    color: var(--color3Light);
    font-weight: 400;
    text-shadow: 0 2px 20px rgba(255, 120, 40, 0.25);
}
.skillsSection {
    width: 100%;
    height: 100vh;
    background-color: black;
    position: relative;
}
.skillsSection::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background:linear-gradient(to top,black,rgba(0,0,0,0));
    top: -100%;
    pointer-events: none;
}
.commentar {
    text-align: center;
    font-weight: 400;
    font-size: 0.5em;
    color: var(--color2);
    z-index: 1;
    letter-spacing: 0.2px;
    opacity: 0.5;
}
.author {
    position: fixed;
    bottom: 0;
    right: 0;
    padding: 0.5em 1em; 
    color: var(--color2);
    opacity: 0.5;
    transition: all 0.2s ease-in-out;
    &:hover {
        cursor: pointer;
        color: var(--color3Light);
        opacity: 1;
        transform: translateY(-2px);
        text-shadow: 0 2px 20px rgba(255, 120, 40, 0.25);
    }
}