*{
	margin:0;
	padding:0;
	box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

@font-face{
	font-family: "calculative";
	src:url("fuentes/Calculative.ttf");
}

@font-face{
	font-family: "enough";
	src:url("fuentes/eEnougha.ttf");
}

@font-face{
	font-family: "modern";
	src:url("fuentes/modern\ M.ttf");
}

@font-face{
	font-family: "monserrat";
	src:url("fuentes/Montserrat-VariableFont_wght.ttf");
}


/* Keyframe que permite hacer desvanecimiento. Lo llamas en cualquier lado usando aparecer*/
@keyframes aparecer {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/*Keyframe que permite deslizamientos, puedo aplicarlo a imagenes*/
@keyframes deslizarDesdeDerecha {
  0% {
    transform: translateX(100%);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

.imagen-animada {
  /*width: 300px;  o el tamaño que necesites */
  left: 800px;
  animation: deslizarDesdeDerecha 2s ease-out forwards;
  opacity: 0; /* invisible al principio */
}


/*Linea de tiempo*/
.timeline {
  position: relative;
  padding-left: 15px;
}
.timeline-item {
  margin-bottom: 2rem;
  align-items: flex-start;
}


/*Personalizando etiqueta*/
.tech-tag {
  display: inline-block;
  background-color: #ffffff;
  color: #000000;
  border: 1px solid #707070;
  border-radius: 10px;
  font-weight: 500;
  font-size: 0.85rem;
  margin: 2px 2px 0 0;
  padding: 1px 6px 2px 6px;
}

/* Efecto al pasar el mouse */
.tech-tag:hover {
  background-color: #ebebeb;    /* color más claro */
  transform: scale(1.05);       /* se agranda un poco */
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);  /* leve sombra */
}

.card:hover {
  background-color: #ebebeb;    /* color más claro */
  transform: scale(1.025);       /* se agranda un poco */
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);  /* leve sombra */
}

#experiencia img:hover {
  /*background-color: #ebebeb; */   /* color más claro */
  transform: scale(1.05);       /* se agranda un poco */
  /*box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2); */ /* leve sombra */
}

/* Lo usaré para ocultar cosas en la parte de proyectos */
.oculto {
  display: none;
}

/* Para la parte de proyectos, para solucionar el tema de las imagenes*/
.card-img-top {
  object-fit: cover;
  height: 200px; /*  el valor que prefieras */
  width: 100%;
}

/* Personalizando imagen del intro/hero según la hora del visitante*/
/* Imagen más oscura (noche) */
.bg-night {
  filter: brightness(0.2) saturate(0.8);
}

/* Imagen con tinte cálido (amanecer) */
.bg-morning {
  filter: brightness(1.1) sepia(0.2) hue-rotate(-10deg);
}

/* Imagen normal (tarde) */
.bg-day {
  filter: none;
}

/*[data-aos] {
  scroll-margin-top: 130px;
}*/

#skills{
  scroll-margin-top: 190px;
}

#experiencia{
  scroll-margin-top: 50px;
}

#educacion{
  scroll-margin-top: 150px;
}

#proyectos{
  scroll-margin-top: 150px;
}

body {
  font-family: 'Inter', sans-serif;
  color: #ccd6f6; /* opcional, para que combine con fondo oscuro */
  background-color: #0a192f; /* si querés estilo tipo portfolio tech */
  line-height: 1.6;
}


/*section{
	background-color: white;
	padding: 50px;
}*/
section h1{
	color: rgb(255, 255, 255);
  text-shadow:
    -1px -1px 0 rgb(53, 27, 56),   /* arriba izquierda */
     1px -1px 0 rgb(53, 27, 56),   /* arriba derecha */
    -1px  1px 0 rgb(53, 27, 56),   /* abajo izquierda */
     1px  1px 0 rgb(53, 27, 56);   /* abajo derecha */
	animation: aparecer 1.5s ease-out;
}

section h2{
  font-family: 'Inconsolata', monospace;
  font-weight: 900;
  font-variation-settings:"wdth" 57.7;
  font-style: normal;
	color:#292c31;
	/*animation: aparecer 1.5s ease-out;*/
}
section h3{
  /*font-family: 'Cabin', sans-serif;*/
	font-size: 1em;
	/*font-weight: lighter;*/
	/*color: gray;
	animation: aparecer 1.5s ease-out;*/
}

section h4{
	font-size: 1em;
	font-weight: lighter;
  color: rgb(63, 59, 59);
	/*text-align: center;
	animation: aparecer 1.5s ease-out;*/
}

aside h4{
	font-size: 1.3em;
	font-weight: bold;
  color: rgb(36, 34, 34);
}

#galeria h5{
  /*font-family: 'Cabin', sans-serif;*/
	font-size: 1.1em;
	/*font-weight: lighter;*/
	/*color: gray;
	animation: aparecer 1.5s ease-out;*/
}

#intro{
  position: relative;
  background-image: url("img/sunset.jpg");
  background-size: cover;
  background-position: center;
  min-height: 90vh; /* alto mínimo de pantalla completa */
  display: flex; 
  align-items: center;         /*centra vertical */
  justify-content: center;    /* centra horizontal */
  background-repeat: no-repeat;
  color: white; /* si la imagen es oscura */
}


#intro::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

#intro .content {
  position: relative;
  z-index: 2;
}

/* Degradé para amanecer */
#intro.morning::before {
  background: linear-gradient(to bottom, rgba(255, 140, 120, 0.25), rgba(255, 215, 180, 0.2));
}

/* Degradé para anochecer */
#intro.evening::before {
  background: linear-gradient(to bottom, rgba(63, 81, 181, 0.5), rgba(0, 0, 0, 0.3));
}

/* Degradé para noche */
#intro.night::before {
  background: linear-gradient(to bottom, rgba(6, 5, 19, 0.7), rgba(8, 1, 71, 0.3));
}



/*Carousel hace que las imagenes se desplacen*/
.carousel-inner {
  border-radius: 12px;
  overflow: hidden;
}

.carousel-control-prev,
.carousel-control-next {
  width: 5%;
}

.carousel-caption h5,
.carousel-caption p {
  background-color: rgba(0, 0, 0, 0.5);
  display: inline-block;
  padding: 4px 8px;
  border-radius: 5px;
}
/*Fin Carousel*/

#experiencia img{
  animation: aparecer 1.5s ease-out;
}
