@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@300;400;600;700&display=swap');

/* ======================================================
   Psychic Starla Stylesheet
   Clean Modern Version
   ====================================================== */

:root{
  --bg:#06030b;
  --bg2:#13001a;
  --panel:rgba(38,18,58,.55);
  --border:#5d2a8a;
  --gold:#ffd700;
  --purple:#c67cff;
  --purple2:#9d4edd;
  --text:#ece7f7;
  --muted:#c9bdd8;
  --max:1400px;
  --radius:18px;
}

*,
*::before,
*::after{box-sizing:border-box}

html{scroll-behavior:smooth}

body{
  margin:0;
  font-family:"Raleway",Arial,sans-serif;
  color:var(--text);
  background:
    radial-gradient(circle at top,#2b0b43 0%,#120019 40%,#06030b 100%);
  line-height:1.6;
  font-size:18px;
}

img{
  max-width:100%;
  height:auto;
  border:0;
  display:block;
}

a{
  color:#e8c6ff;
  text-decoration:none;
  transition:.25s;
}
a:hover{color:var(--gold)}

.wrapper{
  max-width:var(--max);
  margin:40px auto;
  padding:0 30px;
  display:flex;
  gap:60px;
  align-items:flex-start;
}

.profile-area{
  width:300px;
  flex-shrink:0;
  text-align:right;
}

.profile-area img{
  width:200px;
  margin-left:auto;
  border-radius:50%;
  border:3px solid rgba(255,255,255,.12);
  box-shadow:0 0 30px rgba(157,78,221,.4);
}

header{
  margin-top:18px;
}

header h1{
  color:#f0d8ff;
  font-size:2rem;
  margin:.25em 0;
}

header h2{
  color:var(--muted);
  font-size:1.3rem;
  font-weight:300;
  margin:0;
}

.social-bar{
  display:inline-flex;
  gap:14px;
  margin:18px 0;
}

.social-bar a{
  width:42px;
  height:42px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:50%;
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.12);
  color:#fff;
  font-size:20px;
}

.social-bar a:hover{
  background:var(--purple2);
  transform:translateY(-3px);
}

.content-wrapper{
  flex:1;
  padding-left:50px;
  border-left:1px solid #4d2177;
}

article{
  margin-bottom:40px;
}

h1,h2,h3,h4{
  color:var(--purple);
}

.services-section{
  max-width:900px;
  margin:50px auto;
  text-align:center;
}

.services-title{
  color:var(--gold);
  font-size:2.4rem;
  margin-bottom:35px;
}

.services-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(260px,1fr));
  gap:18px 40px;
}

.service-item{
  background:var(--panel);
  border:1px solid rgba(198,124,255,.2);
  border-radius:14px;
  padding:14px 18px;
  backdrop-filter:blur(8px);
}

.service-item::before{
  content:"✦ ";
  color:var(--gold);
}

.button{
  display:inline-block;
  padding:12px 26px;
  border-radius:999px;
  background:linear-gradient(135deg,var(--purple2),#6d28d9);
  color:#fff;
  font-weight:700;
}

footer{
  margin-top:60px;
  padding:30px 0;
  text-align:center;
  color:var(--muted);
  border-top:1px solid rgba(255,255,255,.08);
}

@media (max-width:1000px){

  .wrapper{
    flex-direction:column;
    gap:30px;
  }

  .profile-area{
    width:100%;
    text-align:center;
  }

  .profile-area img{
    margin:0 auto;
    width:140px;
  }

  header,
  header h1,
  header h2{
    text-align:center;
  }

  .social-bar{
    display:flex;
    justify-content:center;
    width:100%;
  }

  .content-wrapper{
    border-left:none;
    padding-left:0;
  }

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