@font-face {
  font-family: 'F37 Ginger Bold';
  src: url(../fonts/F37_Ginger_Bold.otf);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  outline: none;
}

a,
a:focus,
a:active,
a:visited,
button,
button:focus,
button:active {
  outline: none !important;
  box-shadow: none !important;
  -webkit-tap-highlight-color: transparent;
}

body {
  max-width: 100%;
  background: black;
  overflow-x: hidden;
}

/* MENÚ — copiado del home */
.hamburger {
  width: 3em;
  height: 3em;
  position: absolute;
  top: 2.5em;
  right: 5em;
  z-index: 10000;
  background: transparent;
  cursor: pointer;
}
.hamburger.is-active .hamburger--container .hamburger--bars { background: white; }
.hamburger.is-active .hamburger--container .hamburger--bars:before,
.hamburger.is-active .hamburger--container .hamburger--bars:after { background: white; }
.hamburger.is-active .hamburger--container .hamburger--bars:before { left: 0.25em; }
.hamburger.is-active .hamburger--container .hamburger--bars:after { left: -0.25em; }
.hamburger .hamburger--container { width: 100%; padding: 0.25em; position: relative; }
.hamburger .hamburger--container .hamburger--bars {
  height: 2px;
  width: 3.5em;
  background: red;
  position: absolute;
  top: 0.9em;
  transition: 0.3s ease;
}
.hamburger .hamburger--container .hamburger--bars:before,
.hamburger .hamburger--container .hamburger--bars:after {
  content: "";
  display: block;
  height: 2px;
  width: 3.5em;
  background: inherit;
  position: absolute;
  left: 0;
  transition: 0.3s ease;
}
.hamburger .hamburger--container .hamburger--bars:before { top: -0.5em; }
.hamburger .hamburger--container .hamburger--bars:after { top: 0.5em; }

.logo {
  width: 20em;
  height: 20em;
  position: absolute;
  top: 1.5em;
  left: 4em;
  z-index: 10000;
}
.logo img { width: 100%; display: block; transition: 0.3s linear 0.3s; }

.fsmenu {
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 1000;
  overflow: hidden;
  display: none;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
}

.fsmenu .fsmenu--container {
  width: 100vw;
  height: 100vh;
  padding: 6em 8em 4em 8em;
  background: red;
  position: relative;
  overflow: hidden;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transform: translateX(100%);
}

