
/* Base styles */
body {
  font-family: "Space Mono", monospace;
  background-color: #ffffff;
  color: #000000;
  margin: 0;
  padding: 0;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Archivo", sans-serif;
  font-weight: 600;
}

p {
  font-family: "Space Mono", monospace;
  font-weight: 400;
}


.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Typography utility classes */
.archivo-light {
  font-family: "Archivo", sans-serif;
  font-weight: 300;
}

.archivo-regular {
  font-family: "Archivo", sans-serif;
  font-weight: 400;
}

.archivo-bold {
  font-family: "Archivo Black", sans-serif;
  font-weight: 400;
}

.space-mono-regular {
  font-family: "Space Mono", monospace;
  font-weight: 400;
}

.space-mono-bold {
  font-family: "Space Mono", monospace;
  font-weight: 700;
}

.alice-regular {
  font-family: "Alice", serif;
  font-weight: 400;
}

/* Section: Introduction */
.intro-section {
  background-color: #ffffff;
  color: #000000;
  padding: 60px 40px;
}

.intro-content {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
}

.intro-content p {
  font-family: "Space Mono", monospace;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.6;
}

.intro-left {
  flex: 1 1 60%;
  min-width: 300px;
}

.intro-left h2 {
  font-size: 40px;
  margin-bottom: 30px;
}

.intro-block {
  margin-bottom: 30px;
}

.intro-block h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

.intro-block p {
  font-size: 14px;
  line-height: 1.6;
}

/* Right-side image */
.intro-right {
  flex: 1 1 35%;
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 250px;
}

.intro-image {
  max-width: 80%;
  height: auto;
  border-radius: 50%;
  object-fit: cover;
  aspect-ratio: 1/1;
  border: 2px solid #000000;
}

/* Section: Education */
.education-section {
  background-color: #000000;
  color: #ffffff;
  padding: 60px 40px;
}

.education-content {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.education-content .left {
  padding-left: 300px;
  margin-left: 0px; 
}

.education-content .left h2 {
  font-size: 40px;
  margin-bottom: 30px;
}

.edu-item {
  display: flex;
  margin-bottom: 30px;
  align-items: flex-start;
}

.edu-item .icon {
  font-size: 28px;
  margin-right: 15px;
  color: white;
}

.edu-item h3 {
  margin: 0;
  font-size: 18px;
}

.edu-item .years {
  font-weight: bold;
  color: #ccc;
  margin: 5px 0;
}

.edu-item p {
  font-size: 14px;
  line-height: 1.5;
  margin-top: 0;
}

.education-content .right img {
  max-width: 400px;
  /* border-radius: 70px 0 70px 0; */
  object-fit: cover;
  box-shadow: none;
}

/* Section: Work Experience */
.work-experience-section {
  background-color: #ffffff;
  color: #000000;
  padding: 60px 40px;
}

.work-experience-content {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
}

.work-text {
  flex: 1;
}

.work-text h2 {
  font-size: 40px;
  margin-bottom: 30px;
}

.experience-block {
  margin-bottom: 30px;
}

.experience-block h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

.experience-block p {
  font-size: 14px;
  line-height: 1.6;
}

.work-image img {
  max-width: 400px;
  width: 100%;
  object-fit: contain;
  /* border: 1px solid #000; */
}

/* Section: Projects */
.projects-section {
  background-color: #ffffff;
  color: #000000;
  padding: 60px 40px;
}

.projects-title {
  font-size: 40px;
  color: #000000;
  margin-bottom: 40px;
  text-align: center;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.project-card {
  background-color: #ffffff;
  color: #000000;
  padding: 20px 10px;
  border: 1px solid #000000;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.project-card img {
  width: 100%;
  height: auto;
  max-height: 160px;
  object-fit: cover;
  margin-bottom: 10px;
}

.project-card h3 {
  font-size: 16px;
  font-weight: bold;
  margin: 10px 0;
}

.project-card p {
  font-size: 13px;
  text-align: center;
  line-height: 1.5;
}

/* Section: Photography */
.photography-section {
  background-color: #ffffff;
  color: #000000;
  padding: 60px 40px;
}

.photography-header h2 {
  font-family: "Archivo", sans-serif;
  font-weight: 400;
  font-size: 40px;
  margin-bottom: 30px;
}

.photography-header p {
  font-family: "Space Mono", monospace;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 30px;
}

.photo-gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.photo-card {
  background-color: #ffffff;
  border: 1px solid #000000;
  padding: 10px;
  flex: 1 1 calc(20% - 20px);
  max-width: calc(20% - 20px);
  text-align: center;
}

.photo-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  margin-bottom: 8px;
}

.photo-card p {
  font-size: 14px;
  color: #000000;
}

/* Section: Social Media */
.social-media-section {
  background-color: #ffffff;
  color: #000000;
  padding: 80px 40px;
}

.social-media-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
}

.social-text {
  flex: 1 1 60%;
}

.social-text h2 {
  font-size: 40px;
  margin-bottom: 30px;
}

.social-post {
  display: flex;
  gap: 15px;
  margin-bottom: 25px;
}

.social-post .space-mono-bold {
  margin: 0;
}

.social-post .space-mono-regular {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
}

.linkedin-badge {
  flex: 1 1 300px;
  min-width: 280px;
  max-width: 320px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 30px;
}

/* Section: Contact */
.contact-section {
  background-color: #ffffff;
  color: #000000;
  padding: 80px 40px;
}

.contact-container {
  display: flex;
  gap: 60px;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.contact-image img {
  width: 300px;
  height: auto;
}

.contact-details h2 {
  font-size: 36px;
  margin-bottom: 30px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.icon {
  font-size: 20px;
  color: #000000;
}

/* Header */
.site-header {
  background-color: #000;
  color: #fff;
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 20px;
  color: #fff;
  margin: 0;
}

.nav-links a {
  color: #fff;
  text-decoration: none;
  margin-left: 20px;
  font-family: "Space Mono", monospace;
  font-weight: 700;
  font-size: 14px;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: #ccc;
}

/* slideshow item */
.slideshow {
  position: relative;
  max-width: 400px;
  width: 100%;
}

.slide {
  display: none;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.slide.active {
  display: block;
}
