@charset "UTF-8";

@font-face {
  font-family: 'Roboto';
  src: url('fonts/roboto.woff2') format('woff2');
  font-weight: normal;
  font-style: normal;
}

:root{
    --size: clamp(260px, 40vw, 400px); 
    --radius: calc(var(--size) * 0.42);
    --icons: 8;
    --fade-dur: .6s;         /* durata fade-in */
    --stagger: .3s;          /* decalaj între iconițe */
  }


/* Body */
body {
	font-family: source-sans-pro;
	background-color: #FDFDFD;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
	font-style: normal;
	font-weight: 200;
	max-width: 1600px;
    margin: 0 auto;
}

header {
    background: linear-gradient(to bottom, rgba(255, 255, 255, 1) 0%, 
		rgba(255, 255, 255, 0.7) 78%, 
		rgba(255, 255, 255, 0.1) 100%); 
	padding-top: 10px;
	position: fixed;
	top: 0;
    left: 0;
    width: 100%;
    height: 50px;
	z-index: 1000; 
	display: flex;
	justify-content: center;
}

a {
  text-decoration: none;
}

a:hover {
  text-decoration: none; 
}

.nav_container {
	display: flex;
    justify-content: space-between;
    align-items: center;
    width: 90%;
	height: 30px;
}

.nav_button_container {
	display: flex;
    justify-content: space-between;
    align-items: center;
    width: 310px;
	height: 30px;
}

.nav_button {
	width: 70px;
	display: flex;
	flex-direction: row;
	justify-content: center;
}

.logo {
    display: flex;
}

.logo img {
    height: 32px;
	width: 54px;
    margin-right: 10px;
}

