

@font-face {
	font-family: 'Univers LT Std 57 Condensed';
	font-style: normal;
	font-weight: normal;
	src: local('Univers LT Std 57 Condensed'), url('fonts/UniversLTStd-Cn.woff') format('woff');
}


@font-face {
	font-family: 'Univers LT Std 55 Roman';
	font-style: normal;
	font-weight: normal;
	src: local('Univers LT Std 55 Roman'), url('fonts/UniversLTStd.woff') format('woff');
}

@font-face {
	font-family: 'Univers LT Std 67 Bold Condensed';
	font-style: normal;
	font-weight: normal;
	src: local('Univers LT Std 67 Bold Condensed'), url('fonts/UniversLTStd-BoldCn.woff') format('woff');
}

:root {
	--font-white: #fff;
	--yellow: #ffee2f;
	--almost-black: #191b20;
}


body {
	color: var(--almost-black);
	font-family: 'Univers LT Std 55 Roman';
	font-weight:normal;
	padding: 0;
	margin: 0;
	overflow-x: hidden;
	display: flex;
	flex-direction: column;
	background-image: url('images/dirtybackroad.webp');
}
main {
	flex:1;
}
a {
	color: var(--almost-black);
	font-family: 'Univers LT Std 57 Condensed';
	font-weight:normal;
}   

.container {
	width: 85%;
	margin: 0 auto;
}

.color-black {
	color: var(--almost-black);
}

.color-white, .color-white a {
	color: var(--font-white);
}

.font-bold-hovered {
	font-weight: 600;
	color: var(--yellow);
}

.parallax {
	position: relative;
	height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
}

.parallax .content {
	background-color: rgba(0, 0, 0, 0.5);
	padding: 2rem;
}


/******* HEADER SECTION ****************************************/

.header-container {
	position: fixed;
	width: 100%;
	padding-top: 50px;
	z-index: 12;
	overflow: visible;
	transition: background-color 1s ease, backdrop-filter 1s ease;
}

.nav-wrap {
	position: relative;      
	z-index: 10;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: flex-start;
}

.header-container.nav-gradient {
	background: transparent;
	transition: background 2.5s ease;
}

.header-container.nav-gradient::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	background: linear-gradient(    to bottom,   
		rgba(25,27,32,1) 0%,    
		rgba(25,27,32,0.9) 35%,    
		rgba(25,27,32,0.8) 70%,    
		rgba(25,27,32,0.6) 100% );
	z-index: -2;
	transition: background 1.5s ease;

}

.header-container.nav-gradient::after {
	content: "";
	position: fixed;
	top: 164px;
	left: 0;
	width: 100%;
	height: 150px;
	background: linear-gradient(
		to bottom,
		rgba(25,27,32,0.6) 0%,
		rgba(25,27,32,0.5) 35%,
		rgba(25,27,32,0.2) 70%,
		rgba(25,27,32,0) 100%
	);
	z-index: 5;
	transition: background 1.5s ease;

}

.nav-menu {
  list-style: none;
  margin: 0;
  padding-left: 0;
}

.nav-menu li {
  position: relative;
  display: flex;
  align-items: center;
  padding: 5px 0 9px 5px;
  overflow: visible;
}

.nav-menu li .menu-number {
  position: relative;
  margin-right: 10px;
  padding: 5px;
  font-size: 12px;
  line-height: 14px;
}
 
.nav-menu li .menu-number::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background-color: var(--almost-black);
  border-radius: 5px;
  z-index: 0;
  transition: width 0.6s cubic-bezier(0.2, 0.8, 0.4, 1);
}

/* TEXTO VISIBLE POR ENCIMA */
.nav-menu li .menu-number span {
  position: relative;
  z-index: 1;
  transition: color 0.3s ease;
}

/* LINK */
.nav-menu li a {
  text-decoration: none;
  text-transform: uppercase;
  font-size: 16px;
  line-height: 16px;
  padding-bottom: 2px;
  position: relative;
  z-index: 1;
  transition: color 0.3s ease, font-weight 0.3s ease, border-bottom 0.3s ease;
}

/* HOVER */
.nav-menu li:hover .menu-number::before {
  width: 100%;
}

.nav-menu li:hover .menu-number span {
  color: var(--yellow);
}

.nav-menu li:hover a {
  border-bottom: 3px solid var(--yellow);
}

