:root{
--bg:#000000;
--panel:#0a0a0a;

--accent:#b388ff;
--accent2:#7c4dff;

--text:#ffffff;
--muted:#cfcfe6;

--border:rgba(179,136,255,0.25);
}

/* =========================
   BASE
   ========================= */

*{
margin:0;
padding:0;
box-sizing:border-box;
}

body{
background:var(--bg);
color:var(--text);
font-family:'Cinzel', serif;
overflow-x:hidden;
}

/* =========================
   BACKGROUND
   ========================= */

.background-pattern{
position:fixed;
inset:0;
pointer-events:none;

background:
radial-gradient(circle at 20% 20%, rgba(179,136,255,0.12), transparent 40%),
radial-gradient(circle at 80% 70%, rgba(124,77,255,0.10), transparent 40%),
repeating-linear-gradient(
45deg,
transparent,
transparent 40px,
rgba(179,136,255,0.03) 40px,
rgba(179,136,255,0.03) 80px
);
}

/* =========================
   LAYOUT
   ========================= */

.container{
max-width:1400px;
margin:auto;
padding:30px;
position:relative;
z-index:2;
}

/* =========================
   HEADER
   ========================= */

header{
text-align:center;
margin-bottom:50px;
}

.logo{
width:90px;
height:90px;
object-fit:contain;
margin-bottom:15px;
filter:drop-shadow(0 0 12px rgba(179,136,255,.4));
}

h1{
font-size:4rem;
color:var(--accent);
letter-spacing:4px;
text-shadow:0 0 18px rgba(179,136,255,.35);
}

.subtitle{
font-style:italic;
color:var(--muted);
}

/* =========================
   GRID
   ========================= */

.grid{
display:grid;
grid-template-columns:1fr 2fr 1fr;
gap:25px;
}

/* =========================
   WINDOWS (rounded gothic)
   ========================= */

.window{
background:var(--panel);
border:1px solid var(--border);
border-radius:18px;
overflow:hidden;

box-shadow:0 0 18px rgba(179,136,255,.12);

transition:.25s;
}

.window:hover{
transform:translateY(-3px);
box-shadow:0 0 28px rgba(179,136,255,.25);
border-color:var(--accent);
}

.titlebar{
background:#050505;
padding:10px;
border-bottom:1px solid var(--border);

color:var(--accent);
letter-spacing:1px;
}

.content{
padding:20px;
}

/* =========================
   IMAGES
   ========================= */

.banner{
width:100%;
height:280px;
object-fit:cover;
border-radius:14px;
border:1px solid var(--border);
}

.avatar{
width:140px;
height:140px;
border-radius:50%;
display:block;
margin:auto;
margin-bottom:15px;
border:2px solid var(--accent);
}


.content {
    font-family: "EB Garamond", serif;
    color: #eaeaea;
    line-height: 1.6;
}

.title {
    font-family: "Quicksand", sans-serif;
    letter-spacing: 1px;
    font-weight: 500;
}

.intro {
    font-size: 16px;
    color: #d0d0d0;
}

.list li {
    margin: 6px 0;
}

.note {
    color: #bdbdbd;
    font-style: italic;
}

.quote {
    font-style: italic;
    color: #cfcfcf;
    border-left: 2px solid #666;
    padding-left: 10px;
}

.divider {
    border: none;
    border-top: 1px solid #333;
    margin: 20px 0;
}

/* =========================
   GRID SPANS
   ========================= */

.banner-window{grid-column:1/4;}
.main-window{grid-column:span 2;}
.contact-window{grid-column:span 2;}
.footer-window{grid-column:1/4;}

/* =========================
   LINKS (GLOBAL FIX)
   ALL LINKS ARE ROUND NOW
   ========================= */

a{
color:var(--text);
text-decoration:none;
}

a.button,
.page-nav a,
.footer-links a,
.content a{
display:inline-flex;
align-items:center;
justify-content:center;

padding:10px 16px;
margin:3px;

border-radius:999px;

background:#0a0a0f;
border:1px solid var(--border);

color:var(--text);

transition:.25s ease;
}

/* HOVER */
a.button:hover,
.page-nav a:hover,
.footer-links a:hover,
.content a:hover{
background:var(--accent);
color:#000;
transform:translateY(-2px);
}

/* ACTIVE PAGE */
.current{
background:var(--accent2) !important;
color:#fff !important;
border-color:var(--accent2) !important;
}

/* CLICK */
a:active{
transform:translateY(1px);
}

/* =========================
   TOP NAV (VERTICAL STACK)
   ========================= */

