:root {
  /* Color Palette */
  --background: #1C2420;    /* Deep Forest */
  --headings: #E8A84A;     /* Candle Light */
  --body: #FAFAF2;         /* Ivory */
  --accent: #9DC183;       /* Sage Green */
  --library-green: #3D5C46; /* Moss Green */
  --light: #FAFAF2;        /* Light text */

  /* Typography */
  --font-main: 'Lora', serif;
}

/* Base Styles */
body {
  font-family: var(--font-main);
  margin: 0;
  padding: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Hero Section */
.hero-section {
  position: relative;
  width: 100%;
  height: 50vh;
  min-height: 380px;
  background-image: url('./assets/background_lights.jpg');
  background-size: cover;
  background-position: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Content Section */
.content-section {
  position: relative;
  width: 100%;
  background-color: var(--background);
  color: var(--body);
  padding: 80px 20px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  flex: 1;
  box-sizing: border-box;
}

/* Avatar */
.avatar {
  border-radius: 16px;
  border: none;
  width: 280px;
  height: 560px;
  object-fit: cover;
  object-position: center;
  margin-right: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
}

/* Content Container */
.content {
  position: relative;
  z-index: 3;
  text-align: left;
  color: var(--light);
  max-width: 800px;
  padding: 40px;
}

.content h1 {
  font-size: 3rem;
  margin: 0;
  font-weight: 600;
  font-family: var(--font-main);
  letter-spacing: -1px;
  line-height: 1.1;
  color: var(--headings);
}

.content h4 {
  font-weight: 400;
  color: var(--headings);
  word-spacing: 8px;
}

.content h4 span {
  word-spacing: 0px;
}

.content p {
  font-size: 1.25rem;
  margin: 20px 0 30px;
  opacity: 0.9;
  font-family: var(--font-main);
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: -0.3px;
  color: var(--body);
}

/* Contact Links */
.contact {
  list-style: none;
  padding: 0;
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.contact li a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s;
  border-bottom: 2px solid transparent;
}

.contact li a:hover {
  color: var(--library-green);
  transform: translateY(-2px);
  border-bottom: 2px solid var(--library-green);
}