.social-media-container {
	display: flex;
	flex-direction: row;
}

.social-media-container svg {
	width: 33px;
	height: 33px;
	padding: 10px;
	transition: border 1s ease, filter 1s ease,background 1s ease;
	border: 1px solid var(--almost-black);
	margin: 0 4px;
	border-radius: 5px;
	
	&:hover {
		background-color: var(--almost-black);  
		color: var(--yellow);
	}

}


.nav-logo {
	width: 60px;
	display: none;
	cursor: pointer;
}

.nav-logo path {
	fill: #fff; 
}


/* HEADER END */

/***** FIRST SECTION ****/

#background-parallax {
	background-image: url('images/logobeavillalba.svg');
	background-size: 32%;
	background-attachment: fixed;
	background-position: 45% 35%;
	background-repeat: no-repeat;
	height: 2000px;
}

#background-parallax .content {
	color: white;
  background-color: black;
  mix-blend-mode: difference;
}

#background-parallax .first-content {
	position: relative;
  top: 10%;
  background-color: white;
	color: black;
}

#background-parallax .content.first-content-inside {
	top: 10px;
  position: absolute;
  text-align: left;
}

.first-content-inside h2 {
	margin-left: 40px;
}

#background-parallax .second-content {
	width: 180px;
  font-size: 50px;
  height: 102px;
  top: 10%;
  position: relative;
}

#background-parallax .black-flag-left {
	position: absolute;
  width: 31%;
  height: 120px;
  left: 10px;
  bottom: 22%;    
  background-color: white;
  z-index: 69;
}

#background-parallax .black-flag-right {	
  position: absolute;
  width: 7%;
  height: 120px;
  right: 10px;
  bottom: 22%;				  
  background-color: white;
  z-index: 2;
}

.vertical-line {
	width: 1px;
	border-left: 1px solid #939393;
	position: fixed;
	z-index: 10;
}

.vertical-line.one {
	height: 74vh;
	left: 18%;
	top: 0%;
}

.vertical-line.two {
	height: 100vh;
	left: 30%;
	top: 0%;
	opacity: 0.5;
}

.vertical-line.three {
	height: 100vh;   
	left: 36%;
	top: 0%;
	opacity: 0.2;
}

.vertical-line.four {
	height: 90vh;    
	left: 92%;
	top: 14%;
	opacity: 0.2;
}

.horizontal-line {
	height: 1px;
	border-top: 1px solid #939393;
	position: fixed;
	z-index: 10;
}

.horizontal-line.one {
	width: 89%;    
	left: 30%;
	top: 68%;
	opacity: 0.2;
}

.project-menu-container {
	width: 100%;
	height: 200px;  
	z-index: 2;
	position: fixed;
	bottom: 0;
	margin-bottom: 60px;
}

.project-menu {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
}

.headerTitle {
	clip-path: inset(0% 100% 0% 0%);
}

.project-intro-text {  
	width: 35%;
	text-align: left;
}

.project-intro-text h1 {
	font-family: 'Univers LT Std 67 Bold Condensed';
	font-weight: 500;
	font-size: 28px;
	line-height: 29px;
	margin-bottom: 30px;
}

.project-intro-text .black-block {
	display: inline-block;
	height: 20px;
	width: 122px;
	background-color: var(--almost-black);
	margin-right: 10px;
}

.project-intro-text p {
	font-size: 20px;
	line-height: 24px;
	letter-spacing: 0.4px;
}

.project-intro-text p.intro-scroll {
	font-size: 16px;
	line-height: 20px;
}

.project-gallery {
	width: 50%;
	display: flex;
	justify-content: flex-end;
}  

.project-gallery div {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	margin: 0 5px;
}

.project-gallery span {
	font-size: 14px;
	line-height: 16px;
}


.project-gallery .project-image {
	border-radius: 8px;
	cursor: pointer;
	margin-top: 10px;
}

.project-cover-main {
	z-index: -1;
	opacity: 0;
	pointer-events: none;
	display: block;
	overflow: hidden;
	width: 100%;
	position: fixed;
	top: 0;
	clip-path: inset(0% 100% 0% 0%);
}

.project-cover-image {
	width: 100%;
	height: 100%;
}

.project-cover-main.display {
	clip-path: inset(0%);
	opacity: 1;
	z-index: 2;
	transform: scale(1);
	transition:
	clip-path 0.3s ease-out,
	opacity 0.4s ease,
	transform 0.4s ease;
}

