/* Reset and base layout */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #f9f9f9;
  font-family: 'Helvetica Neue', sans-serif;
  display: flex;
  flex-direction: column;
  /* min-height: 100vh; */
  padding: 40px 20px;
  padding-top: 120px;
  color: #222;
}

.intro {
  font-family: 'Roboto', sans-serif;
  color: #555555; /* medium grey */
  line-height: 1.3; /* adds spacing between lines */
  font-size: 16px;
  margin-bottom: 36px; /* space below first paragraph */
}
.intro a {
  color: #369cdb; /* sky blue */
  text-decoration: none; /* removes underline */
}

.intro a:hover {
  color: #a7a219; /* lighter sky blue on hover (optional) */
}
/* .underline {
  text-decoration: underline;
} */

.fun-facts {
  color: #555555; /* medium grey */
  font-family: 'Roboto', sans-serif;
  line-height: 1.6; /* adds spacing between lines */
  font-size: 16px;
  margin-bottom: 36px; /* space below second paragraph */
}

#recent-works {
  font-family: 'Roboto', sans-serif;
  font-size: 18px;
  color: #555555; /* same grey as intro */
  line-height: 1.6;
  margin-top: 48px; /* space above section */
}

#recent-works-list .work-desc {
  font-size: 14px; /* smaller than heading */
  color: #555; /* grey like your intro */
  line-height: 1.5;
}

.vocal_link {
  color: #369cdb; /* sky blue */
  text-decoration: none; /* removes underline */
}

.vocal_link:hover {
  color: #a7a219; /* lighter sky blue on hover (optional) */
}

/* Header section */
header {
  text-align: center;
  margin-bottom: 25px;
}

header h1 {
  font-size: 1.8rem;
  margin-bottom: 10px;
}

header p {
  font-size: 1rem;
  color: #666;
}

/* Two-column main layout */
.main-container {
  display: flex;
  gap: 60px; /* space between columns */
  justify-content: center; /* center both columns */
  flex-wrap: wrap; /* allows wrapping on small screens */
  margin: 0 auto; /* center container */
  max-width: 1050px; /* limits overall width */
}

.profile-figure {
  flex: 0 0 400px; /* narrower left column */
  display: flex;
  flex-direction: column;
  align-items: center;
  /* margin-top: 20px; */
  text-align: center;
}

.profile-figure h1 {
  font-family: 'Oswald', sans-serif;
  font-weight: 300;
  /* font-size: 40rem; */
  font-size: 2.5rem;
  margin-bottom: 60px; /* space between name and image */
}


.profile-img {
  width: 200px;        
  height: 200px;       
  border-radius: 70%;  
  object-fit: cover;   
}

.profile-caption {
  font-size: 0.9rem;
  color: #666;
  margin-top: 30px;
  line-height: 1.4;
  text-align: center;
}

/* Content column */
.content {
  flex: 1; /* take remaining space */
}

/* Footer */
footer {
  width: 100%;
  background-color: #f1f1f1;
  text-align: center;
  padding: 10px 0;
  font-size: 0.7rem;
  color: #555;
  margin-top: 20px;
}

/* Sections */
section {
  margin-bottom: 25px;
}

section h2 {
  font-size: 1.2rem;
  margin-bottom: 8px;
  border-bottom: 1px solid #eee;
  padding-bottom: 4px;
}

section ul {
  padding-left: 20px;
  margin-top: 8px;
}

section ul li {
  font-size: 0.95rem;
  margin-bottom: 4px;
}

/* Navigation Tabs */
.navbar {
  margin-bottom: 60px;
  text-align: center;
}

.navbar ul {
  list-style: none;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px; 
  padding: 0;
}

.navbar li {
  display: inline;
  font-size: 1.2rem;
  position: relative;
}

/* Add slash only between text links (first three) */
.navbar li:nth-child(-n+3):not(:last-child)::after {
  content: " /";
  color: #333;
  margin-left: 5px;
}

.navbar a {
  text-decoration: none;
  color: #333;
  font-weight: 600;
  background-color: transparent;
  padding: 0;
  border-radius: 0;
  transition: color 0.2s ease;
}

.navbar a:hover,
.navbar a:focus {
  color: #0073b1;
}

.nav-icon {
  width: 40px;  
  height: 40px;
  vertical-align: middle;
}

/* Responsive for mobile: stack image and content */
@media (max-width: 768px) {
  .main-container {
    flex-direction: column;
    align-items: center;
  }

  .profile-figure {
    margin-bottom: 20px;
  }

  .content {
    width: 100%;
  }
}