.page-nav{
display:flex;
flex-direction:column;   /* 👈 THIS is the key */
align-items:center;
gap:10px;
margin-top:15px;
}

/* keep buttons consistent size */
.page-nav a{
min-width:180px;
text-align:center;
}

/* =========================
   BUTTON STACK (SIDE NAV)
   ========================= */

.button-stack{
display:flex;
flex-direction:column;
gap:10px;
align-items:stretch;
}

.button-stack a{
width:100%;
text-align:center;
}
/* =========================
   DIVIDER
   ========================= */

.divider{
margin:15px 0;
border:none;
border-top:1px solid var(--border);
opacity:0.6;
}

/* =========================
   BOXES
   ========================= */

.mini-box,
.contact-box{
border:1px solid var(--border);
border-radius:14px;
padding:12px;
margin-top:12px;
background:rgba(255,255,255,0.02);
}

/* =========================
   FORM
   ========================= */

input,
textarea{
width:100%;
padding:12px;

border-radius:12px;

border:1px solid var(--border);

background:#0a0a0f;

color:white;

font-family:inherit;

margin-top:8px;
}

input:focus,
textarea:focus{
outline:none;
border-color:var(--accent);
box-shadow:0 0 10px rgba(179,136,255,.25);
}

button{
padding:12px;
border:none;
border-radius:999px;
background:var(--accent);
color:#000;
font-weight:bold;
cursor:pointer;
}

button:hover{
background:#fff;
}

/* =========================
   BLINKIES
   ========================= */

.blinkies{
display:flex;
flex-wrap:wrap;
gap:8px;
margin-top:15px;
}

.blinkies img{
width:88px;
height:31px;
border-radius:6px;
}

/* =========================
   FOOTER
   ========================= */

.footer-content{
display:flex;
justify-content:space-between;
flex-wrap:wrap;
gap:20px;
}

/* =========================
   TYPOGRAPHY
   ========================= */

h2,h3,h4{
color:var(--accent);
letter-spacing:1px;
}

p{
line-height:1.8;
}

/* =========================
   RESPONSIVE
   ========================= */

@media(max-width:900px){
.grid{
grid-template-columns:1fr;
}

.banner-window,
.main-window,
.contact-window,
.footer-window{
grid-column:auto;
}

h1{
font-size:2.5rem;
}
}



@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@300;400;600&family=Cormorant+Garamond:wght@400;600&display=swap');

body {
  background: #0b0b10;
  color: #eaeaea;
}

.obsessions {
  font-family: "Quicksand", sans-serif;
  padding: 15px;
  border: 1px solid rgba(200, 160, 255, 0.25);
  background: rgba(10, 10, 15, 0.6);
  width: fit-content;
  border-radius: 10px;
}

.obsessions h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: 18px;
  margin-bottom: 10px;
  text-transform: lowercase;
  letter-spacing: 1px;
}

