:root {
  --bg-main: #FAFAFA;
  --bg-dark: #111111;

  --text-main: #111111;
  --text-light: #FFFFFF;

  --accent: #D6B98C;

  --gray-main: #555555;
  --gray-light: #888888;
  --gray-border: #E5E5E5;
}
body {
  margin: 0;
  font-family: 'Manrope', sans-serif;
  background-color: var(--bg-main);
}
.intro {
 min-height: 100vh;
  background:
    radial-gradient(circle at 50% 30%, #f5f5f5 0%, #ececec 45%, #e4e4e4 100%);
  color: var(--text-main);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
  
}
#typing {
  font-size: clamp(3.5rem, 8vw, 6.5rem);
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 0.95;
  margin: 0;
  min-height: 1.1em;
}
#typing::after {
  content: "|";
  animation: blink 0.8s steps(1) 6.5 forwards;
  margin-left: 4px;
  color: var(--accent);

}
@media (max-width: 600px){
  #typing{
    text-align: left;
    font-size: 4.2rem;
    font-weight: 700;
  }
}
.dot{

  animation: colorChange 0.5s ease forwards;
  animation-delay: 2s;

}
.subtitle {
  margin-top: 18px;
  font-size: clamp(1.4rem, 3.2vw, 3rem);
  font-weight: 700;
  line-height: 1.45;
  opacity: 0;
  transform: translateY(10px);
  animation: fadeUp 1.2s ease forwards;
  animation-delay: 2.2s;
  background: linear-gradient(90deg, #222 0%, #666 45%, #999 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (max-width: 600px){
  .subtitle{
    text-align: left;
    font-size: 1.8rem;
    padding-top: 0.5em;
  }
}
.enter-btn {
  margin-top: 50px;
  color: var(--text-main);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(10px);
  animation: fadeUp 0.8s ease forwards;
  animation-delay: 2.6s;
  position: relative;
  padding-bottom: 6px;
  

}
.enter-btn::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: var(--text-main);
  transform: scaleX(0.6);
  transform-origin: center;
  transition: transform 0.3s ease;
  opacity: 0.7;
  
}
.enter-btn:hover::after {
  transform: scaleX(1);
}
@media (max-width: 600px){
  .enter-btn{
    scale: 1.2;
    margin-top: 10em;
    padding-top: 1em;
    
  }

  .enter-btn::after{
    opacity: 0.5;
  }
}
.arrow{
  color: var(--accent);
  display: inline-block;
  margin-left: 6px;
  margin-right: 6px;
  opacity: 0;
  transform: translateY(10px);
  animation: fadeUp 1.2s ease forwards,
  scrolMove 1.6s ease-in-out infinite;
  animation-delay: 2.6s;
}
@keyframes blink {
  0%,
  49% {
    opacity: 1;
  }
  50%,
  100% {
    opacity: 0;
  }
 
}
@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes scrolMove {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(4px);
  }

  100% {
    transform: translateY(0px);
  }

}
@keyframes colorChange {
  0% {
    color: #111111;
  }

 

  100% {
    color: #D6B98C;
  }

}
.light {
  background: var(--bg-main);
  color: var(--text-main);
}
.dark {
  background: var(--bg-dark);
  color: var(--text-light);
}
.button {
  border: 1px solid var(--accent);
  color: var(--accent);
  padding: 10px 20px;
  display: inline-block;
  margin-top: 20px;
}
.button:hover {
  background: var(--accent);
  color: #111;
}
.cords{
  position: absolute;
  top:  90vh;
  margin: 0;
  padding: 0;
  letter-spacing: 0.1em;
  color: var(--gray-main);
}
@media (max-width: 600px){
  .cords{
    scale: 0.9;
    top: 94vh; 
  }
}
.main {
  min-height: 100vh;
  background: #FAFAFA;
  color: var(--text-main);
  display: flex; 
  justify-content: center;            
  overflow: hidden;        
  position: relative;

}
.main .date{
  font-size: 200px;
  position: absolute;
  right: 0;
  top: -10%;
  transform: rotate(-90deg);
  transform-origin: bottom right;
  color: var(--gray-main);
  opacity: 0.1;
  margin: 0;
  padding: 0;
}
@media (max-width: 800px){
  .main .date{
    font-size: 120px;
    top: 25%;
  }
}
@media (max-width: 600px){
  .main .date{
    font-size: 100px;
    bottom: 35%;
    right: -50%;
    opacity: 0.02;

  }
}
@media (max-width: 500px){
  .main .date{
      right: -30%;
      bottom: 40%;

  }
}
.main h2{
  font-size: clamp(70px, 12vw, 420px);
  font-weight: 900;
  line-height: 0.7em;
  color: var(--text-main);
  position: absolute;
  transform: translate(0%, 0%);
  right: 25%;
  top: 25%;
  margin: 0;
 
}
@media (max-width: 1400px){
  .main h2{
    font-size: clamp(120px, 10vw, 200px);
    top: 10%;
  }
}
@media (max-width: 850px){
  .main h2{
    font-size: clamp(120px, 10vw, 200px);
    right: 10%;
    top: 30%;
  }
}
@media (max-height: 850px){
  .main h2{
    top: 5%;
  }
}
@media (max-width: 600px){
  .main h2{
    font-size: clamp(120px, 10vw, 200px);
    left: 1%;
    top: 1%;
    z-index: 1;
  }
}
.backgroundname{   
  width: 100%;
  height: 100vh;       
  font-size: 780px;
  font-weight: 900px;
  letter-spacing: 100px;
  color: rgba(0, 0, 0, 0.008);
  pointer-events: none;
  user-select: none;
  z-index: 0; 
  line-height: 600px;
  text-align:start;
}
.myPhoto{
  position: absolute;
  bottom: 0;
  right: 0;
  width: 30vh;
  aspect-ratio: 3/4;
  filter: grayscale(1);
  background-image: url(/images/DSC7069-crushimage.JPG);
  background-position: center;
  background-size: cover;
  border: none;
}
@media
  (max-width: 1400px){
    .myPhoto{
      width: 25vw;
    }
}
@media
  (max-width: 600px){
    .myPhoto{
      width: 250px;
      top: 9%;
      right: 0;
      height: 300px;
      z-index: 0;
      
    }
}
@media
  (max-width: 450px){
    .myPhoto{
      width: 150px;
      top: 15%;
      right: 0;
      height: 200px;
      z-index: 0;
      
    }
}
.myPhoto::before{
  content: "[001]";
  color: var(--gray-main);
  font-size: larger;
  font-weight: 700;
  position: absolute;
  transform: translateY(-50px);
}
@media (max-width: 600px){
  .myPhoto::before{
    opacity: 0;
  }
}
.about{
  position: absolute; 
  bottom: 20%;
  right: 30%;
  width: 30%;
  height: 200px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  text-align: start;
  font-size: large;
  letter-spacing: 0.2em;

}
@media (max-width: 1400px){
  .about{
    right: 35%;
    width: 40%;
    gap: 40px;
    font-size: medium;
    letter-spacing: 0.2em;
    bottom: 35%;
    grid-template-columns: 1fr;
    max-width: 300px;

  }
}
@media (max-width: 1250px){
  .about{
   bottom: 45%;
  }
}
@media (max-width: 850px){
  .about{
    width: 50%;
    gap: 5px;
    bottom: 30%;
  }
}
@media (max-width: 600px){
  .about{
    grid-template-columns: 1fr 1fr;
    max-width: 500px;
    width: 90%;
    gap: 20px;
    height: 60px;
    top: 45%;
    left: 10%;
  }
}
@media (max-width: 450px) and (min-height: 800px){
  .about{
    top: 47%;
    font-size: 12px;
    letter-spacing: 0.1em;
    left: 5%;
  }
}
@media (max-width: 450px) and (max-height: 800px){
  .about{
    top: 49%;
    font-size: 10px;
    letter-spacing: 0.1em;
    left: 5%;
  }
}
.main .skills{
  position: absolute;
  font-size: clamp(10px, 3vw, 40px);
  font-weight: 900;
  letter-spacing: -2px;
  text-shadow: 1px 0 0 #111;
  left: 10%;
  top: 5%;
}
@media (max-width: 1500px){
  .main .skills{
    left: 5%;
    top: 10%;
    letter-spacing: 2px;
    scale: 0.8;
  }
}