.company-name {
    font-size: 32px;
	font-family: "Bahnschrift", "Segoe UI", sans-serif;
    background: linear-gradient(to right, #FB4E6C, #A20E97);
    -webkit-background-clip: text;
    color: transparent;
    font-weight: bold;
	align-items: center;
}

.nav_button {	
	background: linear-gradient(to right,#FB4E6C, #A20E97); 
	border: 3px solid #7F0B77;
    border-radius: 12px;
	padding: 6px 10px;
	cursor: pointer;
	color: aliceblue;
	transition: background-color 0.3s, color 0.3s;
	font-family: "Bahnschrift", "Segoe UI", sans-serif;
	font-size: 18px;
	font-weight: bold; 
}

.nav_button:hover {
  transform: scale(1.1);
  color: black;
}


.section_header {
	overflow: visible;
	padding-top: 70px;
	background: transparent;
	height: 400px;
	width: 90%;
	margin: 2vw auto 0 auto;
	padding-inline: 30px;
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: space-between;
}

.header_container {
	background: transparent;
	height: 100%;
	width: 55%;
	display: flex;
	flex-direction: column;
    justify-content: center;
    align-items:flex-start;
}

.header_text {
	display: flex;
	background: linear-gradient(60deg, #FB4E6C, #A20E97);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;   
    text-align: left;
	width: 100%;
	font-family: 'Roboto', sans-serif;
	font-size: clamp(1.8rem, 4vw, 2.8rem);
	font-weight: bold;
}

.header_paragraph {
	background: linear-gradient(60deg,#A20E97,#6E2CA9);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
	text-align: match-parent;
	width: 95%;
	font-family: 'Roboto', sans-serif;
	font-size: clamp(1rem, 1.8vw, 1.4rem);
	font-weight: bold;
	line-height: 1.75rem;
}

.scene {
	width: var(--size);
    height: var(--size);
	position:relative;    
    display:grid; 
	place-items:center;	
	background: transparent;
    overflow: visible;
}

.scene_logo{
    position:absolute; 
	inset:0; 
	display:grid; 
	place-items:center;
    z-index:1;
	pointer-events: none;
  }

.icon{
	position:absolute;
	width: clamp(55px, 10vw, 90px); /* iconițe scalabile */ 
	aspect-ratio:1/1; 
	background:#fff2; 
	display:grid; 
	place-items:center;
	font-size:24px;
	transform: translate(-50%,-50%) scale(.8);
	opacity:0;
	overflow:visible; /* ca tooltip-ul să iasă în afară */
	/* doar fade-in la început; pulsarea va fi adăugată după ce toate au apărut */
	animation: fadein var(--fade-dur) ease-out forwards;
	animation-delay: var(--delay, 0s);
	z-index:2;
}

/* Tooltip ascuns inițial */
.tooltip {
  cursor: default;   /* sau "pointer" dacă vrei să arate că e clickable */
  user-select: none; /* opțional, previne selectarea textului din tooltip */
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%); /* centrează în mijloc */
  opacity: 0;
  pointer-events: none;
  padding: 8px 12px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
   /* text gradient */
  font-family: 'Roboto', sans-serif;
  font-size: clamp(10px, 1.8vw, 18px);
  font-weight: bold;
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent; /* ascundem culoarea normală */
  -webkit-text-fill-color: transparent;
  background-image: linear-gradient(60deg,#A20E97,#6E2CA9);
  white-space: nowrap;
  transition: opacity .3s ease;
  box-shadow: 0 4px 12px rgba(0,0,0,0.25);
  z-index: 5000;
}


/* Apare la hover */
.icon.pulse:hover .tooltip {
  opacity: 1;
  pointer-events: auto;
}

@keyframes fadein {
    to { opacity:1; transform: translate(-50%,-50%) scale(1); }
  }

@keyframes pulse {
	0%, 100% { transform: translate(-50%,-50%) scale(1); }
	50%      { transform: translate(-50%,-50%) scale(1.1); }
}

/* stare finală explicită după fadein (ca să nu depindem de fill-mode dacă schimbăm animația) */
.icon.done {
	opacity:1;
	transform: translate(-50%,-50%) scale(1);
}
  /* când toate au terminat fadein, adăugăm doar pulsarea (sincron) */
.icon.pulse {
	animation: pulse 2s ease-in-out infinite;
}	

/* index și întârzieri pentru fiecare icon (secuențial, în sensul acelor de ceasornic) */
.icon:nth-of-type(2){ --i:0; --delay: calc(var(--i)*var(--stagger)); }
.icon:nth-of-type(3){ --i:1; --delay: calc(var(--i)*var(--stagger)); }
.icon:nth-of-type(4){ --i:2; --delay: calc(var(--i)*var(--stagger)); }
.icon:nth-of-type(5){ --i:3; --delay: calc(var(--i)*var(--stagger)); }
.icon:nth-of-type(6){ --i:4; --delay: calc(var(--i)*var(--stagger)); }
.icon:nth-of-type(7){ --i:5; --delay: calc(var(--i)*var(--stagger)); }
.icon:nth-of-type(8){ --i:6; --delay: calc(var(--i)*var(--stagger)); }
.icon:nth-of-type(9){ --i:7; --delay: calc(var(--i)*var(--stagger)); }

/* poziționare polară (start la ora 12 = -90deg) */
.icon{
	--theta: calc(-90deg + var(--i) * (360deg / var(--icons)));
	left: calc(50% + cos(var(--theta)) * var(--radius));
	top:  calc(50% + sin(var(--theta)) * var(--radius));
}

.icon_img {
	width: 100%;
	height: 100%;
}

.mid_img {
	width: 40%;
	height: auto;
}

.img_all_dev {	
	
	width: 100%;
	height: 100%;	
}

.img_digit {	
	width: 60vw;
    height: calc(50vw * 0.25);
}

.section_middle {
	margin-top:30px;
	  background: linear-gradient(
					180deg,
					#0A0214 0%,
					#1A0B24 85%,
					#FDFDFD 100%
				  );
	height: 360px;
	display: flex;
	flex-direction: column;
	align-items: center;
    justify-content: space-between;
}


.header_middle {
	width: 90%;
	height: 20%;
	background: linear-gradient(45deg,#FA2A4D, #D713C9);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;   
    text-align: center;
	font-family: 'Roboto', sans-serif;
	font-size: clamp(1.7rem, 4vw, 3.1rem);
	font-weight: bold;
	
}

.text_middle {	
	width: 85%;
	height: 80%;
	background: linear-gradient(180deg,#C96DFF,#A20E97);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;   
    text-align: center;
	font-family: 'Roboto', sans-serif;
	font-size: clamp(1rem, 2vw, 1.56rem);
	font-weight: bold;
}

.section_gif {
  height: 460px;  
  display: flex;
  justify-content: center; /* centrează pe orizontală */
  align-items: center;     /* centrează pe verticală */
         /* ocupă tot ecranul (dacă vrei fullscreen) */
}

.video_wrap video {
  width: 100%;
  max-height: 450px;
}

.section_img_holder_1 {
	margin-top:10px;
	width: 100%;
	height: 500px;
	position: relative;
    display: inline-block;
}

.img_1 {
	width: 100%;
	height: 100%;
}

.glass-box {
  position: absolute;
  top: 20px;
  left: 20px;
  padding: 20px;
  border-radius: 16px;
  width: 40%;
  height: 420px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(14px) saturate(180%);
  -webkit-backdrop-filter: blur(10px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff; /* text alb pentru contrast */
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.header_over {
	height: 30%;
	background: linear-gradient(60deg,#FFFFFF,#A20E97);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;   
	font-family: 'Roboto', sans-serif;
	font-size: clamp(1rem, 4vw, 3.1rem);
	font-weight: bold;
	text-align: left;
}

.paragraph_over{
	height: 70%;
	background: linear-gradient(90deg, #FFFFFF, #E6E6E6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;   
	font-family: 'Roboto', sans-serif;
	font-size: clamp(0.9rem, 1.7vw, 1.56rem);
	font-weight: bold;
	text-align: left;
}

.footer_container {
	width: 100%;
	height: 50px;
	background: linear-gradient(45deg, #FB4E6C, #A20E97);
	border-top: 5px solid white;
    padding: 10px 0;
	display: flex;
	flex-direction: row;
	justify-content: center;	
	z-index: 100px;
}

.footer_div {
	width: 90%;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	
}

.company_div {
	width: 50%;
	font-family: 'Roboto', sans-serif;
	font-size: clamp(1rem, 1.4vw, 1.56rem);
	font-weight: bold;
	padding-right: 30px;
	color: white;
	display: flex;
	align-items: center;
}

.social_med {
	
	width: 50%;
	display:flex;
	flex-direction: row;
	justify-content: flex-end;
	align-content: center;
	
}

.social_med_text {
	
	color: white;
	width: 40%;
	display:flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-end;
	font-family: 'Roboto', sans-serif;
	font-size: clamp(1.25rem, 1.8vw, 1.56rem);
	font-weight: bold;
	padding-right: 30px;	
}

.social_med_img {
	
	width: 15%;
	display:flex;
	flex-direction: column;
	justify-content: center;
	align-content: center;
	filter: brightness(0) invert(1);
	transition: transform 0.3s ease;
	
}

.social_med_img:hover {
  transform: scale(1.05);
  filter: brightness(0) invert(0.1);
}


@media screen and (max-width: 700px) {
    .container {
        flex-direction: column;
        text-align: center;
		align-items: center;
    }
	
	.section_img_holder_1{
		height: 400px;
	}
	
	.glass-box {
	    padding: 5px;
		height: 350px;
		width: 45%;
	}
	
	.footer_container {

		height: 100px;
	}
	
	.footer_div {
		display:flex;
		flex-direction:column-reverse;
		justify-content: center;		
	}
	
	.company_div {
		width: 100%;
		flex-direction: column;
		align-content: center;
	}
	
	.social_med {
		width: 80%;
		flex-direction: row;
		align-items: center;
	}
	
	.social_med_text {
		width: 20%;
	}
	.section_middle {	
		height: 260px;
	}
	
	.middle_container {
		height: 260px;
	}
	
	.card_gradient_1 {
		height: 260px;
	}
	
	.card_gradient_2 {
		height: 260px;
	}
	
	.point_img {	
		width: 500px;
		height: 150px;
	}
	

}

@media screen and (max-width: 500px) {
	
	header {
		height: 110px;
		padding-top:30px;
	} 
	
	.nav_container {
		display: flex;
    	flex-direction: column;
		justify-content: center;
		align-items: center;
		padding: 0px 0px 0px 0px;	
	}
	
	.image_container {
		height: 100%;
		width: 50%;
	}
	
	.nav_button_container {
		padding-top: 10px;
	}	

	.nav_button {
		padding: 6px 10px;
	}
	
	.section_header {
		margin-top: 90px;
		flex-direction: column-reverse;
		height: 600px;
		justify-content: space-between;
	}
	
	.header_container{
		width: inherit;
		height: 50%;
	}	
	
	.header_paragraph {
	    line-height: 1.2rem;
	}
	
	.header_text {
		text-align: center;
	}
	
	.section_gif {
	     height: 300px;  
	}
	
	.section_img_holder_1{
	    margin-top:0px;
		height: 350px;
	}

	.glass-box {
		height: 280px;
	}


	.footer_container {
		height: 100px;
	}
	
	.footer_div {
		display:flex;
		flex-direction:column-reverse;
		justify-content: center;		
	}
	
	.company_div {
		width: 100%;
		flex-direction: column;
		align-content: center;
	}
	
	.social_med {
		width: 87%;
		flex-direction: row;
		align-items: center;
	}
	
	.social_med_text {
		width: 30%;
	}
	
	.section_middle {	
		height: 350px;
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: space-around;
	}
	
	.middle_container {
		height: 220px;
	}
	
	.point_img {	
		width: 310px;
		height: 100px;
		padding-top: 40px;
	}

}











