@charset "UTF-8";
/* Reset and base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box; }

html {
  font-size: 16px;
  line-height: 1.6; }

body {
  font-family: 'Barlow', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-weight: 400;
  color: #000;
  background-color: #fff;
  overflow-x: hidden;
  overflow-y: scroll;
  /* Always show vertical scrollbar */ }

/* Container */
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px; }

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 1rem; }

h1 {
  font-size: 2.5rem; }

h2 {
  font-size: 2rem; }

h3 {
  font-size: 1.5rem; }

p {
  margin-bottom: 1.5rem; }

a {
  color: #000;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-bottom-color 0.3s ease; }

a:hover {
  border-bottom-color: #000; }

/* Header */
.site-header {
  padding: 1.5rem 0;
  margin-bottom: 3rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  width: 100%; }

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1400px; }

.site-brand {
  flex-shrink: 0; }

.site-brand a {
  border-bottom: none !important; }

.site-brand a:hover {
  border-bottom: none !important; }

.site-logo-text {
  font-family: 'Barlow', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: #000;
  letter-spacing: 0.15em;
  transition: all 0.3s ease;
  display: inline-block; }

.site-logo-text:hover {
  transform: scale(1.05);
  color: #333; }

.site-logo {
  height: 40px;
  width: auto;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease; }

.site-logo:hover {
  transform: scale(1.05); }

.site-nav {
  display: flex;
  gap: 2rem;
  justify-content: center; }

.site-nav a {
  font-weight: 500;
  font-size: 1.1rem;
  padding: 0.5rem 0;
  border-bottom: none !important; }

.site-nav a:hover {
  border-bottom: none !important; }

/* Main content */
.site-content {
  min-height: calc(100vh - 200px);
  margin-bottom: 3rem;
  text-align: center; }

.site-content .container {
  text-align: left; }

/* Featured Posts Grid */
.featured-posts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto; }

.featured-post {
  border-radius: 12px;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06); }

.featured-post:hover {
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
  transform: translateY(-2px); }

.featured-post .post-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
  background-color: #f5f5f5; }

.featured-post .post-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease; }

.featured-post:hover .post-image img {
  transform: scale(1.05); }

.featured-post .post-content {
  padding: 16px 1rem 1rem 1rem; }

.featured-post .post-content h2 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  line-height: 1.3; }

.featured-post .post-content h2 a {
  border: none; }

.featured-post .post-content h2 a:hover {
  border: none;
  opacity: 0.7; }

.featured-post .post-content .post-meta {
  margin-bottom: 1rem; }

.featured-post .post-content .post-date {
  font-size: 0.85rem;
  color: #666;
  margin-bottom: 0;
  display: inline; }

.featured-post .post-content .reading-time {
  font-size: 0.85rem; }

.featured-post .post-content .post-excerpt {
  color: #333;
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 1rem; }

.read-more {
  font-weight: 500;
  font-size: 0.9rem;
  color: #000;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-bottom-color 0.3s ease; }

.read-more:hover {
  border-bottom-color: #000; }

/* More Posts Section */
.more-posts {
  margin-top: 3rem;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto; }

.more-posts h2 {
  font-size: 1.8rem;
  margin-bottom: 2rem;
  padding-bottom: 0.5rem; }

/* Posts list */
.posts-list {
  list-style: none; }

.post-item {
  margin-bottom: 2.5rem;
  padding-bottom: 2rem;
  padding: 1.5rem;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.04);
  transition: box-shadow 0.3s ease; }

.post-item-content {
  display: flex;
  gap: 1rem;
  align-items: flex-start; }

.post-item-image {
  flex-shrink: 0;
  width: 120px;
  height: 80px;
  border-radius: 6px;
  overflow: hidden; }
  .post-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease; }

.post-item-text {
  flex: 1;
  min-width: 0; }

.post-item:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08); }
  .post-item:hover .post-item-image img {
    transform: scale(1.05); }

.post-item:last-child {
  margin-bottom: 0; }

.post-item h2 {
  margin-bottom: 0.5rem; }

.post-item h2 a {
  border: none; }

.post-item h2 a:hover {
  border: none;
  opacity: 0.7; }

