.bodyleft .contact span {
  color: #ffd86b !important;
  font-size: 1.2em;
  display: inline-flex;
  align-items: center;
  min-width: 1.5em;
  justify-content: center;
}
/* Layout for body left and right */
.body {
  display: flex;
  gap: 32px;
  line-height: 1.6;
}
.bodyleft {
  background: #23232b;
  width: 320px;
  min-width: 240px;
  max-width: 360px;
  border-radius: 24px;
  box-shadow: 0 4px 32px rgba(0,0,0,0.4);
  padding: 40px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 24px 0 24px 24px;
  height: fit-content;
}
.bodyleft .avatar {
  width: 220px;
  height: 220px;
  border-radius: 16%;
  margin-bottom: 24px;
  border: 4px solid #ffd86b;
  object-fit: cover;
}
.bodyleft .name {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: #fff;
}
.bodyleft .role {
  color: #ffd86b;
  font-size: 1rem;
  margin-bottom: 24px;
}
.bodyleft .contact {
  width: 100%;
  margin-bottom: 24px;
}
.bodyleft .contact p {
  margin: 8px 0;
  font-size: 0.95rem;
  color: #e0e0e0;
  display: flex;
  align-items: center;
  gap: 8px;
}
.bodyleft .contact span {
  color: #ffd86b;
  font-size: 1.1em;
}
.bodyleft .social {
  display: flex;
  gap: 16px;
  margin-top: 8px;
}
.bodyleft .social a {
  color: #ffd86b;
  font-size: 1.3rem;
  transition: color 0.2s;
  display: flex;
  align-items: center;
}
.bodyleft .social a:hover {
  color: #fff;
}

.bodyright {
  flex: 1;
  background: #23232b;
  border-radius: 24px;
  box-shadow: 0 4px 32px rgba(0,0,0,0.4);
  padding: 40px 48px;
  margin: 24px 24px 24px 0;
  min-width: 0;
}
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Montserrat', Arial, sans-serif;
}

body {
  background: #181818;
  color: #e0e0e0;
  min-height: 100vh;
}

.container {
  display: flex;
  min-height: 100vh;
  flex-direction: column
}

/* Sidebar */
.sidebar {
  background: #23232b;
  width: 300px;
  padding: 40px 20px;
  border-radius: 24px;
  margin: 24px 16px 24px 24px;
  box-shadow: 0 4px 32px rgba(0,0,0,0.4);
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 240px;
}
.sidebar .avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  margin-bottom: 24px;
  border: 4px solid #ffd86b;
  object-fit: cover;
}
.sidebar .name {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.sidebar .role {
  color: #ffd86b;
  font-size: 1rem;
  margin-bottom: 24px;
}
.sidebar .contact {
  width: 100%;
  margin-bottom: 24px;
}
.sidebar .contact p {
  margin: 8px 0;
  font-size: 0.95rem;
}
.sidebar .social {
  display: flex;
  gap: 12px;
}
.sidebar .social a {
  color: #ffd86b;
  font-size: 1.3rem;
  transition: color 0.2s;
}
.sidebar .social a:hover {
  color: #fff;
}

/* Main content */
.main {
  flex: 1;
  background: #23232b;
  border-radius: 24px;
  margin: 24px 24px 24px 0;
  box-shadow: 0 4px 32px rgba(0,0,0,0.4);
  padding: 40px 48px;
  display: flex;
  flex-direction: column;
}

/* Header menu */
.header {
    background: #23232b;
    border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 24px;
  padding-top: 24px;
  padding-left: 24px;
  padding-right: 24px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.logo img {
  width: 60px;
  height: 60px;
  border-radius: 12px;
}
.logo a {
  color: #ffd86b;
  font-size: 1.3rem;
  font-weight: 700;
  text-decoration: none;
}
.menu ol {
  display: flex;
  gap: 24px;
  list-style: none;
}
.menu a {
  color: #e0e0e0;
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 500;
  padding: 8px 18px;
  border-radius: 8px;
  transition: background 0.2s, color 0.2s;
}
.menu a:hover, .menu a.active {
  background: #ffd86b;
  color: #23232b;
}

section {
  background: #23232b;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.2);
  padding: 32px;
  margin-bottom: 32px;
}
section h2 {
  color: #ffd86b;
  margin-bottom: 18px;
  font-size: 2rem;
}

/* Portfolio grid */
.portfolio-items {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}
.portfolio-item {
  background: #181818;
  border-radius: 12px;
  padding: 18px 16px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}
.portfolio-item h4 {
  color: #ffd86b;
  margin-bottom: 8px;
}

/* Blog cards */
article {
  background: #181818;
  border-radius: 12px;
  padding: 18px 16px;
  margin-bottom: 18px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}
article h4 {
  color: #ffd86b;
  margin-bottom: 8px;
}

/* Contact section */
#contact p, #contact a {
  font-size: 1.1rem;
  color: #e0e0e0;
}
#contact a {
  color: #ffd86b;
  text-decoration: underline;
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 8px;
  background: #23232b;
}
::-webkit-scrollbar-thumb {
  background: #ffd86b;
  border-radius: 8px;
}