:root {
  --sage-100: #e6f0ea;
  --sage-200: #c8dbc7;
  --sage-300: #a7c7b7;
  --sage-400: #88b3a2;
  --sage-500: #6d998a;
  --sage-600: #557c6f;
  --sage-accent: #b7c9a8;
  --sage-dark: #485e54;
  --text-main: #222;
  --text-light: #666;
  --bg-main: #F8F5F2;
}

/* Sage green links site-wide */
a {
  color: var(--sage-500);
  text-decoration: underline;
  transition: color 0.2s;
}

a:hover,
a:focus {
  color: var(--sage-accent);
}

body {
  font-family: 'Karla', 'Poppins', sans-serif;
  background: var(--sage-100);
  color: var(--text-main);
  margin: 0;
  padding: 0;
}

.split-container {
  display: flex;
  min-height: 100vh;
}

.left-pane {
  background: var(--sage-200);
  padding: 40px 24px;
  min-width: 240px;
  max-width: 320px;
  flex: 0 0 260px; /* fixed narrow width */
  box-sizing: border-box;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
}

.right-pane {
  background: var(--bg-main);
  padding: 40px 36px;
  flex: 2 1 0; /* right pane is much larger */
  box-sizing: border-box;
}

.profile-section {
  text-align: center;
}

/* Make profile picture bigger */
.profile-pic {
  width: 160px;
  height: 160px;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid var(--sage-400);
  margin-bottom: 18px;
  background: var(--sage-100);
  display: block;
  margin-left: auto;
  margin-right: auto;
}

h1 {
  font-size: 2.1rem;
  margin-bottom: 12px;
  color: var(--sage-dark);
  font-family: 'Poppins', 'Karla', sans-serif;
}

.bio {
  font-size: 1rem;
  margin-bottom: 30px;
  color: var(--text-light);
  font-family: 'Poppins', 'Karla', sans-serif;
}

nav a {
  display: block;
  margin: 10px 0;
  color: var(--sage-500);
  text-decoration: none;
  font-weight: 700;
  transition: color 0.2s;
  font-family: 'Poppins', 'Karla', sans-serif;
}

nav a:hover {
  color: var(--sage-accent);
  text-decoration: underline;
}

h2 {
  color: var(--sage-600);
  font-size: 1.4rem;
  margin-top: 0;
  font-family: 'Poppins', 'Karla', sans-serif;
}

h3 {
  color: var(--sage-dark);
  margin-top: 28px;
  margin-bottom: 10px;
  font-family: 'Poppins', 'Karla', sans-serif;
}

section {
  margin-bottom: 36px;
}

/* Portfolio gallery: Make images larger and fill more space */
.portfolio-gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 12px;
  justify-content: flex-start;
}

.portfolio-gallery img,
.portfolio-gallery img.landscape-img {
  width: 220px;
  max-width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 14px;
  border: 2px solid var(--sage-300);
  background: var(--sage-100);
  box-shadow: 0 2px 8px var(--sage-200);
  transition: transform 0.2s;
}

/* Appearance photos (for brands/events): larger */
.appearance-photos {
  margin: 18px 0 12px 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  justify-content: flex-start;
}

.appearance-photos img,
.appearance-photos img.landscape-logo {
  width: 120px;
  max-width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 10px;
  margin-bottom: 0;
  margin-top: 2px;
  border: 2px solid var(--sage-300);
  background: #fff;
  box-shadow: 0 2px 8px var(--sage-200);
  padding: 3px 6px;
}

.content-category {
  margin-bottom: 40px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--sage-200);
}

form {
  margin-top: 18px;
  margin-bottom: 8px;
}

input, textarea {
  display: block;
  width: 100%;
  margin-bottom: 12px;
  padding: 10px;
  font-size: 1rem;
  border: 1.5px solid var(--sage-300);
  border-radius: 7px;
  background: var(--sage-100);
  box-sizing: border-box;
  outline: none;
  font-family: 'Poppins', 'Karla', sans-serif;
}

input:focus, textarea:focus {
  border-color: var(--sage-500);
  background: var(--sage-200);
}

button[type="submit"] {
  background: var(--sage-500);
  color: var(--bg-main);
  padding: 10px 28px;
  font-size: 1rem;
  border: none;
  border-radius: 7px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s;
  font-family: 'Poppins', 'Karla', sans-serif;
}

button[type="submit"]:hover {
  background: var(--sage-dark);
}

.social-links {
  margin-top: 18px;
}

.social-links a {
  display: inline-block;
  margin-right: 16px;
  color: var(--sage-600);
  font-size: 1.1rem;
  font-weight: 700;
  text-decoration: none;
  font-family: 'Poppins', 'Karla', sans-serif;
}

.social-links a:hover {
  color: var(--sage-accent);
  text-decoration: underline;
}

#awards ul {
  font-family: 'Karla', sans-serif;
}

/* Responsive adjustments */
@media (max-width: 900px) {
  .split-container {
    flex-direction: column;
  }
  .left-pane, .right-pane {
    min-width: 0;
    width: 100%;
    padding: 24px 10vw;
  }
  .profile-pic {
    width: 120px;
    height: 120px;
  }
  .portfolio-gallery {
    justify-content: center;
  }
  .portfolio-gallery img,
  .portfolio-gallery img.landscape-img {
    width: 45vw;
    max-width: 320px;
    height: auto;
  }
  .appearance-photos {
    justify-content: center;
  }
  .appearance-photos img,
  .appearance-photos img.landscape-logo {
    width: 16vw;
    max-width: 110px;
    height: auto;
  }
}

/* Responsive for small phones */
@media (max-width: 600px) {
  .split-container {
    flex-direction: column;
  }
  .left-pane, .right-pane {
    padding: 16px 2vw;
  }
  h1 {
    font-size: 1.4rem;
  }
  h2 {
    font-size: 1.15rem;
  }
  .profile-pic {
    width: 110px;
    height: 110px;
  }
  /* Content Creator Portfolio stays horizontal and scrollable */
  .portfolio-gallery {
    flex-direction: row;
    gap: 10px;
    align-items: flex-start;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 10px;
    flex-wrap: nowrap;
    scrollbar-width: thin;
    scrollbar-color: var(--sage-300) var(--sage-100);
  }
  .portfolio-gallery img,
  .portfolio-gallery img.landscape-img {
    width: 75vw;
    max-width: 320px;
    min-width: 180px;
    height: auto;
    border-radius: 16px;
    flex-shrink: 0;
  }
  .appearance-photos {
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
  }
  .appearance-photos img,
  .appearance-photos img.landscape-logo {
    width: 35vw;
    max-width: 140px;
    height: auto;
    margin-bottom: 6px;
    border-radius: 10px;
  }
}