.obsessions ul {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.obsessions li {
  padding: 3px 0;
  font-size: 14px;
  text-transform: lowercase;
  opacity: 0.9;
}

.obsessions li:hover {
  color: #c9a7ff;
  transition: 0.2s;
}


.profile-card {
    font-family: "EB Garamond", serif;
    color: #e6e6e6;
    max-width: 420px;
}

/* subtitle */
.subtitle {
    color: #cfcfcf;
    font-size: 15px;
    line-height: 1.5;
    margin-top: 6px;
}

/* status layout */
.status-lines p {
    margin: 6px 0;
}

.status-lines span {
    color: #b9a7ff;
    font-family: "Quicksand", sans-serif;
    font-size: 13px;
    margin-right: 6px;
}

/* NAVIGATION vertical stack */
.nav-links {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-top: 10px;
}

.nav-links a {
    color: #d6d6d6;
    text-decoration: none;
    padding-left: 10px;
    position: relative;
}

/* soft gothic marker */
.nav-links a::before {
 
    position: absolute;
    left: 0;
    color: rgba(200, 180, 255, 0.6);
}

.nav-links a:hover {
    color: white;
}

.status-card {
    font-family: "EB Garamond", serif;
    color: #e6e6e6;

    max-width: 420px;

    /* THIS is what you’re missing */
    padding: 18px 22px;

    box-sizing: border-box;

    /* keeps it from hugging the page edge */
    margin: 0 auto;
}


/* section title */
.section-title {
      color: #cfcfcf;
    font-size: 15px;
    line-height: 1.5;
    margin-top: 6px;
    margin: 6px 0;
}

/* status rows */
.status-grid {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.status-row {
    display: flex;
    justify-content: space-between;
    align-items: center;

    padding-left: 14px;
    padding-right: 6px; /* important */
    position: relative;
}
/* single consistent marker system */
.status-row::before {
  
    position: absolute;
    left: 0;
    color: rgba(185, 167, 255, 0.35);
}

/* labels */
.label {
    font-family: "Quicksand", sans-serif;
    font-size: 13px;
    color: #b9a7ff;
}

/* values */
.value {
    color: #dcdcdc;
}

/* now playing */
.media {
    font-style: italic;
    color: #dcdcdc;
}

/* visitor text */
.note {
    color: #c9c9c9;
    line-height: 1.6;
}

/* soft divider (NOT a harsh border) */
.divider {
    height: 1px;
    background: rgba(180, 160, 220, 0.18);
    margin: 14px 0;
}


.atmosphere-block {
    padding: 6px 0;
}

/* section title spacing */
.section-title {
    margin-bottom: 12px;
}

/* this is the key fix: breathing space */
.atmosphere-list p {
    margin: 10px 0;
    padding-left: 14px;
    position: relative;
    color: #d0d0d0;
    line-height: 1.5;
}

/* soft marker (not overpowering) */
.atmosphere-list p::before {
    position: absolute;
    left: 0;
    color: rgba(185, 167, 255, 0.35);
}

.tech-stack {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 10px;
}

/* each skill becomes a soft “chip” */
.tech-stack span {
    font-family: "Quicksand", sans-serif;
    font-size: 12px;

    padding: 4px 10px;
    border-radius: 999px;

    background: rgba(20, 20, 30, 0.6);
    border: 1px solid rgba(185, 167, 255, 0.2);

    color: #d6d6d6;

    transition: all 0.2s ease;
}

/* subtle hover glow */
.tech-stack span:hover {
    border-color: rgba(185, 167, 255, 0.5);
    color: #ffffff;
    transform: translateY(-1px);
}

.profile-meta {
    font-family: "EB Garamond", serif;
    color: #e6e6e6;
    max-width: 420px;
}

/* each row becomes structured */
.meta-row {
    display: flex;
    justify-content: space-between;
    align-items: center;

    padding-left: 14px;
    margin: 8px 0;

    position: relative;
}

/* labels */
.label {
    font-family: "Quicksand", sans-serif;
    font-size: 13px;
    color: #b9a7ff;
}

/* values */
.value {
    color: #dcdcdc;
}

.tag-section {
    margin-bottom: 22px;
}

/* section titles */
.section-title {
    font-family: "Quicksand", sans-serif;
    font-size: 15px;
    color: #d8d0ff;
    margin-bottom: 10px;
}

/* tag container = real layout system */
.tag-group {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

/* individual tags */
.tag-group span {
    font-family: "Quicksand", sans-serif;
    font-size: 12px;

    padding: 4px 10px;
    border-radius: 999px;

    background: rgba(20, 20, 30, 0.6);
    border: 1px solid rgba(185, 167, 255, 0.2);

    color: #d6d6d6;

    transition: all 0.2s ease;
}

/* hover subtle glow */
.tag-group span:hover {
    border-color: rgba(185, 167, 255, 0.5);
    color: #ffffff;
    transform: translateY(-1px);
}

.project-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:15px;
    padding:18px;
}

.project-card{
    background:#111;
    border:1px solid rgba(179,136,255,.25);
    padding:16px;
    transition:.25s;
    position:relative;
}

.project-card:hover{
    transform:translateY(-3px);
    border-color:#b388ff;
    box-shadow:0 0 12px rgba(179,136,255,.18);
}

.project-header{
    display:flex;
    justify-content:space-between;
    align-items:flex-start;
    margin-bottom:12px;
}

.project-header h3{
    margin:0;
    font-family:"Quicksand",sans-serif;
    font-size:15px;
    color:#ece7ff;
}

.project-card p{
    margin:0;
    line-height:1.6;
    color:#cfcfe6;
    font-size:14px;
}

.project-footer{
    margin-top:16px;
    padding-top:10px;
    border-top:1px dashed rgba(179,136,255,.2);
    color:#9f92c7;
    font-size:12px;
    font-family:"Quicksand",sans-serif;
    letter-spacing:1px;
}

/* Status badges */

.status{
    font-size:10px;
    padding:3px 8px;
    border:1px solid;
    letter-spacing:1px;
    font-family:"Quicksand",sans-serif;
}

.active{
    color:#b6f5b6;
    border-color:#6fcf97;
}

.complete{
    color:#9ddcff;
    border-color:#5dade2;
}

.progress{
    color:#ffe599;
    border-color:#f4c542;
}

.dev{
    color:#ffb6c1;
    border-color:#d98aa6;
}