.post-date {
  font-size: 0.9rem;
  color: #666; }

/* Post list specific styles */
.post-item .post-meta {
  margin-bottom: 1rem; }

.post-item .post-date {
  margin-bottom: 0;
  display: inline; }

.post-excerpt {
  color: #333; }

.post-item h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem; }

.post-item h3 a {
  border: none; }

.post-item h3 a:hover {
  border: none;
  opacity: 0.7; }

/* Pagination */
.pagination {
  margin-top: 2rem;
  text-align: center; }

.view-all {
  display: inline-block;
  padding: 0.8rem 1.5rem;
  background-color: #000;
  color: #fff;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 500;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15); }

.view-all:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
  transform: translateY(-1px);
  border-bottom: none; }

/* Archive page styles */
.archive-list {
  max-width: none; }

.archive-list .post-item {
  margin-bottom: 2rem;
  padding: 1.5rem;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.04);
  transition: box-shadow 0.3s ease; }

.archive-list .post-item:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08); }

/* Individual post */
.post {
  margin-bottom: 3rem; }

.post-header {
  margin-bottom: 2.5rem;
  padding-bottom: 1.5rem; }

.post-title {
  font-size: 2.5rem;
  margin-bottom: 0.5rem; }

.post-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap; }

.post-date {
  font-size: 0.9rem;
  color: #666; }

.reading-time {
  font-size: 0.9rem;
  color: #888;
  font-weight: 500; }

.reading-time::before {
  content: "•";
  margin-right: 0.5rem;
  color: #ccc; }

.post-content {
  font-size: 1.1rem;
  line-height: 1.7; }

.post-content h2 {
  margin-top: 2.5rem;
  margin-bottom: 1rem; }

.post-content h3 {
  margin-top: 2rem;
  margin-bottom: 0.8rem; }

.post-content ul, .post-content ol {
  margin-bottom: 1.5rem;
  padding-left: 2rem; }

.post-content li {
  margin-bottom: 0.5rem; }

.post-content blockquote {
  padding-left: 1.5rem;
  margin: 2rem 0;
  font-style: italic;
  background: rgba(0, 0, 0, 0.02);
  border-radius: 8px;
  padding: 1rem 1.5rem;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04); }

.post-content code {
  background-color: rgba(0, 0, 0, 0.04);
  padding: 0.3rem 0.6rem;
  border-radius: 6px;
  font-family: 'Courier New', monospace;
  font-size: 0.9rem;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04); }

.post-content pre {
  background-color: rgba(0, 0, 0, 0.04);
  padding: 1.5rem;
  border-radius: 12px;
  overflow-x: auto;
  margin: 1.5rem 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06); }

.post-content pre code {
  background: none;
  padding: 0; }

/* Post navigation */
.post-navigation {
  display: flex;
  justify-content: space-between;
  margin-top: 3rem;
  padding-top: 2rem; }

.prev-post, .next-post {
  font-weight: 500; }

.next-post {
  margin-left: auto; }

/* Individual post page images only (No animations, only parallax) */
article.post .post-content img {
  display: block;
  margin: 2rem auto;
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  opacity: 1;
  transform: none; }

/* Image subtitles for individual posts */
article.post .post-content p em {
  display: block;
  text-align: center;
  font-style: italic;
  color: #666;
  font-size: 0.9rem;
  margin-top: -1rem;
  margin-bottom: 2rem;
  line-height: 1.4;
  opacity: 1;
  transform: none; }

/* Image followed by em styling */
article.post .post-content p:has(img) + p em {
  margin-top: -1.5rem; }

/* Responsive design */
@media (max-width: 768px) {
  .container {
    padding: 0 20px; }

  .site-header .container {
    flex-direction: column;
    gap: 1rem; }

  .site-nav {
    flex-direction: column;
    gap: 1rem;
    align-items: center; }

  .post-title {
    font-size: 2rem; }

  h1 {
    font-size: 2rem; }

  h2 {
    font-size: 1.5rem; }

  .post-navigation {
    flex-direction: column;
    gap: 1rem; }

  .next-post {
    margin-left: 0; }

  /* Grid adjustments for mobile */
  .featured-posts-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 3rem; }

  .featured-post .post-content {
    padding: 16px 1rem 1rem 1rem; }

  .featured-post .post-content h2 {
    font-size: 1.2rem; }

  .more-posts h2 {
    font-size: 1.5rem; }

  .post-item-content {
    flex-direction: column;
    gap: 0.75rem; }

  .post-item-image {
    width: 100%;
    height: 160px;
    order: -1; }

  .post-item-text {
    width: 100%; } }