.project-cover-main.hide {
	clip-path: inset(0% 100% 0% 0%);
	opacity: 0;
	transform: scale(0.98);
	transition:
	clip-path 0.3s ease-in,
	opacity 0.3s ease,
	transform 0.3s ease;
}

.project-gallery .project-image.grayscale {
	filter: grayscale(100%);
}

.project-gallery .project-image.image-hovered {
  filter: grayscale(0%);
	transition: filter 0.4s ease;
}

.project-number {
  position: relative;
  display: inline-block;
  padding: 2px 4px;
  font-size: 14px;
  line-height: 16px;
  transition: color 0.3s ease;
}

/* Fondo negro animado desde la izquierda */
.project-number::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0%;
  background-color: var(--almost-black);
  z-index: 0;
  transition: width 0.6s cubic-bezier(0.65, 0, 0.35, 1); 
  border-radius: 3px;
}

/* Número encima del fondo */
.project-number span {
  position: relative;
  z-index: 1;
  transition: color 0.3s ease;
}

/* Clase que activás desde JS */
.project-number.active::before {
  width: 100%;
}

.project-number.active span {
  color: var(--yellow);
  padding: 0 2px;
}


/***** ABOUT SECTION ****/

#about-section {
	background-color: transparent;
	position: relative;
	/*color: #fff0;*/
	z-index: 6;
}

#about-section .content {
	flex-flow: column;
	place-content: center;
	align-items: center;
	display: flex;
	width: 100%;
	margin-left: auto;
	margin-right: auto;
	position: relative;
	container-type: inline-size;
}

.sticky-about {
	position:-webkit-sticky; 
	position:sticky; 
	top:0;
	height: 100vh;
	background-color: #191b20;
	display: flex;
	text-align: center;
	font-size: 240px;
	font-weight: 700;
	flex-direction: column;
	justify-content: center;
}

.sticky-about-text {
	transition: opacity 1s ease-in-out;
	opacity: 1;
	color: white;
}

.sticky-about-text.fadeout{  
	opacity: 0.2;  
}

.about-image-container {
	justify-content: center;
	align-items: center;
	width: 100%;
	display: flex;
	position: relative;
}

.about-main-img {
	position: relative;
	align-items: flex-start;
}

.about-top-img {
	position:absolute;
	inset: -20% auto auto 20%;
	clip-path: inset(0% 100% 0% 0%);
}
.about-bottom-img {
	position: absolute;
	inset: auto 20% 10% auto;
	clip-path: inset(0% 100% 0% 0%);
}

#about-data-container {
	padding: 180px 0  80px 0;
	display: flex;
	flex-flow: column;
	color: white;
	z-index: 6;
}

#about-data-container .item-data {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	padding: 20px 0;  
}


.item-line {
	border-bottom: 1px solid #fff;
	clip-path: inset(0% 100% 0% 0%);
}

.item-number {
	width: 8%;
	clip-path: inset(0% 0% 100% 0%);

} 

.item-title { 
	width: 52%;
	clip-path: inset(100% 0% 0% 0%);

}

.item-information {
	width: 35%;
	clip-path: inset(0% 0% 0% 100%);

}

.display-animation-1 {
	clip-path: inset(0%);
	transition: clip-path 1s;
}

.hide-animation-1 {
	clip-path: inset(0% 100% 0% 0%);
	transition: clip-path 1s;
}

.display-animation-2 {
	clip-path: inset(0%);
	transition: clip-path 2s;

}

.hide-animation-2 {
	clip-path: inset(0% 100% 0% 0%);
	transition: clip-path 2s;
}

.display-animation-3 {
	clip-path: inset(0%);
	transition: clip-path 3s;
}

.hide-animation-3 {
	clip-path: inset(0% 100% 0% 0%);
	transition: clip-path 3s;
}



/*** PROJECT FULL PAGE SECTION ****/

.parallax.project-fullpage {
	position: relative;
	height: 120vh;
	overflow: hidden;
	z-index: 11;
}

.background-image-blur {
	position: absolute;
	inset: 0;
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	background-attachment: fixed;
	filter: blur(10px);
	transform: scale(1.05);
	z-index: 1;
}

.project-content {
	position: relative;
	z-index: 2;
	display: flex;
	justify-content: space-between;
	align-items: stretch;
	width: 100%;
	height: 100%;
	padding: 0 5% 4rem 5%;           
	box-sizing: border-box;
}