@media (max-width: 600px) {
  .main .skills{
    left: 25%;
    top: 65%;
    scale: 0.9;
  }
}
@media (max-width: 400px) {
  .main .skills{
    scale: 0.9;
  }
}
.main .skills ul li{
  list-style:square;
  color: var(--text-main);
  margin-left: 30px;
  font-weight: 200;
  letter-spacing: 1px;
  text-shadow: none;
}
#skills{
  text-shadow: none;
  font-weight: 100;
  font-size: medium;
  margin-left: 10px;
  letter-spacing: normal;
}
.timeline {
  color: #111111;
  position: absolute;
  bottom: 25%;
  left: 20%;
  max-width: 250px;
  margin-right: 200px;
  scale: 1.4;
}
  @media (max-width: 1500px){
    .timeline{
      left: 15%;
      bottom: 15%;
      scale: 0.8;
    }
}
  @media (max-width: 1200px){
    .timeline{
      left: 10%;
      bottom: 25%;
      max-width: 150px;;
      scale: 0.8;
    }
}
  @media (max-width: 800px){
    .timeline{
      bottom: 47%;
      scale: 0.6;
    }
}
 @media (max-width: 600px){
  .timeline{
    scale: 0.5;
    top: 20%;
  }
}
 @media (max-width: 450px) and (min-height: 800px){
  .timeline{
    scale: 0.7;
    top: 25%;
    left: 15%;
  }
}
 @media (max-width: 450px) and (max-height: 800px){
  .timeline{
    scale: 0.5;
    top: 30%;
    left: -5%;
    width: 300px;
    max-width: 300px;
  }
}
 @media (max-width: 400px) and (max-height: 900px){
  .timeline{
    scale: 0.5;
    top: 30%;
    left: 0%;
    width: 250px;
    max-width: 300px;
  }
}
.timeline h2{
    position: absolute;
    left: -40px;
    top: -60px;
    margin: 0;
    font-size: 18px;

}
.timeline img{
    position: absolute;
    width: 30px;
    height: 30px;
    left: -80px;
    top: -70px;
}
.timeline-item {
  position: relative;
  margin-bottom: 2em;
}
.timeline-item::before {
  content: "";
  position: absolute;
  width: 2px;
  height: 100%;
  background: var(--gray-main);
}
.timeline-content::before{
    content: "2024";
    position: absolute;
    left: -1em;
    top: -1.6em;
    font-weight: 500;

}
.timeline-item:nth-child(3)  .timeline-content::before{
    content: "now";
}
.timeline-item:last-child .timeline-content::before {
    content: "2020";
}
.timeline-content h3 {
  margin: 0;
  margin-left: 1em;
  font-size: 16px;
}
.timeline-content p{
    margin: 0px 0px 0px 1.3em;
    font-size: smaller;
    color: var(--gray-light);
}
.main .oriental{
  position: absolute;
  font-size: 30px;
  letter-spacing: 5px;
  font-weight: 100;
  color: var(--text-main);
  bottom: 0;
  left: 0;
  margin-bottom: 50px;
  margin-left: 50px;
  color: var(--accent);
  opacity: 0.7;
}
@media (max-width: 1400px){
  .main .oriental{
    font-size: 25px;
    margin-left: 20px;
    margin-bottom: 20px;
  }
}
@media (max-width: 800px){
  .main .oriental{
    font-size: 20px;
    margin-left: 20px;
    margin-bottom: 20px;
  }
}
@media (max-height: 500px){
  .main .oriental{
    font-size: 10px;
  }
}
@media (max-width: 450px){
  .main .oriental{
    font-size: 10px;
    margin-left: 5px;
    margin-bottom: 5px;
  }
}
.other{
  background-color: var(--bg-main);
  min-height: 80vh;
  color: var(--text-main);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin: 0;
  padding: 0;
}
.gridContainer{
        width: 80%;
        display: grid;
        grid-template-columns: repeat(auto-fit, 170px);
        grid-auto-rows: 180px;
        justify-content: center;
        gap: 2em;
}
@media (max-width: 900px) {
  .gridContainer {
        grid-template-columns: repeat(auto-fit, 130px);
        grid-auto-rows: 130px;
    }
}
@media (max-width: 600px) {
    .gridContainer {
        grid-template-columns: repeat(auto-fit, 70px);
        grid-auto-rows: 70px;
        }
}
.griditem{
        padding: 2em;
        box-shadow: 0px 0px 10px #e9e9e9;
        text-align: center;
        border-radius: 10%;
        display: flex;
        align-items: center;
        justify-content: center;
        filter: grayscale(100%);
        transition: 0.3s;
        position:  relative;
        overflow: hidden;
        
}
@media (max-width: 600px) {
    .griditem svg{
       scale: 8;   }
}
.overlay{
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;

        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;

        background-color: var(--bg-dark);
        color: var(--text-light);

        opacity: 0;
        transition: 0.3s;
        border: 1px solid var(--accent);
        border-radius: 10%;
}
.overlay p {
        margin: 0px;
        pointer-events: none;
}
@media (max-width: 600px) {
        .overlay p {
            font-size: 10px;
        }
}
.overlay p:last-child {
        color: var(--accent);
        letter-spacing: 3px;
}
.griditem:hover {
        filter: grayscale(50%);
        transform: scale(1.05);
        
}
.griditem:hover  .overlay{

        opacity: 0.75;
        

}
  .stars{
        opacity: 0;
        transform: translateY(10px);
        transition: 0.3s ease-out;
        transition-delay: 0.15s;
}
@media (max-width: 600px) {
        .stars{
            scale: 0.7;
        }
}
.griditem:hover  .stars{

        opacity: 1;
        transform: translateY(0px);
        

}
.other .skills{

        font-size: clamp(20px, 5vw, 50px);
        font-weight: 900;
        letter-spacing: 1px;
        text-shadow: 2px 0 0 #111, -1px 0 0 #111;
        margin-bottom: 40px;
        margin-top: 50px;
}
.carousel {
  width: 100%;
  overflow: hidden;
  margin-bottom: 50px;
  margin-top: 50px;
  filter: grayscale(0.15);
}
@media (max-width: 600px) {
  .carousel {
    margin-top: 30px;
  }
}
.track {
  display: flex;
  gap: 1em;
  width: max-content;
  will-change: transform;
}
.card {
    width: 230px;
    height: auto;
  flex-shrink: 0;
  object-fit: cover;
  display: block;
  filter: grayscale(0.3);
  margin-top: 50px;
}
@media (max-width: 600px) {
  .card {
    width: 190px;
    margin-top: 30px;
  }
}
.contact{
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  padding: 40px 20px; 
  gap: 20px; 
  overflow: hidden;
}
.contact .getIn{
  font-size: clamp(30px, 5vw, 100px);

}
@media (max-width: 600px) {
  .contact .getIn{
    font-size: 40px;
    margin-left: 10px;
    top: 0%;
  }
}
.contact .email{
  font-size: clamp(12px, 2vw, 30px);
  color: var(--gray-main);
  font-weight: 900;
  margin: 0; 
}
@media (max-width: 600px) {
  .contact {
    padding: 20px 10px;
    gap: 15px;
  }

  .contact .email {
    font-size: clamp(10px, 4vw, 20px);
  }
}
.socials{
  display: flex;
  flex-direction: column;
  filter: grayscale(1);
  gap: 50px;
}
@media (max-width: 600px) {
  .socials{
    gap: 10px;
    scale: 0.7;
  }
}
.socials img{
  width: 60px;
  height: 60px;

}
.socials a{
  display: flex;
  align-items: center;
  gap: 10px;

  color: var(--gray-light);
  text-decoration: none;
  font-size: 24px;
  font-weight: 100;

}
footer{
  background-color: var(--bg-dark);
  color: var(--gray-light);
  text-align: center;
  width: 100%;
  height: 5vh;
  overflow: hidden;
}
@media (max-width: 600px) {
  footer{
    font-size: 10px;
  }
}
.social-link{
  width: 100%;
  display: flex;
  align-items: flex-end;
  flex-direction: column;
  justify-content: flex-end;
}



