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

html{
  scroll-behavior:smooth;
}

body{
  font-family:'Poppins',sans-serif;
  background:#050505;
  color:#fff;
  overflow-x:hidden;
}

/* BACKGROUND LUXE */

body::before{
  content:"";
  position:fixed;
  width:600px;
  height:600px;
  background:rgba(212,175,55,.08);
  filter:blur(140px);
  top:-200px;
  right:-200px;
  z-index:-1;
}

body::after{
  content:"";
  position:fixed;
  width:500px;
  height:500px;
  background:rgba(212,175,55,.05);
  filter:blur(150px);
  bottom:-200px;
  left:-200px;
  z-index:-1;
}

/* NAVBAR */

.header{
  position:fixed;
  top:0;
  width:100%;
  z-index:999;
  backdrop-filter:blur(20px);
  background:rgba(0,0,0,.35);
  border-bottom:1px solid rgba(255,255,255,.06);
}

.navbar{
  max-width:1200px;
  margin:auto;
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:20px 25px;
}

.logo{
  font-size:1.6rem;
  font-weight:800;
}

.logo span{
  color:#d4af37;
}

.nav-links{
  display:flex;
  gap:35px;
  list-style:none;
}

.nav-links a{
  text-decoration:none;
  color:#fff;
  transition:.3s;
}

.nav-links a:hover{
  color:#d4af37;
}

.btn-nav{
  text-decoration:none;
  background:#d4af37;
  color:#000;
  padding:12px 22px;
  border-radius:40px;
  font-weight:700;
  transition:.3s;
}

.btn-nav:hover{
  transform:translateY(-3px);
}

/* HERO */

.hero{
  min-height:100vh;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:50px;
  padding:140px 10%;
}

.hero-left{
  flex:1;
}

.tag{
  color:#d4af37;
  letter-spacing:2px;
  margin-bottom:20px;
}

.hero h1{
  font-size:4.5rem;
  line-height:1.1;
  margin-bottom:20px;
}

.hero h1 span{
  color:#d4af37;
}

.hero-text{
  color:#bbb;
  line-height:1.9;
  font-size:1.05rem;
  max-width:620px;
}

.hero-buttons{
  display:flex;
  gap:20px;
  margin-top:35px;
}

.gold-btn{
  text-decoration:none;
  background:#d4af37;
  color:#000;
  padding:16px 34px;
  border-radius:50px;
  font-weight:700;
  transition:.4s;
}

.gold-btn:hover{
  transform:translateY(-5px);
}

.border-btn{
  text-decoration:none;
  border:1px solid #d4af37;
  color:#fff;
  padding:16px 34px;
  border-radius:50px;
  transition:.4s;
}

.border-btn:hover{
  background:#d4af37;
  color:#000;
}

.socials{
  margin-top:40px;
  display:flex;
  gap:20px;
}

.socials a{
  color:#d4af37;
  font-size:1.5rem;
  transition:.3s;
}

.socials a:hover{
  transform:translateY(-6px);
}

/* IMAGE HERO */

.hero-right{
  flex:1;
  position:relative;
  display:flex;
  justify-content:center;
}

.image-glow{
  position:absolute;
  width:400px;
  height:400px;
  background:#d4af37;
  border-radius:50%;
  filter:blur(150px);
  opacity:.12;
}

.hero-image{
  width:420px;
  height:520px;
  object-fit:cover;
  border-radius:35px;
  border:2px solid rgba(212,175,55,.25);
  box-shadow:
    0 0 40px rgba(212,175,55,.15);
}

/* SECTIONS */

section{
  padding:120px 10%;
}

.section-title{
  text-align:center;
  font-size:2.7rem;
  font-weight:800;
  margin-bottom:70px;
  color:#d4af37;
}

/* ABOUT */

.about-card{
  background:rgba(255,255,255,.03);
  border:1px solid rgba(255,255,255,.06);
  backdrop-filter:blur(30px);
  border-radius:30px;
  padding:50px;
}

.about-card h2{
  margin-bottom:25px;
  font-size:2rem;
}

.about-card p{
  color:#bbb;
  line-height:2;
}

/* SERVICES */

.cards{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:30px;
}

.card{
  background:rgba(255,255,255,.03);
  border:1px solid rgba(255,255,255,.05);
  border-radius:30px;
  padding:45px 30px;
  transition:.4s;
}

.card:hover{
  transform:translateY(-12px);
  border-color:#d4af37;
}

.card i{
  color:#d4af37;
  font-size:2rem;
  margin-bottom:20px;
}

.card h3{
  margin-bottom:12px;
}

.card p{
  color:#aaa;
  line-height:1.8;
}

/* SKILLS */

.skill{
  margin-bottom:35px;
}

.skill span{
  display:block;
  margin-bottom:10px;
}

.bar{
  height:12px;
  background:#1b1b1b;
  border-radius:20px;
}

.bar div{
  height:100%;
  background:#d4af37;
  border-radius:20px;
}

/* CONTACT */

.contact-box{
  text-align:center;
  background:rgba(255,255,255,.03);
  border-radius:35px;
  padding:70px;
  border:1px solid rgba(255,255,255,.06);
}

.contact-box h2{
  font-size:2rem;
  margin-bottom:20px;
}

.contact-box p{
  color:#bbb;
  margin-bottom:35px;
}

.contact-box a{
  display:inline-block;
  margin:10px;
}

/* FOOTER */

footer{
  text-align:center;
  padding:30px;
  color:#888;
  border-top:1px solid rgba(255,255,255,.06);
}

/* RESPONSIVE */

@media(max-width:980px){

.hero{
  flex-direction:column;
  text-align:center;
  padding-top:170px;
}

.hero-buttons{
  justify-content:center;
}

.socials{
  justify-content:center;
}

.hero h1{
  font-size:3rem;
}

.hero-image{
  width:100%;
  max-width:350px;
  height:450px;
}

.cards{
  grid-template-columns:1fr;
}

.nav-links{
  display:none;
}

.contact-box{
  padding:45px 25px;
}

.about-card{
  padding:30px;
}

section{
  padding:90px 8%;
}

}
/* ANIMATIONS */

.hidden{
  opacity:0;
  transform:translateY(70px);
  transition:all 1s ease;
}

.show{
  opacity:1;
  transform:translateY(0);
}

.card{
  transition:
  transform .4s ease,
  border-color .4s ease,
  box-shadow .4s ease;
}

.card:hover{
  box-shadow:
  0 20px 45px rgba(212,175,55,.12);
}