.link-img-content {
	align-self: center;
	margin-left: 20%;
}

.image-content {	
	width: 640px;
	aspect-ratio: 1 / 1;
	background-position: center;
	background-size: contain;
	background-repeat: no-repeat;
	border-radius: 15px;
	box-shadow: 0 0 40px rgba(255, 255, 255, 0.3);
}

.text-content {
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	width: 310px;
	color: #fff; 
	text-align: left;
	margin-right: 5%;
}

.text-content span {
	display: block;
	margin-bottom: 30px;
	font-size: 16px;
	font-weight: 400;
}

.text-content h3 {
	margin-bottom: 90px;
	letter-spacing: 1px;
}

.text-content p {
	margin-bottom: 30px;
}

.text-content a {
	color: #fff;
	text-align: right;
	text-decoration: none;
	margin-top: 20px;
	align-self: flex-end;
	display: flex;
  align-items: center;
  gap: 10px;
}

.text-content a span {
	margin-bottom: 0;
}


.text-content a:hover .text-link {
	border-bottom: 3px solid var(--yellow);	
	transition: border 1s ease, filter 1s ease,background 1s ease;
}

.arrow-link {
  position: relative;       /* crea stacking context */
  display: inline-block;    /* tamaño ajustado al svg */
  overflow: hidden;         /* recorta el fondo animado */
}

.text-content .arrow-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background-color: var(--almost-black);
  border-radius: 5px;
  z-index: 0;
  transition: width 0.6s cubic-bezier(0.2, 0.8, 0.4, 1);
}


.text-content .arrow-link svg {
	position: relative;
  z-index: 1;
}

.text-content a:hover .arrow-link::before {
    width: 100%;
}


#project-fullpage-one .background-image-blur {	
	background-image: url('images/aromahora_wide_2.webp');
}
#project-fullpage-one .image-content {
	background-image: url('images/aromahora_centered_2.webp');	
}
#project-fullpage-two .background-image-blur {
	background-image: url('images/max_wide.webp');
}
#project-fullpage-two .image-content {
	background-image: url('images/max_centered.webp');
}
#project-fullpage-three .background-image-blur {
	background-image: url('images/buenos_bank_wide.webp');
}
#project-fullpage-three .image-content {
	background-image: url('images/buenos_bank_centered.webp');
}
#project-fullpage-four .background-image-blur {
	background-image: url('images/consorconecta_wide.webp');
}
#project-fullpage-four .image-content {
	background-image: url('images/consorconecta_centered.webp');
}
#project-fullpage-five .background-image-blur {
	background-image: url('images/editorial_1_wide.webp');
}
#project-fullpage-five .image-content {
	background-image: url('images/editorial_1_centered.webp');
}

/***** CONTACT SECTION ****/


#contact-section {
	background-color: #fff;
	position: relative;
	color: var(--almost-black);
	z-index: 6;
	height: 120vh;

}

#contact-section .content {
	flex-flow: column;
	place-content: center;
	align-items: center;
	display: flex;
	width: 100%;
	margin-left: auto;
	margin-right: auto;
	position: relative;
	container-type: inline-size;
	font-family: 'Univers LT Std 67 Bold Condensed';
	color: #919191;
	font-size: 32px;
	line-height: 100%;
	font-weight: 500;
	z-index: 6;	
}

.dorian-email {
	color: var(--almost-black);
	opacity: 0;
	transform: translateY(20px);
	transition: all 0.6s ease-out;
	clip-path: inset(100% 0 0 0);
}

.dorian-email.display-animation-2 {
	opacity: 1;
	transform: translateY(0);
	clip-path: inset(0 0 0 0);
}

.sticky-contact {
	position:-webkit-sticky; 
	position:sticky; 
	top:0;
	background-color: #fff;
	display: flex;
	text-align: center;
	font-size: 240px;
	font-weight: 700;
	flex-direction: column;
	justify-content: center;
	z-index: 2;    
}


.sticky-contact-text {
	transition: opacity 1s ease-in-out;
	opacity: 1;
	color: var(--almost-black);
}

.sticky-contact-text.fadeout{  
	opacity: 0.2;  
} 


footer {
	background-color: var(--almost-black);
	padding: 15px;
	color: #fff;
	z-index: 10;
}