* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --accent: #ff4b4b;
  --light: #f5f5f5;
  --gray: #cccccc;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background: linear-gradient(to bottom, #080763 0%, #010336 80%);
  color: var(--light);
}


.wrapper {
  width: 100%;
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}


header {
  width: 100%;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: fixed;
  top: 0;
  left: 0;
  padding: 0 5%;
  background: #010336;
  backdrop-filter: blur(6px);
  z-index: 10;
  margin-bottom: 20px;
}

header .logo {
  font-size: 2rem;
  font-weight: 600;
  font-family: 'Playfair Display', serif;
}

header nav {
  display: flex;
  gap: 14px;
}

header nav a {
  text-decoration: none;
  color: var(--light);
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

header nav a:hover {
  color: var(--accent);
}

header span {
  position: absolute;
  width: 100%;
  height: 1px;
  background: var(--light);
  bottom: 0;
  left: 0;
}


.hero {
  height: 80dvh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: left;
  padding: 0 5%;
  position: relative;
}
.haro {
display: none;
}

.content {
  max-width: 800px;
  animation: fadeInUp 1.5s ease forwards;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.about {
  max-width: 800px;
  animation: fadeInUp 1.5s ease forwards;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.skills {
  max-width: 800px;
  animation: fadeInUp 1.5s ease forwards;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.projects {
  max-width: 800px;
  animation: fadeInUp 1.5s ease forwards;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.contact {
  max-width: 800px;
  animation: fadeInUp 1.5s ease forwards;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.greeting {
  font-size: 1rem;
  color: var(--gray);
  margin-bottom: 10px;
 
}

.name {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.intro {
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.desc {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--gray);
}

.desc a {
  color: var(--accent);
  text-decoration: none;
  position: relative;
}

.desc a::after {
  content: '';
  position: absolute;
  width: 0%;
  height: 2px;
  left: 0;
  bottom: -3px;
  background: var(--accent);
  transition: width 0.3s ease;
}

.desc a:hover::after {
  width: 100%;
}


.about {
  height: 100vh;
  max-width: 900px;
  margin: 100px auto 0;
  text-align: center;
  padding: 0 20px;
}


.about h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  font-family: 'Playfair Display', serif;
}

.about p {
  color: var(--gray);
  line-height: 1.8;
  margin-bottom: 10px;
}


.skills {
  height: 100vh;
  margin-top: 100px;
  text-align: center;
  padding: 0 5%;
}

.skills h2 {
  font-size: 2rem;
  margin-bottom: 25px;
  font-family: 'Playfair Display', serif;
}

.skills-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}

.skills-grid div {
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--accent);
  padding: 30px 40px;
  border-radius: 10px;
  transition: transform 0.3s ease;
}

.skills-grid div:hover {
  transform: scale(1.1);
}


.projects {
  height: 100vh;
  margin-top: 120px;
  text-align: center;
  padding: 0 10%;
}

.projects h2 {
  font-size: 2rem;
  margin-bottom: 30px;
  font-family: 'Playfair Display', serif;
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.project-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 25px;
  border-radius: 15px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.project-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(255,75,75,0.2);
}

.project-card a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 500;
}


.contact {
  height: 100vh;
  margin-top: 120px;
  text-align: center;
  padding-bottom: 80px;
}

.contact h2 {
  font-size: 2rem;
  font-family: 'Playfair Display', serif;
  margin-bottom: 15px;
}

.contact .btn {
  display: inline-block;
  margin-top: 15px;
  padding: 10px 25px;
  background: var(--accent);
  color: white;
  border-radius: 30px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.contact .btn:hover {
  background: #ff7777;
}


footer {
  width: 100%;
  padding: 15px 5%;
  font-size: 0.85rem;
  position: relative;
  color: var(--gray);
}

footer span {
  width: 100%;
  height: 1px;
  background: var(--light);
  display: block;
  margin-bottom: 10px;
}

footer .last {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

footer .email {
  text-decoration: none;
  color: var(--gray);
}

footer .email:hover {
  color: var(--accent);
}
/*social icons
.social-icons {
  margin-top: px;
}*/

.social-icons a {
  margin: 0 10px;
  font-size: 50px;
  color: white;
 
}

.social-links {
  text-align: center;
  padding: 20px 0;
  
}

.social-links a {
  display: inline-block;
  margin: -25px 8px;
  font-size: 31px;
  width: 44px;
  height: 44px;
  line-height: 44px;
  border-radius: 50%;
  text-decoration: none;
  transition: background-color 0.3s, color 0.3s;
}

/* Brand colors */
.social-links a.fa-facebook-f   { background-color: #010336; color: white; }
.social-links a.fa-whatsapp     { background-color: #010336; color: white; }
.social-links a.fa-telegram     { background-color: #010336; color: white; }
.social-links a.fa-instagram    { background-color: #010336; color: white; }
.social-links a:hover {
  filter: brightness(1.1);
}



/* Large screens (default desktop view) – your current styles remain as is */
@media (min-width: 768px) and  (max-width: 879px) {
  
  .social-links {
    position: fixed;
    left: 35px;
    top: 63%;
    display: flex;
    flex-direction: column;
     gap: 0;
    padding: 0;
    /*transform: translateY(-50%); */
  }

  .social-links a {
    margin: -3px;
   /*  width: 40px;
    height: 40px; */
   line-height: 0;
    text-align: center;
    font-size: 20px;
    
  }

  .social-links a.fa-facebook-f   { background: none; color: white; }
.social-links a.fa-whatsapp     { background: none; color: white; }
.social-links a.fa-telegram     { background: none; color: white; }
.social-links a.fa-instagram    { background: none; color: white; }

  /* Hover effects */
  .social-links a:hover{
    transform: translateY(-4px);      
    color: rgb(42, 188, 237); 
    cursor: pointer;             
  }
  .skills{
    margin: 0 auto;
    margin-top: 20%;
  }
.contact{
    margin: 0 auto;
    margin-top: 20%;
  }
  .haro {
display: none;
}

}

  /* Large screens (default desktop view) – your current styles remain as is */
@media (min-width: 880px) and  (max-width: 1005px) {
  
  .social-links {
    position: fixed;
    left: 38px;
    top: 63%;
    display: flex;
    flex-direction: column;
     gap: 0;
    padding: 0;
    /*transform: translateY(-50%); */
  }

  .social-links a {
    margin: -3px;
   /*  width: 40px;
    height: 40px; */
   line-height: 0;
    text-align: center;
    font-size: 20px;
    
  }

  .social-links a.fa-facebook-f   { background: none; color: white; }
.social-links a.fa-whatsapp     { background: none; color: white; }
.social-links a.fa-telegram     { background: none; color: white; }
.social-links a.fa-instagram    { background: none; color: white; }

  /* Hover effects */
  .social-links a:hover{
    transform: translateY(-4px);      
    color: rgb(42, 188, 237); 
     cursor: pointer; 
  }
  .content{
  margin-right: auto;
  }
  .skills{
    margin: 0 auto;
    margin-top: 10%;
  }
  .projects{
    margin: 0 auto;
    margin-top: 10%;
  }
  .contact{
    margin: 0 auto;
    margin-top: 18%;
  }
  .haro {
display: none;
}

}

   /* Large screens (default desktop view) – your current styles remain as is */
@media (min-width: 1006px) and  (max-width: 1433px) {

  .cursor-light {
  position: fixed;
  width: 800px;       /* size of the light */
  height: 800px;
  border-radius: 50%;
  pointer-events: none;
  background: radial-gradient(circle, rgba(1, 3, 54, 0.2) 5%, rgba(1, 3, 54, 0.3) 20%, rgba(1, 3, 54, 0.4) 20%, rgba(1, 3, 54, 0.4) 30%, rgba(1, 3, 54, 0.1) 40% );
  mix-blend-mode: screen;   /* makes it blend with your page */
  transform: translate(-50%, -50%);
  filter: blur(15);
  z-index: 9999;
}
  
  .social-links {
    position: fixed;
    left: 60px;
    top: 63%;
    display: flex;
    flex-direction: column;
     gap: 0;
    padding: 0;
    /*transform: translateY(-50%); */
  }

  .social-links a {
    margin: -3px;
   /*  width: 40px;
    height: 40px; */
   line-height: 0;
    text-align: center;
    font-size: 20px;
    
  }

  .social-links a.fa-facebook-f   { background: none; color: white; }
.social-links a.fa-whatsapp     { background: none; color: white; }
.social-links a.fa-telegram     { background: none; color: white; }
.social-links a.fa-instagram    { background: none; color: white; }

  /* Hover effects */
  .social-links a:hover{
    transform: translateY(-4px);      
    color: rgb(42, 188, 237); 
     cursor: pointer; 
  }
  .cantent{
  margin-right: auto;
  }
.skills{
    margin: 0 auto;
    margin-top: 10%;
  }
  .projects{
    margin: 0 auto;
    margin-top: 7%;
  }
  .contact{
    margin: 0 auto;
    margin-top: 18%;
  }
  .cantent {
  max-width: 800px;
  animation: fadeInUp 1.5s ease forwards;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.haro {
  height: 80dvh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: left;
  padding: 0 5%;
  position: relative;
}
.hero {
  display: none;
}
  .twowork {
display: flex;
gap: 4%;
margin-top: 12px;
}  

    .procu, .pror {
    position: relative;
    display: inline-flex; 
    cursor: pointer; 
  }
     .procu {
padding-right: 300px;
  }
  .pror {
padding-left: 300px;
  } 

  /* Main link */
     .main-link {
     display: inline-block; 
    color: #cccccc;
    text-decoration: none;
    transition: color 0.3s ease;
    position: relative;
    z-index: 2; 
     white-space: nowrap;
    
  }  

  /* Extra link hidden by default */
   .extra-link {
    position: absolute;
    top: 0; 
    opacity: 0;
    pointer-events: none; 
    transition: all 0.5s ease;
    font-weight: 500;
    font-size: 1rem;
    color: white;
    text-decoration: none;
    white-space: nowrap;
    z-index: 2;
  }  

  /* Position extra-link */
   .procu .extra-link {
    left: 120px;       
    transform: translateX(-80px);
  
  }  

    .pror .extra-link {
    right: 120px;      
    transform: translateX(80px);
  }  
   .procu .main-link{
    text-decoration: underline;
    text-decoration-thickness: 3px;
    text-underline-offset: 4px;
   
    
  } 

  /* Show extra-link on hover of the block */
    .procu:hover .extra-link,
  .pror:hover .extra-link {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(0);
    
  }  

  /* Optional: color change on hover */
    .procu:hover .main-link,
  .pror:hover .main-link {
    color: white;
  } 
  .pror:hover .main-link{
    font-family: cursive;
  }
  .main-link:hover{
    text-decoration: underline;
    text-decoration-thickness: 3px;
    text-underline-offset: 4px;
    
  } 
   .extra-link:hover{
    text-decoration: underline;
    text-decoration-thickness: 3px;
  } 
   


}
