@font-face {
  font-family: 'PetitFormalScript';
  src: url('../fonts/PetitFormalScript-Regular.woff2') format('woff2');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.logo {
  font-family: 'PetitFormalScript', cursive;
  font-size: 1.5rem;
  text-decoration: none;
  color: #000
}

.site-header {
display: flex;
width: 100%;
max-width: 1440px;
padding: 30px 30px 10px 10px;
justify-content: space-between;
align-items: center;
gap: 45px;
box-sizing: border-box;
margin: 0 auto;
}

.hamburger { display: none; background: none; border: none; font-size: 1.5rem; }
.mobile-nav { display: none; flex-direction: column; padding: 12px 24px; }

/* filmstrip frames */
.filmstrip-nav { display: flex; gap: 8px; }
.frame {
  width: 90px;
  height: 60px;
  background-size: cover;
  background-position: center;
  border: none;
 /* border: 1px solid #ccc; */
  position: relative;
}
.frame-label {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.85);
  opacity: 0;
  transition: opacity 0.2s ease;
  font-size: 0.75rem;
}

.tagline {
  width: 308.367px;
  transform: rotate(-0.196deg);
  flex-shrink: 0;

  color: #000;
  text-align: justify;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: lowercase;

}
.frame:hover .frame-label { opacity: 1; }

.filmstrip-nav a.active .frame-label,
.mobile-nav a.active {
  opacity: 1;
  font-weight: 600;
}

.moodboard {
  position: relative;
  width: 100%;
  height: calc(100vh - 140px); /* fills the screen below your header */
  margin: 0 auto;
}

.mb-item {
  position: absolute;
  max-width: 100%;
  height: auto;
}

.mb-photo1 { top: 10.2%; left: 12%; width: 25%; }
.mb-rabbits { top: 65%; left: 2%; width: 20%; }
.mb-book { top: 52%; left: 30%; width: 12%; }
.mb-venus { top: 52%; left: 42%; width: 14%; }
.mb-rug { top: 10%; right: 4%; width: 20%; }
.mb-arabic { top: 45%; left: 33%; width: 35%; z-index: 2; }

.blog-list {
  max-width: 700px;
  margin: 0 auto;
  padding: 40px 24px;
}

.post-entry {
  margin-bottom: 48px;
  border-bottom: 1px solid #eee;
  padding-bottom: 24px;
}

.post-title {
  font-family: 'PetitFormalScript', cursive;
  font-size: 1.8rem;
  color: #6b6b1f;
  margin: 0;
}

.post-date {
  font-size: 0.85rem;
  color: #999;
  margin: 8px 0 12px 0;
}

.post-body {
  text-align: justify;
  line-height: 1.6;
}

.post-body.clamped {
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.read-more-btn {
  display: none;
  margin-top: 8px;
  background: none;
  border: none;
  color: #6b6b1f;
  text-decoration: underline;
  cursor: pointer;
  font-size: 0.85rem;
  padding: 0;
}

.about-page {
  display: flex;
  gap: 60px;
  max-width: 1200px;
  margin: 60px auto;
  padding: 0 24px;
  align-items: flex-start;
}

.about-photos {
  display: flex;
  flex-direction: column;
  width: 420px;
  flex-shrink: 0;
}

.about-photo {
  width: 100%;
  height: auto;
  display: block;
}

.about-text {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.about-heading {
  font-family: 'PetitFormalScript', cursive;
  font-size: 2rem;
  color: #4b1a6b;
  margin: 0 0 8px 0;
}

.about-block p {
  text-align: justify;
  line-height: 1.6;
  font-size: 1.1rem;
  margin: 0;
}

.sep {
  color: #999;
  margin: 0 4px;
}

.gallery-list {
  max-width: 600px;
  margin: 60px auto;
  padding: 0 24px;
}

.gallery-item {
  margin: 0 0 40px 0;
  border: 1px solid #000;
}

.gallery-item img {
  width: 100%;
  height: auto;
  display: block;
  border-bottom: 1px solid #000;
}

.gallery-item figcaption {
  font-family: 'PetitFormalScript', cursive;
  font-size: 1.3rem;
  padding: 10px 16px;
  color: #000;
}

.media-list {
  max-width: 600px;
  margin: 60px auto;
  padding: 0 24px;
}

.media-item {
  border: 1px solid #000;
  margin-bottom: 40px;
}

.media-item img {
  width: 100%;
  height: auto;
  display: block;
}

.media-text {
  border-top: 1px solid #000;
  padding: 16px;
}

.media-text p {
  text-align: justify;
  line-height: 1.6;
  margin: 0;
}

.letterboxd-link {
  display: inline-block;
  margin-top: 12px;
  font-size: 0.85rem;
  color: #00a55e; /* letterboxd's brand green, optional touch */
  text-decoration: underline;
}

.mb-swirl {
  position: absolute;
  z-index: 0; /* sits behind the photos */
  pointer-events: none; /* decorative only, doesn't block clicks */
}

.mb-swirl-bottom {
  bottom: -5%;
  right: 0;
  width: 45%;
}

.mb-swirl-top {
  display: none; /* hidden on desktop, only used on mobile */
}

.mb-item {
  z-index: 1; /* photos sit above the swirl */
}

@media (max-width: 767px) {
  .filmstrip-nav { display: none; }

  .site-header {
  flex-wrap: wrap;
  }

  
  .logo { order: 1; }
  .hamburger { display: block; order: 2; }

  
  .tagline {
    order: 3;
    width: 100%;
    transform: none;
    padding: 8px 16px 0;
    font-size: 0.9rem;
  }

  .mobile-nav.open { display: flex; }


  .mb-swirl-top {
    display: block;
    top: 5%;
    left: 5%;
    width: 25%;
  }

  .mb-swirl-bottom {
    bottom: 2%;
    right: 8%;
    width: 30%;
  }

  .about-page {
    flex-direction: column;
    gap: 32px;
  }

  .about-photos {
    width: 100%;
  }
}
