/* General Setting */
*{
	margin: 0px;
	padding:0px;
	box-sizing: border-box;
}

nav{
	display: flex;
	justify-content: space-around;
	align-items: center;
	min-height: 8vh;
	background-color:#DDDDDD;
	font-family: "Roboto", sans-serif;
	z-index: 1;
}



.title-logo{
	vertical-align: middle;
	margin-right: 20px;
}

.title-text{
	color:#1B1B1B;
	text-transform: uppercase;
	letter-spacing: 5px;
	font-size: 14px;
	z-index: 1;
}

.title-text a{
	text-decoration: none;
	color:#1B1B1B;
}

.title-text a:hover{
	text-decoration: none;
	color:#B38D8D;
}

.nav-links{
	display: flex;
	justify-content: space-around;
	width: 30%;
	z-index: 1;
}

.nav-links li{
	list-style: none;
	z-index: 1;
}

.nav-links a{
	color: #1B1B1B;
	text-decoration: none;
	font-weight: bold;
	font-size: 14px;
	z-index: 1;
}

.nav-links a:hover{
	color:#B38D8D;
} 

.nav-links a:active{
	text-decoration: underline;
}

.burger{
	display: none;
	cursor: pointer;
	z-index: 1;
	}

.burger div{
	width: 25px;
	height: 2px;
	background-color: #1B1B1B;
	margin: 5px;
	transition: all 0.3s ease;
	}

#forest {
  	position: fixed;
 	right: 0;
  	bottom: 0;
  	min-width: 100%; 
  	min-height: 100%;
	filter:grayscale(70%);
 	z-index: -1; 
}

.text1{
	margin-top: 100px;
	text-align: center; 
	font-family: "Roboto", sans-serif;
	font-weight: 100;
	font-style: bold;
	font-size: 50px;
	color: #DDDDDD;
	animation: fadeColor 3s infinite;
	
}

.text2{
	margin-top: 100px;
	text-align: center; 
	font-family: "Roboto", sans-serif;
	font-weight: 100;
	font-style: bold;
	font-size: 50px;
	color: #DDDDDD;
	animation: fadeColor 3s infinite;
	
}

.text3{
	margin-top: 100px;
	text-align: center; 
	font-family: "Roboto", sans-serif;
	font-weight: 100;
	font-style: bold;
	font-size: 50px;
	color: #DDDDDD;
	animation: fadeColor 3s infinite;
	
}

.text4{
	margin-top: 100px;
	text-align: center; 
	font-family: "Roboto", sans-serif;
	font-weight: 100;
	font-style: bold;
	font-size: 50px;
	color: #DDDDDD;
	animation: fadeColor 3s infinite;
	
}

/* Experience TimeLine Settings */
body {
	font-family: "Roboto", sans-serif;
}
.container {
	margin-left: auto;
	margin-right: auto;
	margin-top: 50px;
  	max-width: 800px;
}
.header h1 {
  	text-align: center;
 	margin-bottom: 50px;
}
.timeline {
  	position: relative;
  	list-style: none;
  	padding: 25px;
	border-radius: 12px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.timeline::before {
  	content: "";
  	position: absolute;
  	left: 50%;
  	top: 0;
  	bottom: 0;
  	width: 2px;
  	background: #ccc;
  	transform: translateX(-50%);
}
.item {
  	display: grid;
  	grid-template-columns: 1fr 1fr;
  	gap: 20px;
  	margin: 20px 0;
  	position: relative;
}
.item::before {
  	content: "";
  	position: absolute;
  	top: 15px;
  	left: calc(50% - 6px);
  	width: 12px;
  	height: 12px;
  	background: #B38D8D;
  	border-radius: 50%;
}
.left {
  	text-align: right;
  	padding-right: 20px;
}
.right {
  	text-align: left;
  	padding-left: 20px;
	padding-top: 10px;
}
.meta .year {
  	font-weight: bold;
  	color: #B38D8D;
}
.meta .company {
  	font-size: 0.95rem;
}
.meta .location {
  	font-size: 0.9rem;
  	color: #666;
}
.role {
  	margin: 0;
  	font-weight: bold;
}
.desc {
 	margin: 5px 0 0;
  	font-size: 0.9rem;
  	color: #333;
}

.p_img{
	position: flex;
	float: left;
	padding-top: 25px;
	padding-left: 25px;
}

.p_dsc{
	position: flex;
	text-align: justify;
	border-radius: 12px;
	padding: 25px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Contact Settings */

.contact-card {
	background: white;
	padding: 20px 30px;
	border-radius: 12px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
	max-width: 800px;
	width: 100%;
	text-align: center;
    }
.contact-item {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      margin: 10px 0;
      font-size: 1rem;
    }
.socials {
      display: flex;
      justify-content: center;
      gap: 20px;
      margin-top: 20px;
      font-size: 1.4rem;
    }
.socials a {
      color: #444;
      transition: color 0.3s;
    }
.socials a:hover {
      color: #0077b6; /* highlight on hover */
    }

/* Responsive Settings */

@media screen and (max-width: 1024px){
	body{
		overflow-x: hidden;
	}

	.nav-links{
		width: 60%;
		}
	}

@media screen and (max-width: 768px){
	body{
		overflow-x: hidden;
	}
	
/*Nav Box Configuration */
	.nav-links{
		position: absolute;
		right: 0px;
		height: 92vh;
		top: 8vh;
		background-color: #676767;
		display: flex;
		flex-direction: column;
		align-items: center;
		width: 40%;
		transform: translateX(100%);
		transition: transform 0.5s ease-in;
	}
	.nav-links li{
		opacity: 0;
	}
	
	.nav-links a:hover{
		color: #B38D8D;
	}
	
	.burger{
		display: block;
	}
}

.nav-active{
	transform: translateX(0%)
	}

.p_img{
	margin-left: 50px;
}

.p_dsc{
	margin-left: 50px;
	margin-right: 40px;
	margin-bottom: 50px;
	text-align:start;
}

/* Animation Settings*/

@keyframes navLinkFade{
	from{
		opacity: 0;
		transform: translateX(50px);
	}
	to{
		opacity: 1;
		transform: translateX(0px);
	}
}

.cross .line1{
	transform: rotate(-45deg) translate(-5px,6px);
}

.cross .line2{
	opacity: 0;
}

.cross .line3{
	transform: rotate(45deg) translate(-5px,-6px);
}

@keyframes fadeColor {
     0% {
        color: #000000;
        opacity: 0.7;
        transform: translateY(10px);
      }
      50% {
        color: #DDDDDD;
        opacity: 1;
        transform: translateY(0);
      }
      100% {
        color: #000000;
        opacity: 0.7;
        transform: translateY(10px);
      }
}

/* Delay each word so it animates top → bottom */
.text1 { animation-delay: 0s; }
.text2 { animation-delay: 0.75s; }
.text3 { animation-delay: 1.5s; }
.text4 { animation-delay: 2.25s; }