/* Fullscreen Image Modal */
.image-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease; }

.image-modal.active {
  opacity: 1;
  visibility: visible; }

.modal-backdrop {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  cursor: pointer; }

.modal-content {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  box-sizing: border-box; }

.modal-image {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5); }

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(255, 255, 255, 0.9);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 24px;
  font-weight: bold;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease, transform 0.2s ease;
  color: #000;
  line-height: 1; }

.modal-close:hover {
  background: white;
  transform: scale(1.1); }

/* Mobile adjustments for modal */
@media (max-width: 768px) {
  .modal-content {
    padding: 1rem; }

  .modal-close {
    top: 0.5rem;
    right: 0.5rem;
    width: 36px;
    height: 36px;
    font-size: 20px; } }
/* Profile Section */
.profile-section {
  max-width: 800px;
  margin: 0 auto; }

.profile-header {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-bottom: 3rem;
  padding: 2rem;
  background: #f9f9f9;
  border-radius: 12px; }

.profile-image {
  flex-shrink: 0; }

.profile-photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15); }

.profile-info {
  flex: 1; }

.profile-name {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #000; }

.profile-title {
  font-size: 1.2rem;
  color: #666;
  margin-bottom: 1rem;
  font-weight: 500; }

.profile-contact {
  margin-top: 1rem; }

.contact-item {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: #fff;
  border-radius: 8px;
  border: 1px solid #ddd;
  text-decoration: none;
  color: #000;
  font-weight: 500;
  transition: all 0.3s ease; }

.contact-item:hover {
  background: #000;
  color: #fff;
  border-color: #000; }

.contact-icon {
  font-size: 1.1rem; }

.social-links {
  margin-bottom: 3rem; }

.social-links h3 {
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
  font-weight: 600;
  text-align: center; }

.social-icons-container {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap; }

.social-icon-link {
  text-decoration: none;
  transition: transform 0.3s ease;
  border-bottom: none !important; }

.social-icon-link:hover {
  transform: translateY(-3px);
  border-bottom: none !important; }

.social-icon-circle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1); }

.social-icon-circle svg {
  width: 28px;
  height: 28px; }

.social-logo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%; }

.social-icon-circle.email {
  background: #ea4335;
  color: white; }

.social-icon-circle.email:hover {
  background: #d33b2c;
  box-shadow: 0 6px 20px rgba(234, 67, 53, 0.3); }

.social-icon-circle.goodreads {
  background: transparent;
  overflow: hidden; }

.social-icon-circle.goodreads:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2); }

.social-icon-circle.letterboxd {
  background: transparent;
  overflow: hidden; }

.social-icon-circle.letterboxd:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2); }

.social-icon-circle.spotify {
  background: transparent;
  overflow: hidden; }

.social-icon-circle.spotify:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2); }

.social-icon-circle.bluesky {
  background: transparent;
  overflow: hidden; }

.social-icon-circle.bluesky:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2); }

.profile-content {
  line-height: 1.8; }

.profile-content h2 {
  margin-top: 2rem;
  margin-bottom: 1rem;
  font-size: 2rem;
  font-weight: 600; }

.profile-content h3 {
  margin-top: 2rem;
  margin-bottom: 1rem;
  font-size: 1.5rem;
  font-weight: 600; }

.profile-content p {
  margin-bottom: 1.5rem;
  color: #333; }

/* Responsive adjustments for profile */
@media (max-width: 1024px) {
  .social-icons-container {
    gap: 1.2rem; }

  .social-icon-circle {
    width: 55px;
    height: 55px; }

  .social-icon-circle svg {
    width: 26px;
    height: 26px; } }
@media (max-width: 768px) {
  .profile-header {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem; }

  .profile-photo {
    width: 100px;
    height: 100px; }

  .profile-name {
    font-size: 2rem; }

  .social-icons-container {
    gap: 1rem; }

  .social-icon-circle {
    width: 45px;
    height: 45px; }

  .social-icon-circle svg {
    width: 22px;
    height: 22px; } }
@media (max-width: 480px) {
  .social-icons-container {
    gap: 0.8rem; }

  .social-icon-circle {
    width: 40px;
    height: 40px; }

  .social-icon-circle svg {
    width: 20px;
    height: 20px; } }
