::root {
  --bg: #ffffff;
  --fg: #0f172a; /* slate-900 */
  --muted: #64748b; /* slate-500 */
  --card: #061e35; /* slate-50 */
  --border: #FFFFF0; /* slate-200 */
  --accent: #2563eb; /* blue-600 */
}
@media (prefers-color-scheme: dark) {
  :root {
    --bg: #0b1020;
    --fg: #e2e8f0;
    --muted: #94a3b8;
    --card: #0f172a;
    --border: #1f2937;
    --accent: #60a5fa;
  }
}

* { box-sizing: border-box; }
html,
body {
  margin: 0;
  height: 100%;
  
  min-height: 100svh; /* ensures footer sticks to bottom */
  display: flex;
  flex-direction: column;
 background: #E0D5C3;
  
  font: 16px/1.5 system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, Noto Sans, Arial, "Apple Color Emoji", "Segoe UI Emoji";
}

.wrapper { width: 100%; }
.container {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 1rem 2rem;
  margin-inline: auto;
  padding: 1rem clamp(1rem, 3vw, 2rem);


  
}

/* ===== Header ===== */
header.site-header {

  border-bottom: 0.1rem solid  #4B2E21;
  background: #E0D5C3;
   margin-left: 0;
  margin-right: auto;
}

.header-inner {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 1rem;
}
/* Left-side photo container */
.brand-photo {
  width: 72px;
  height: 6.875em;
  border-radius: 12px;
  overflow: hidden;
  flex: 0 0 auto;
  background: linear-gradient(135deg, #dbeafe, #f5d0fe);
  border: 1px solid var(--border);
  display: grid;
  place-items: center;
}
.brand-photo img { width: 100%; height: 100%; object-fit: cover; display: block; 
 justify-content: center;
}


.brand-meta { 



  display: grid;
  
  
   gap: .15rem;



 }
.site-title { 
 
 font-family:'Times New Roman', Times, serif;

 margin: 0;
 
 color:rgb(0, 0, 0);


 }
.site-subtitle { 
  
  
  margin: 0; 
  
  font-size: .95rem; 
  font-family:'Times New Roman', Times, serif;
  color:rgb(0, 0, 0);


}

nav.header-actions {
  margin-left: auto;
  display: flex;
  gap: .5rem;
}
.btn {
  appearance: none;
  border: 1px solid #4B2E21;
  background: transparent;
  color: #111;
  padding: .55rem .85rem;
  border-radius: .75rem;
  cursor: pointer;
  transition: transform .05s ease, background .2s ease, border-color .2s ease;
}
.btn:hover { background: rgba(0,0,0,.04); }
.btn:active { transform: translateY(1px); }
.btn.primary { background: var(--accent); color: #fff; border-color: transparent; }
.btn.primary:hover { filter: brightness(1.05); }
.pbig{
text-align: left;

color: rgba(rgb(28, 12, 12), rgb(4, 11, 4), rgb(46, 46, 205), 80);

}
main{

background: #E0D5C3;



}
.education{


display: inline-block;
border:2px solid #4B2E21;
  font-style: italic;
  
  margin: 1%;
  padding: 1%;
  justify-content: space-between;      
   padding: 2%;
    
  background: #6C7A7E;
  border:2px solid #4B2E21;
  border-radius: 1rem;

  
}
.content-card {
               
  
  display: block;
  width: 100%;  
  padding: 2%;
  background: #6C7A7E;
  border: 2px solid #4B2E21;
  border-radius: 1rem;
  

 
 
}

.softwareengineer{

  display:inline-block;
  border:2px solid #4B2E21;
  
  margin: 1%;
  padding: 1%;
  background:#111;
  color:#fff;
  font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
  box-shadow:0 8px 24px rgba(0,0,0,.15);
  transition:transform .25s ease;

}
.designer{
  
display:inline-block;

border:2px solid #4B2E21;
border-radius: 10% 12% 18% 12% / 30% 60% 20% 50%; 
background:#E0D5C3;;
color:rgb(0, 0, 0);
font-family: 'Times New Roman', Times, serif;
margin: 1%;
padding: 1%;
transition:transform .25s ease;


    
}



/* ===== Footer ===== */
.site {
  border-top: 1% solid #4B2E21;
  background: #E0D5C3;
  font-size: .95rem;
  
}
.sitecard{
  display: flex;
  border-top: 1px solid #4B2E21;
  background: #E0D5C3;
  font-size: .95rem;

}
.small { color: var(--muted); }
@keyframes blobber{
  0%   { border-radius: 38% 62% 54% 46% / 52% 34% 66% 48%; }
  33%  { border-radius: 58% 28% 42% 72% / 48% 62% 38% 52%; }
  66%  { border-radius: 24% 76% 70% 30% / 44% 56% 32% 68%; }
  100% { border-radius: 38% 62% 54% 46% / 52% 34% 66% 48%; }
}