/* oliver-Inspired About Page Styles */
.oliver-about {
  background: #f7f7f7;
  min-height: 100vh;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 6rem 0 4rem 0;
}

.oliver-about-card {
  display: flex;
  flex-direction: row;
  max-width: 1100px;
  width: 100%;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 16px rgba(0, 58, 255, 0.2);
  padding: 3.5rem 2.5rem 3rem 2.5rem;
  gap: 3rem;
  margin: 0 auto;
}

.oliver-about-left {
  min-width: 320px;
  max-width: 340px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.2rem;
}

.oliver-about-banner-wrap {
  width: 100%;
  position: relative;
  margin-bottom: 0.5rem;
}
.oliver-about-banner {
  width: 100%;
  height: 120px;
  object-fit: cover;
  border-radius: 10px 10px 0 0;
  box-shadow: 0 2px 8px rgba(0, 58, 255, 0.15);
  background: #fff;
}
.oliver-about-profile-pic {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #fff;
  box-shadow: 0 2px 8px rgba(0, 58, 255, 0.15);
  position: absolute;
  left: 50%;
  bottom: -60px;
  transform: translateX(-50%);
  background: #fff;
}
.oliver-about-name {
  margin-top: 70px;
  font-family: 'Georgia', serif;
  font-size: 2.1rem;
  font-weight: bold;
  color: var(--primary-color);
  text-align: center;
  letter-spacing: -0.02em;
}
.oliver-about-socials {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  margin-bottom: 0.5rem;
}
.oliver-about-socials a {
  color: var(--primary-color);
  font-size: 1.3rem;
  transition: transform 0.2s;
  opacity: 0.9;
}
.oliver-about-socials a:hover {
  transform: scale(1.1);
  opacity: 1;
}

.oliver-about-section {
  margin-bottom: 1.5rem;
}
.oliver-about-section-title {
  font-family: 'Georgia', serif;
  color: var(--primary-color);
  font-size: 1.15rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
}
.oliver-about-section-content {
  color: #222;
  font-size: 1.05rem;
  font-family: 'Segoe UI', 'Liberation Sans', Arial, sans-serif;
  line-height: 1.6;
}

/* Ensure all text content uses the correct font */
.oliver-about-section-content p,
.oliver-about-section-content div:not(.education-title):not(.education-school):not(.experience-title):not(.experience-company) {
  font-family: 'Segoe UI', 'Liberation Sans', Arial, sans-serif;
}

.experience-list,
.education-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.experience-item,
.education-item {
  padding-left: 0.8rem;
  border-left: 3px solid var(--primary-color);
}

.experience-title,
.education-title {
  font-family: 'Georgia', serif;
  font-weight: bold;
  font-size: 1rem;
  color: #333;
}

.experience-company,
.education-school {
  font-family: 'Georgia', serif;
  font-style: italic;
  color: #555;
  font-size: 0.9rem;
}

.experience-details,
.education-details {
  font-family: 'Segoe UI', 'Liberation Sans', Arial, sans-serif;
  font-size: 0.8rem;
  color: #777;
  margin: 0.1rem 0;
}

.experience-description {
  font-family: 'Segoe UI', 'Liberation Sans', Arial, sans-serif;
  margin-top: 0.3rem;
  font-size: 0.9rem;
  color: #444;
  line-height: 1.5;
}

.experience-skills {
  font-family: 'Segoe UI', 'Liberation Sans', Arial, sans-serif;
  margin-top: 0.3rem;
  font-size: 0.8rem;
  color: #555;
  line-height: 1.4;
}

.experience-skills strong {
  color: #333;
  font-weight: 600;
}

.collapsible-trigger {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  background: #f8f9fa;
  border: 1px solid #eee;
  padding: 0.8rem 1rem;
  font-size: 1rem;
  font-weight: 500;
  color: var(--primary-color);
  cursor: pointer;
  border-radius: 8px;
  margin-bottom: 1rem;
  box-shadow: 0 1px 4px rgba(0, 58, 255, 0.1);
  font-family: 'Georgia', serif;
}

.collapsible-trigger .fa-chevron-down {
  transition: transform 0.3s ease;
}

