body {
    margin: 0;
    font-family: "Turret Road", sans-serif;
    font-weight: 300;
    font-style: normal;
    background-color: rgb(214, 186, 235);
    overflow-x: hidden;
    width: 100%;
    position: relative;
    padding-top: 7.5rem;
}

/* ===== Header / Logo / Navigation (responsive) ===== */
header {
    background-color: rgb(72, 0, 122);
    backdrop-filter: blur(10px);
    width: 100%;
    min-height: 5.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10000;
    padding: 0 1.5rem;
    box-sizing: border-box;
}
.logo {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    font-size: 2.8rem;
    font-weight: bold;
}
#psyvionn {
    width: 3.4rem;
    height: 3.4rem;
    border-radius: 45%;
    flex-shrink: 0;
}
#name {
    margin: 0;
    font-size: 1.9rem;
    font-weight: 600;
    color: rgb(236, 208, 236);
    white-space: nowrap;
}
.navbar {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.navbar a {
    color: rgb(197, 150, 221);
    text-decoration: none;
    display: inline-block;
    margin: 0 0.6rem;
    padding: 0.3rem 0.1rem;
    position: relative;
    font-size: 1.05rem;
    font-weight: 400;
    white-space: nowrap;
}
.navbar a:hover,
.navbar a.active {
    color: white;
}
.navbar a::before {
    content: '';
    position: absolute;
    bottom: -0.15rem;
    left: 0;
    width: 0%;
    height: 0.12rem;
    background-color: white;
    transition: all 0.4s;
}
.navbar a:hover::before,
.navbar a.active::before {
    width: 100%;
}
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 1.7rem;
    height: 1.2rem;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 10001;
}
.hamburger span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: rgb(236, 208, 236);
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}
.hamburger.active span:nth-child(1) { transform: translateY(0.48rem) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-0.48rem) rotate(-45deg); }

@media (max-width: 900px) {
    .hamburger { display: flex; }
    .navbar {
        position: fixed;
        top: 5.5rem;
        left: 0;
        right: 0;
        width: 100%;
        background-color: rgb(72, 0, 122);
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease;
        box-sizing: border-box;
    }
    .navbar.open {
        max-height: 30rem;
        padding: 0.5rem 1.5rem 1.5rem;
        box-shadow: 0 0.5rem 1rem rgba(0,0,0,0.25);
    }
    .navbar a {
        width: 100%;
        margin: 0;
        padding: 0.85rem 0;
        border-bottom: 1px solid rgba(255,255,255,0.12);
        font-size: 1.1rem;
    }
    .navbar a::before { display: none; }
}
@media (max-width: 400px) {
    header { padding: 0 1rem; }
    #psyvionn { width: 2.4rem; height: 2.4rem; }
    #name { font-size: 1.3rem; }
    .logo { gap: 0.4rem; }
}
/* ===== End Header ===== */

h1{
   color: rgb(72, 0, 122);
   font-size: 2.3rem;
   line-height: 2rem;
  margin: 2rem 0;
   margin-left: 1rem;
   font-family: "Glass Antiqua", cursive;
  font-weight: 400;
  font-style: normal;
}
p{
  color: rgb(40, 0, 70);
   letter-spacing: 0.06rem;
   font-size: 1.2rem; 
   line-height: 1.5;
   font-family: "IBM Plex Sans Condensed", sans-serif;
  font-weight: 400;
  font-style: italic;
  margin-left: 1rem;
}
.para{
    width: 80%;
}
h3{
    margin-left: 1rem;
    font-size: 1.5rem;
    color: rgb(182, 130, 219);
}
li{
    color: rgb(40, 0, 70);
   letter-spacing: 0.06rem;
   font-size: 1.2rem; 
   line-height: 1.5;
   font-family: "IBM Plex Sans Condensed", sans-serif;
  font-weight: 400;
  font-style: italic;
  margin-left: 1rem;
  width: 80%;
}
.line{
    width: 100%;
    height: 2px;
    background-color: rgb(40, 0, 70);
    color: rgb(40, 0, 70);
    margin: 0 1rem;
    margin-top: 3rem;
    margin-right: 1rem;
    box-sizing: border-box;
}
.llink{
    position: relative;
    left: 0.5rem;
    color: rgb(72, 0, 122);
}
.llink:hover{
    color: white;
}
.hello{
    color: rgb(40, 0, 70);
   letter-spacing: 0.06rem;
   font-size: 1.2rem; 
   line-height: 1.5rem;
   font-family: "IBM Plex Sans Condensed", sans-serif;
  font-weight: 400;
  font-style: italic;
  margin-left: 1rem;
  display: block;
}
.contactform{
    box-sizing: border-box;
    width: 100%;
}

/* ===== Mobile responsiveness for page content ===== */
@media (max-width: 600px) {
    body{ padding-top: 5.5rem; }
    h1{ font-size: 1.7rem; line-height: 2.2rem; margin-left: 0.8rem; }
    h3{ font-size: 1.15rem; margin-left: 0.8rem; }
    p{ font-size: 1rem; margin-left: 0.8rem; }
    li{ font-size: 1rem; margin-left: 0.8rem; width: 92%; }
    .para{ width: 92%; }
    .hello{ font-size: 1rem; margin-left: 0.8rem; }
    .line{ margin-left: 0.8rem; }
    #last{ margin-left: 0.8rem; }
}
