* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --primary: #2c5f2d;       /* Rich Green */
  --accent: #9ccc65;        /* Light Leaf Green */
  --background: #ffffff;    /* Pure White */
  --text: #1b1b1b;          /* Strong Charcoal */
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  margin: 0;
  min-height: 100vh;
  background: var(--background);
  color: var(--text);
}

nav {
  width: 100%;
  background-color: #f0f8f0;
  padding: 20px 40px;
  position: fixed;
  top: 0;
  left: 0;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

nav ul {
  display: flex;
  gap: 30px;
  list-style: none;
  padding: 0;
  margin: 0;
}

nav ul li a {
  text-decoration: none;
  color: var(--primary);
  font-weight: bold;
  font-size: 18px;
}
nav ul li::before {
  content: none;
}
nav ul li a:hover {
  text-decoration: underline;
  color: var(--accent);
}

.content {
  padding: 100px 40px 40px 40px;
  max-width: 1200px;
  margin: auto;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 40px;
  margin-bottom: 40px;
  padding: 60px 0;
  background-color: var(--background);
}

.bio {
  flex: 1;
}

.bio h1 {
  font-size: 36px;
  margin-bottom: 10px;
  color: var(--primary);
}

.bio p {
  font-style: italic;
  margin-bottom: 20px;
  line-height: 1.6;
}

.profile-img {
  width: 280px;
  height: 280px;
  object-fit: cover;
  border-radius: 10px;
  border: 4px solid var(--accent);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

section {
  margin-bottom: 60px;
  padding-bottom: 40px;
  border-bottom: 1px solid #eee;
}

section h2 {
  font-size: 28px;
  color: var(--primary);
  margin-bottom: 20px;
}

h3 {
  font-size: 20px;
  color: var(--primary);
  margin-top: 30px;
}



ul {
  padding-left: 20px;
  margin-top: 10px;
  list-style: none;
}

ul li {
  position: relative;
  margin-bottom: 10px;
  color: var(--text);
  font-size: 17px;
  line-height: 1.6;
  padding-left: 24px;
}

ul li::before {
  content: "O";
  position: absolute;
  left: 0;
  top: 0.4em;
  color: var(--bullet);
  font-weight: bold;
  font-size: 16px;
  line-height: 1;
}



.project-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 40px;
}

.project-item:nth-child(even) {
  flex-direction: row-reverse;
}

.project-text {
  flex: 1;
  min-width: 300px;
}

.project-img,
video.project-img {
  width: 50%;
  max-width: 750px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.bachelor-projects {
  display: flex;
  gap: 20px;
}

.bachelor-projects video {
  width: 25%;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.bachelor-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 30px;
  justify-content: flex-start;
}

.gallery img {
  width: 45%;
  height: auto;
  margin: 10px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
}

.contact-icons {
  display: flex;
  gap: 20px;
  margin-top: 20px;
}

.contact-icons a img {
  width: 36px;
  height: 36px;
}

footer {
  text-align: center;
  padding: 20px 0;
  font-size: 14px;
  color: #999;
}