.collapsible-profile-details.active .collapsible-trigger .fa-chevron-down {
  transform: rotate(180deg);
}

.collapsible-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}

.collapsible-profile-details.active .collapsible-content {
  max-height: 1000px; /* Adjust if content is taller */
  transition: max-height 0.5s ease-in;
}

.oliver-about-right {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.oliver-about-tabs {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.oliver-about-tab-btn {
  background: none;
  border: none;
  padding: 0.8rem 1.5rem;
  font-size: 1rem;
  cursor: pointer;
  border-bottom: 3px solid transparent;
  transition: all 0.2s;
  color: #666;
  font-family: 'Georgia', serif;
  font-weight: 500;
}

.oliver-about-tab-btn.active, .oliver-about-tab-btn:hover {
  color: var(--primary-color);
  border-bottom-color: var(--primary-color);
}

.oliver-about-tab-content {
  display: none;
}

.active-tab {
  display: block;
}

.oliver-about-btn {
  background: var(--primary-color);
  color: #FFFFF0;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 6px;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  display: inline-block;
  font-family: 'Segoe UI', 'Liberation Sans', Arial, sans-serif;
  font-weight: 500;
}

.oliver-about-btn:hover {
  background: #0026cc;
  color: #FFFFF0;
  transform: translateY(-1px);
}

.oliver-blog-post .blog-delete-btn,
.oliver-blog-post .blog-hide-btn {
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
  margin-right: 0.5rem;
}

.oliver-blog-post .blog-delete-btn:hover,
.oliver-blog-post .blog-hide-btn:hover {
  transform: translateY(-1px);
}

.oliver-blog-passkey-bar, .oliver-blog-admin-bar {
  background: #f8f9fa;
  border: 1px solid #eee;
  padding: 1.5rem;
  border-radius: 8px;
  margin-bottom: 2rem;
  box-shadow: 0 1px 4px rgba(0, 58, 255, 0.1);
}

.oliver-blog-passkey-bar input[type="password"] {
  padding: 0.75rem;
  border: 2px solid #ddd;
  border-radius: 6px;
  font-size: 1rem;
  margin-right: 1rem;
  font-family: 'Segoe UI', 'Liberation Sans', Arial, sans-serif;
}

.oliver-blog-post-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.oliver-blog-post-form label {
  font-family: 'Georgia', serif;
  font-weight: bold;
  color: var(--primary-color);
}

.oliver-blog-post-form textarea {
  padding: 0.75rem;
  border: 2px solid #ddd;
  border-radius: 6px;
  font-size: 1rem;
  font-family: 'Segoe UI', 'Liberation Sans', Arial, sans-serif;
  resize: vertical;
  min-height: 80px;
}

.oliver-blog-post-form textarea:focus {
  outline: none;
  border-color: var(--primary-color);
}

.oliver-blog-posts-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.oliver-blog-post {
  background: #f8f9fa;
  border: 1px solid #eee;
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 1px 4px rgba(0, 58, 255, 0.1);
}

.oliver-blog-post .blog-timestamp {
  font-family: 'Segoe UI', 'Liberation Sans', Arial, sans-serif;
  font-size: 0.95em;
  color: #8b949e;
  margin-bottom: 0.5rem;
}

.oliver-blog-post .blog-text {
  font-family: 'Segoe UI', 'Liberation Sans', Arial, sans-serif;
  line-height: 1.6;
  margin-bottom: 1rem;
  color: #222;
  font-size: 1rem;
}

.oliver-blog-post .blog-admin-controls {
  margin-top: 0.5rem;
}

.oliver-blog-post .oliver-about-btn {
  margin-top: 0.5rem;
}

.blog-no-posts,
.blog-error {
  font-family: 'Segoe UI', 'Liberation Sans', Arial, sans-serif;
  color: #8b949e;
  text-align: center;
  padding: 2rem;
  font-size: 1rem;
}

.blog-error {
  color: #ff5555;
}

@media (max-width: 900px) {
  .oliver-about-card {
    flex-direction: column;
    padding: 2rem 1.5rem;
    gap: 2rem;
    margin: 0 1rem;
  }
  .oliver-about-left {
    min-width: auto;
    max-width: none;
    align-items: stretch;
  }
  .oliver-about {
    padding: 5rem 0 3rem 0;
  }
  .oliver-about-banner {
    height: 100px;
  }
  .oliver-about-profile-pic {
    width: 100px;
    height: 100px;
    bottom: -50px;
  }
  .oliver-about-name {
    font-size: 1.8rem;
  }
  .oliver-about-section {
    margin-bottom: 1rem;
  }
  .oliver-about-right {
    min-width: 0;
  }
}

@media (max-width: 600px) {
  .oliver-about {
    padding: 4.5rem 0.5rem 2rem 0.5rem;
  }
  .oliver-about-card {
    padding: 1.5rem 1rem;
    gap: 1.5rem;
    margin: 0;
  }
  .oliver-about-left {
    gap: 1.5rem;
  }
  .oliver-about-profile-pic {
    width: 80px;
    height: 80px;
    bottom: -40px;
  }
  .oliver-about-name {
    font-size: 1.5rem;
  }
  .oliver-about-section-title {
    font-size: 1rem;
  }
  .oliver-about-section-content {
    font-size: 0.95rem;
  }
  .oliver-about-tabs-wrapper {
    margin-bottom: 1.5rem;
  }
  .oliver-about-right {
    min-width: 0;
  }
  .oliver-about-tabs {
    flex-direction: row;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    background: #f8f9fa;
    border-radius: 8px;
    padding: 0.3rem;
    box-shadow: 0 1px 4px rgba(0, 58, 255, 0.1);
    display: flex;
    width: 100%;
    justify-content: space-between;
    box-sizing: border-box;
  }
  .oliver-about-tab-btn {
    text-align: center;
    padding: 0.8rem 1rem;
    border-bottom: none;
    border-radius: 6px;
    font-size: 0.95rem;
    font-weight: 600;
    flex: 1 1 0;
    position: relative;
    margin: 0;
    min-width: 0;
    box-sizing: border-box;
    transition: all 0.2s ease;
  }
  .oliver-about-tab-btn.active {
    background: var(--primary-color);
    color: #FFFFF0;
    border-bottom-color: transparent;
    box-shadow: 0 2px 8px rgba(0, 58, 255, 0.3);
  }
  .oliver-about-tab-btn:not(.active):hover {
    background: rgba(0, 58, 255, 0.1);
    color: var(--primary-color);
  }
  .oliver-about-tabs-desktop { display: none !important; }
  .oliver-about-tabs-mobile { display: flex !important; }
  .collapsible-trigger {
    padding: 1rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    margin-bottom: 1rem;
    background: #f8f9fa;
    border: 1px solid #eee;
    box-shadow: 0 1px 4px rgba(0, 58, 255, 0.1);
    font-family: 'Georgia', serif;
  }
  .collapsible-trigger .fa-chevron-down {
    font-size: 1.2rem;
  }
  .collapsible-profile-details.active .collapsible-trigger .fa-chevron-down {
    transform: rotate(180deg);
  }
  .collapsible-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
  }
  .collapsible-profile-details.active .collapsible-content {
    max-height: 1000px;
    transition: max-height 0.5s ease-in;
  }
}

@media (min-width: 601px) {
  .oliver-about-tabs-mobile { display: none !important; }
  .oliver-about-tabs-desktop { display: flex !important; }
  .collapsible-trigger {
    font-family: 'Georgia', serif;
  }
  .collapsible-content {
    max-height: none;
    overflow: visible;
  }
}

.other-links-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.other-link-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1rem;
  background: #f8f9fa;
  border: 1px solid #eee;
  border-radius: 8px;
  text-decoration: none;
  color: var(--primary-color);
  transition: all 0.2s;
  font-family: 'Segoe UI', 'Liberation Sans', Arial, sans-serif;
}

.other-link-item:hover {
  background: var(--primary-color);
  color: #FFFFF0;
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(0, 58, 255, 0.2);
}

.other-link-item i {
  font-size: 1.2rem;
} 