/* style.css */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
  }
  
  body{
    background:#09090f;
    color:white;
    font-family:'Space Grotesk', sans-serif;
    overflow-x:hidden;
  }
  
  /* BACKGROUND */
  
  .bg-orb{
    position:fixed;
    border-radius:50%;
    filter:blur(120px);
    z-index:-1;
  }
  
  .orb-1{
    width:400px;
    height:400px;
    background:#7c3aed;
    top:-100px;
    left:-100px;
    opacity:.35;
  }
  
  .orb-2{
    width:350px;
    height:350px;
    background:#f5c76b;
    bottom:-100px;
    right:-100px;
    opacity:.15;
  }
  
  /* NAVBAR */
  
  .navbar{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:25px 8%;
    position:sticky;
    top:0;
    backdrop-filter:blur(20px);
    z-index:100;
  }
  
  .logo{
    font-family:'Cinzel', serif;
    font-size:1.2rem;
    letter-spacing:3px;
  }
  
  nav{
    display:flex;
    gap:30px;
  }
  
  nav a{
    text-decoration:none;
    color:white;
    transition:.3s;
  }
  
  nav a:hover{
    color:#c084fc;
  }
  
  /* HERO */
  
  .hero{
    min-height:100vh;
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:80px 8%;
    gap:80px;
  }
  
  .hero-text{
    max-width:550px;
  }
  
  .tag{
    color:#c084fc;
    margin-bottom:20px;
    letter-spacing:2px;
  }
  
  .hero h1{
    font-size:5rem;
    line-height:1;
    margin-bottom:25px;
  }
  
  .hero h1 span{
    color:#f5c76b;
  }
  
  .hero-description{
    color:#d6d6d6;
    line-height:1.7;
    margin-bottom:35px;
  }
  
  .hero-buttons{
    display:flex;
    gap:20px;
  }
  
  /* BUTTONS */
  
  .primary-btn,
  .secondary-btn{
    padding:15px 28px;
    border:none;
    border-radius:18px;
    cursor:pointer;
    font-weight:600;
    transition:.35s;
  }
  
  .primary-btn{
    background:linear-gradient(135deg,#7c3aed,#c084fc);
    color:white;
    box-shadow:0 0 30px rgba(168,85,247,.4);
  }
  
  .primary-btn:hover{
    transform:translateY(-4px);
  }
  
  .secondary-btn{
    background:rgba(255,255,255,.06);
    border:1px solid rgba(255,255,255,.12);
    color:white;
    backdrop-filter:blur(15px);
  }
  
  /* HERO CARDS */
  
  .hero-cards{
    position:relative;
    width:500px;
    height:500px;
  }
  
  .tilt-card{
    position:absolute;
    width:260px;
    height:320px;
    border-radius:28px;
    overflow:hidden;
    background:rgba(255,255,255,.05);
    border:1px solid rgba(255,255,255,.12);
    backdrop-filter:blur(20px);
    box-shadow:0 20px 50px rgba(0,0,0,.5);
    transition:.4s;
  }
  
  .tilt-card img{
    width:100%;
    height:100%;
    object-fit:cover;
  }
  
  .tilt-card:hover{
    transform:scale(1.05) rotate(0deg) !important;
  }
  
  .card-overlay{
    position:absolute;
    bottom:0;
    width:100%;
    padding:20px;
    background:linear-gradient(to top,rgba(0,0,0,.85),transparent);
  }
  
  .card-1{
    left:0;
    top:40px;
    transform:rotate(-8deg);
  }
  
  .card-2{
    right:20px;
    top:0;
    transform:rotate(7deg);
  }
  
  .card-3{
    left:120px;
    bottom:0;
    transform:rotate(-3deg);
  }
  
  /* SECTIONS */
  
  section{
    padding:120px 8%;
  }
  
  .section-title{
    text-align:center;
    margin-bottom:70px;
  }
  
  .section-title h2{
    font-size:3rem;
    margin-bottom:10px;
  }
  
  /* PORTFOLIO */
  
  .portfolio-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:40px;
  }
  
  .project-card{
    background:rgba(255,255,255,.05);
    border:1px solid rgba(255,255,255,.08);
    border-radius:30px;
    overflow:hidden;
    backdrop-filter:blur(20px);
    transition:.4s;
    transform:rotate(-2deg);
  }
  
  .project-card:nth-child(2){
    transform:rotate(2deg);
  }
  
  .project-card:nth-child(3){
    transform:rotate(-4deg);
  }
  
  .project-card:hover{
    transform:rotate(0deg) translateY(-10px);
  }
  
  .project-card img{
    width:100%;
    height:260px;
    object-fit:cover;
  }
  
  .project-content{
    padding:25px;
  }
  
  .project-content h3{
    margin-bottom:12px;
  }
  
  /* ABOUT */
  
  .about-container{
    display:grid;
    grid-template-columns:1fr 400px;
    gap:60px;
    align-items:center;
  }
  
  .about-text h2{
    font-size:3rem;
    margin-bottom:25px;
  }
  
  .about-text p{
    line-height:1.8;
    color:#d4d4d4;
  }
  
  .skills{
    display:flex;
    flex-wrap:wrap;
    gap:15px;
    margin-top:35px;
  }
  
  .skills span{
    padding:12px 20px;
    background:rgba(255,255,255,.06);
    border-radius:999px;
    border:1px solid rgba(255,255,255,.08);
  }
  
  .about-card{
    padding:40px;
    border-radius:30px;
    background:rgba(255,255,255,.05);
    border:1px solid rgba(255,255,255,.08);
    backdrop-filter:blur(20px);
    transform:rotate(4deg);
  }
  
  /* CONTACT */
  
  .contact-section{
    display:flex;
    justify-content:center;
  }
  
  .contact-box{
    width:100%;
    max-width:900px;
    text-align:center;
    padding:80px;
    border-radius:40px;
    background:rgba(255,255,255,.05);
    border:1px solid rgba(255,255,255,.08);
    backdrop-filter:blur(25px);
  }
  
  .contact-box h2{
    font-size:3rem;
    margin-bottom:20px;
  }
  
  .contact-box p{
    margin-bottom:40px;
    color:#d4d4d4;
  }
  
  /* RESPONSIVE */
  
  @media(max-width:1000px){
  
    .hero{
      flex-direction:column;
      text-align:center;
    }
  
    .hero-cards{
      width:100%;
      height:500px;
    }
  
    .about-container{
      grid-template-columns:1fr;
    }
  
  }
  
  @media(max-width:768px){
  
    .hero h1{
      font-size:3.5rem;
    }
  
    nav{
      display:none;
    }
  
  }