/* GLOBAL */
body {
  font-family: 'Lora', serif;
  font-size: 1.2rem;
  line-height: 1.6;
  margin: 0;
  padding: 0;
  background: #f4f4f4;
  color: #222;
}

h1, h2 {
  font-family: 'Lora', serif;
}

/* NAVIGATION */
nav {
  background: #111;
  color: #fff;
  padding: 15px 50px;
  position: sticky;
  top: 0;
  z-index: 1000;
}

nav ul {
  list-style: none;
  display: flex;
  justify-content: flex-end;
  margin: 0;
}

nav li {
  margin-left: 25px;
}

nav a {
  color: white;
  text-decoration: none;
  font-weight: bold;
}

nav a:hover {
  color: #ffcc00;
}


/* CC MARK */
.bottom {
  text-align: right;
  font-size: 0.8rem;
  padding: 0 90px;
}


/* HOME */

/* Intro (background) */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 90px;
  background: white;
}

/* Intro (name + icons) */
.intro {
  text-align: left; /* keep left alignment */
  margin-bottom: 10px;
}

.intro h1 {
  display: inline-block;
  background: #ffeb3b; /* yellow highlight */
  padding: 4px 8px;
}

.icons {
  margin-top: 10px;
}

.icons a {
  margin-right: 12px;
  font-size: 1.4rem;
  color: #333; /* adjust if needed */
  text-decoration: none;
}

/* intro (photo) */
.hero-img img {
  max-width: 280px;
  border-radius: 10px;
}


/* body texts */
section {
  padding: 60px 80px;
}

section:nth-child(even) {
  background: #f7f7f7;
}

section h2 {
  font-size: 1.8rem;
  margin-bottom: 15px;
}



/* Writing Page */
#posts ul {
  list-style: none;
  padding: 0;
  max-width: 600px;
  margin: 0 auto;
}

#posts li {
  margin-bottom: 15px;
}

#posts a {
  font-weight: bold;
  color: #333;
  text-decoration: none;
}

#posts a:hover {
  color: #0073b1;
}


/* PROJECTS */
#map-section {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  padding: 20px;
}

#map {
  border: 2px solid #ccc;
  border-radius: 10px;
}

.quote-author {
  font-size: 1rem;        /* slightly smaller */
  text-align: center;
  margin-bottom: 15px;    /* space before map */
  color: gray;            /* optional softer color */
}

#projects {
  padding: 60px 80px;
}

.project {
  display: flex;
  align-items: center;
  margin-bottom: 40px;
}

.project img {
  width: 200px;
  height: auto;
  margin-right: 20px;
  border-radius: 10px;
}

.project-info {
  flex: 1;
}



/* CONTACT */
#contact {
  text-align: center;
  padding: 50px 20px;
  background-color: #f9f9f9;
}

#contact h2 {
  font-size: 32px;
  margin-bottom: 20px;
}

#contact p {
  font-size: 18px;
  margin-bottom: 30px;
}

.socials a {
  display: inline-block;
  margin: 0 15px;
  font-size: 28px;
  color: #333;
  transition: transform 0.3s, color 0.3s;
}

.socials a:hover {
  color: #0073b1; /* LinkedIn blue as example, you can change per icon */
  transform: scale(1.2);
}