.projects article {
  margin: clamp(40px, 6vw, 100px) clamp(24px, 6vw, 100px);
}

.projects div h2 {
  margin: 0 clamp(24px, 6vw, 100px) 100 0;
  font-size: clamp(64px, 11vw, 200px);
  line-height: 0.9;
}

.projects div h5 {
  color: var(--gray-main);
  margin: 0 clamp(24px, 10vw, 200px) 0 0;
}

.projectsnumbers {
  margin-left: clamp(-30px, -2vw, -10px);
  color: var(--gray-light);
}

.projects h3 {
  font-size: clamp(42px, 6vw, 96px);
  margin-top: 0;
}

.projects article p {
  margin-left: clamp(0px, 18vw, 300px);
  max-width: 900px;
  font-size: clamp(18px, 2vw, 32px);
  font-weight: 100;
  line-height: 1.35;
}

.projects .stack {
  font-size: clamp(16px, 1.5vw, 24px);
  text-align: end;
  margin-right: clamp(24px, 5vw, 80px);
}

article a {
  text-decoration: none;
  color: var(--accent);
  filter: grayscale(0.2);
  font-size: clamp(14px, 1vw, 18px);
}

@media (max-width: 700px) {
 

  .projects div h2 {
    margin-right: 0;
    font-size: clamp(56px, 18vw, 100px);
    margin-top: 100px;
  }

  .projects div h5 {
    margin-right: 0;
  }

  .projects article {
    margin: 50px 24px 80px;
  }

  .projects article p {
    margin-left: 0;
    font-size: 18px;
  }

  .projects .stack {
    text-align: left;
    margin-right: 0;
  }

  .projects h3 {
    font-size: clamp(36px, 12vw, 64px);
  }
}