.fsmenu--main {
  display: flex;
  flex: 1;
  align-items: center;
  justify-content: center;
  overflow: visible;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.fsmenu--links {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.5em;
  overflow: visible;
  width: 100%;
}

.fsmenu--item {
  display: block;
  text-decoration: none;
  color: white;
  font-size: 4em;
  font-weight: 700;
  overflow: visible;
  position: relative;
  line-height: 1.7;
  padding-bottom: 0.15em;
  text-align: center;
}

.fsmenu--item:hover { color: black; text-decoration: none; }

.fsmenu--footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2em;
  border-top: 1px solid rgba(255,255,255,0.3);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.fsmenu--email {
  color: white;
  text-decoration: none;
  font-size: 1.1em;
  font-weight: 400;
}
.fsmenu--email:hover { color: black; text-decoration: none; }

.fsmenu--social { display: flex; gap: 3em; }
.fsmenu--social a {
  color: white;
  text-decoration: none;
  font-size: 1.1em;
  font-weight: 400;
}
.fsmenu--social a:hover { color: black; text-decoration: none; }

.fsmenu--scrolling-text {
  position: fixed;
  top: 0;
  left: 0;
  width: 200vw;
  height: 100vh;
  display: flex;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  white-space: nowrap;
  z-index: 999;
}

.fsmenu--scrolling-text span {
  font-size: 10em;
  font-weight: 700;
  text-transform: uppercase;
  color: rgba(0,0,0,0.1);
  margin-right: 0.5em;
  display: inline-block;
  flex-shrink: 0;
}

.fsmenu--item:hover .fsmenu--scrolling-text {
  opacity: 1;
  animation: animScrollingContactTextLeft 6s linear 0s infinite;
}

.fsmenu.is-active { display: block; }
.fsmenu.is-active .fsmenu--container {
  animation: animMenuReveal 0.6s cubic-bezier(0.13, 0.13, 0.02, 1.07) 0s forwards;
}
.fsmenu.is-active .fsmenu--main,
.fsmenu.is-active .fsmenu--footer {
  opacity: 1;
  transition: opacity 0.3s ease 0.5s;
}

.fsmenu.close-menu { display: block; }
.fsmenu.close-menu .fsmenu--container {
  width: 100vw;
  animation: animMenuClose 0.5s cubic-bezier(0.13, 0.13, 0.02, 1.07) 0s forwards;
}
.fsmenu.close-menu .fsmenu--main,
.fsmenu.close-menu .fsmenu--footer {
  opacity: 0;
  transition: opacity 0.15s ease;
}

@keyframes animMenuReveal {
  0% { transform: translateX(100%); }
  100% { transform: translateX(0%); }
}
@keyframes animMenuClose {
  0% { transform: translateX(0%); }
  100% { transform: translateX(-100%); }
}
@keyframes animScrollingContactTextLeft {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* FADE UP */
.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* HERO */
.project-hero {
  background: black;
  height: 110vh;
  display: flex;
  align-items: center;
  padding: 15% 10% 15% 10%;
  overflow: hidden;
}

.project-hero--content {
  animation: heroSlideUp 1.2s cubic-bezier(0.13, 0.13, 0.02, 1.07) 0.3s both;
}

.project-hero--title {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 6vw;
  color: white;
  margin: 0 0 0.1em 0;
  line-height: 1;
}

.project-hero--label {
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  font-size: 4vw;
  color: red;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

@keyframes heroSlideUp {
  0% { transform: translateY(60px); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}

/* PARALLAX */
.project-parallax {
  height: 90vh;
  overflow: hidden;
  position: relative;
}

.project-parallax-inner {
  position: absolute;
  top: -10%;
  left: 0;
  width: 100%;
  height: 120%;
  will-change: transform;
}

.project-parallax-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.project-parallax-img--mobile {
  display: none;
}

/* TEXTO PRINCIPAL */
.project-text-block {
  background: black;
  padding: 17% 10% 10% 10%;
  display: flex;
  gap: 8%;
  align-items: flex-start;
}

.project-text-content {
  flex: 1;
}

.project-text-content p {
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  font-size: 1.3vw;
  color: rgba(255,255,255,0.85);
  line-height: 1.8;
  margin: 0 0 1.5em 0;
}

.project-meta {
  flex: 0 0 25%;
  padding-top: 0.3em;
}

.project-meta--item {
  margin-bottom: 2em;
}

.project-meta--label {
  display: block;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 0.8vw;
  color: red;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.5em;
}

.project-meta--value {
  display: block;
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  font-size: 0.9vw;
  color: rgba(255,255,255,0.7);
  line-height: 1.5;
}

/* GALERÍA */
.project-gallery {
  background: black;
  padding: 2% 0;
}

.project-image {
  width: 65%;
  margin: 0 auto 8%;
  overflow: hidden;
  border-radius: 2px;
}

.project-image img {
  width: 100%;
  display: block;
  transition: transform 0.6s ease;
}

.project-image:hover img {
  transform: scale(1.02);
}

.project-image--large {
  width: 100%;
  margin: 2% 0 10% 0;
  border-radius: 0;
}

.project-image--large img {
  width: 100%;
  height: 110vh;
  object-fit: cover;
}

/* PAUSAS DESCRIPTIVAS */
.project-pause {
  padding: 5% 10% 10% 10%;
  margin: 4% 0;
  text-align: center;
  width: 100%;
}

.project-pause--title {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 2.5vw;
  color: red;
  margin-bottom: 0.5em;
}

.project-pause p {
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  font-size: 1.5vw;
  color: white;
  line-height: 1.4;
  margin: 0 auto;
  max-width: 70%;
}




/* NEXT WORK */
.project-next {
  background: black;
  padding: 6% 10%;
  border-top: 1px solid rgba(255,255,255,0.1);
  text-align: right;
}

.project-next--link {
  text-decoration: none;
  display: inline-flex;
  flex-direction: column;
  align-items: flex-end;
  color: inherit;
}

.project-next--link:hover,
.project-next--link:focus,
.project-next--link:active,
.project-next--link:visited {
  text-decoration: none;
  color: inherit;
  outline: none;
}

.project-next--label {
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  font-size: 1vw;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.5em;
}

.project-next--title {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 2.5vw;
  color: red;
  transition: color 0.3s ease;
}

.project-next--link:hover .project-next--title {
  color: white;
  text-decoration: none;
}

/* SCROLLING TEXT */
.scrolling_text {
  width: 100%;
  overflow: hidden;
  display: flex;
  white-space: nowrap;
  margin: 4% 0 0 0;
}

.scrolling_text--link {
  display: flex;
  text-decoration: none;
  width: 100%;
  color: inherit;
}

.scrolling_text--link:hover,
.scrolling_text--link:focus,
.scrolling_text--link:active,
.scrolling_text--link:visited {
  text-decoration: none;
  color: inherit;
  outline: none;
}

.text {
  font-weight: 700;
  text-transform: uppercase;
  -webkit-text-stroke: 1.5px white;
  color: transparent;
  animation: animate_text 30s linear infinite;
  font-family: "Poppins", sans-serif;
  font-size: 10vw;
    text-decoration: none;
}

.text span {
  margin: 0 40px;
    text-decoration: none;
}

.text span:hover {
  -webkit-text-stroke: 1.5px red;
    text-decoration: none;
}

@keyframes animate_text {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(-100%, 0, 0); }
}

.textofinal {
  color: white;
  width: 100%;
  text-align: center;
  background: red;
  font-family: F37 Ginger Bold;
  font-weight: bold;
  font-size: 17vw;
  margin-bottom: 1px;
  clear: both;
  overflow: hidden;
}

.ball {
  width: 50px;
  height: 50px;
  position: fixed;
  top: 0;
  left: 0;
  border: 3px solid red;
  border-radius: 50%;
  pointer-events: none;
}






@media only screen and (max-width: 1024px){
    
    
    
.fsmenu--item {
  font-size: 7.5em;
  line-height: 1.6;
}

.project-hero--title {
    font-size: 13vw;
  }

  .project-text-content p {
    font-size: 1.5vw;
  }

.project-parallax {
    height: 60vh;
  }
  
  .project-meta--label {
    font-size: 1.4vw;
  }

  .project-meta--value {
    font-size: 1.5vw;
  }

.project-image--large img {
    height: 40vh;
  }

  .project-pause p {
    font-size: 2vw;
  }

  .project-next {
    padding: 10% 10%;
  }

  .project-next--title {
    font-size: 4vw;
  }

  .project-next--label {
    font-size: 2.5vw;
  }

.scrolling_text {
  margin: 4% 0 0 0;
}

.text {
  -webkit-text-stroke: 1.5px white;
  font-size: 10vw;
}

.ball {
    display: none;
} 
}





@media only screen and (max-width: 768px){
    

 
  .hamburger {
    right: 3em;
  }

  .fsmenu .fsmenu--container {
    padding: 5em 4em 3em 4em;
  }

.fsmenu--item {
  font-size: 6em;
  line-height: 1.7;
}

.fsmenu--email {
  font-size: 1.1em;
}

.fsmenu--social a {
  font-size: 1.1em;
} 
   
  .project-hero--title {
    font-size: 14vw;
  }

  .project-hero--label {
    font-size: 4.5vw;
  }
  
.project-parallax {
    height: 70vh;
  }
  .project-text-block {
    flex-direction: column;
    padding: 20% 10%;
    gap: 3em;
  }

  .project-text-content p {
    font-size: 2.5vw;
  }

 .project-meta--label {
    font-size: 2vw;
  }

  .project-meta--value {
    font-size: 2.5vw;
  }

  .project-image--large img {
    height: 40vh;
  }

  .project-pause p {
    font-size: 2.5vw;
    max-width: 90%;
  }

  .project-next--title {
    font-size: 7vw;
  }
    
  .project-next {
    padding: 10% 10%;
  }

  .project-next--title {
    font-size: 4vw;
  }

  .project-next--label {
    font-size: 2.5vw;
  }

.scrolling_text {
  margin: 4% 0 0 0;
}

.text {
  -webkit-text-stroke: 1.5px white;
  font-size: 10vw;
}

.ball {
    display: none;
  }

    


}











@media only screen and (max-width: 480px){
    
 
.hamburger {
    right: 2em;
    top: 2em;
  }

  .logo {
    left: 2em;
    top: 1em;
  }

  .fsmenu {
    position: fixed;
  }

  .fsmenu .fsmenu--container {
    padding: 5em 2em 3em 2em;
  }

  .fsmenu--item {
    font-size: 3.7em;
    line-height: 1.8;
  }

  .fsmenu--footer {
    flex-direction: column;
    align-items: center;
    gap: 1.5em;
    padding-top: 1.5em;
  }

  .fsmenu--email {
    font-size: 1.2em;
    text-align: center;
    order: 2;
  }

  .fsmenu--social {
    gap: 2em;
    order: 1;
    justify-content: center;
  }

  .fsmenu--social a {
    font-size: 1.2em;
  }

  .project-hero {
    padding: 0 6% 10% 6%;
    align-items: center;
  }

  .project-hero--title {
    font-size: 16vw;
  }

  .project-hero--label {
    font-size: 6vw;
  }

  .project-parallax {
    height: 70vh;
  }

  .project-parallax-img--desktop {
    display: none;
  }
  .project-parallax-img--mobile {
    display: block;
  }

  .project-text-block {
    flex-direction: column;
    padding: 30% 10%;
    gap: 3em;
  }

  .project-text-content p {
    font-size: 4.5vw;
  }

  .project-meta--label {
    font-size: 3.5vw;
  }

  .project-meta--value {
    font-size: 4vw;
  }

  .project-gallery {
    padding: 0;
  }

  .project-image {
    width: 75%;
    margin: 0 auto 10%;
  }

  .project-image--large {
    width: 100%;
    margin: 10% 0;
  }

  .project-image--large img {
    height: 30vh;
  }

  .project-pause {
    padding: 15% 10%;
  }

  .project-pause p {
    font-size: 5.5vw;
    max-width: 100%;
  }

  .project-next {
    padding: 20% 10%;
  }

  .project-next--title {
    font-size: 9vw;
  }

  .project-next--label {
    font-size: 3.5vw;
  }

  .scrolling_text {
    margin: 8% 0 0 0;
  }

  .text {
    -webkit-text-stroke: 1px white;
    font-size: 11vw;
  }

  .textofinal {
    font-size: 17vw;
    overflow: hidden;
    width: 100%;
  }

  .ball {
    display: none;
  }
    
}



@media only screen and (min-width: 1800px) {
  .fsmenu--item {
    font-size: 7em;
  }

  .fsmenu--email {
    font-size: 1.3em;
  }

  .fsmenu--social a {
    font-size: 1.3em;
  }
}

@media only screen and (min-width: 2560px) {
  .fsmenu--item {
    font-size: 9em;
  }

  .fsmenu--email {
    font-size: 1.5em;
  }

  .fsmenu--social a {
    font-size: 1.5em;
  }
}