/* ===== RESET & BASE ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Courier New', 'Courier', monospace;
  font-size: 16px;
  line-height: 1.7;
  letter-spacing: -1px;
  color: #1a1a2e;
  background-color: #d4e3fc;
  margin: 0;
  padding: 0;
  width: 100%;
}


/* ===== NAVIGATION ===== */
nav {
  width: 100vw;
  margin: 0;
  padding: 10px 0px;
  background-color: rgba(74, 111, 165, 0.15);
  border-bottom: 1px solid #4a6fa5;
  box-sizing: border-box;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 30px;
  justify-content: center;
  margin: 0;
  padding: 0;
}

nav a {
  color: #1a3a6b;
  text-decoration: none;
  font-weight: normal;
  font-size: 1em;
  letter-spacing: 0.5px;
  padding: 8px 16px;
  border-radius: 4px;
  transition: background-color 0.2s, color 0.2s;
  
}

nav a:hover {
  background-color: #a1c2ff;
  color: #2d5d9e;
  text-decoration: none;
}

/* ===== MAIN CONTENT CONTAINER ===== */
main {
  max-width: 680px;
  margin: 0 auto;
  padding: 30px 30px 60px;
}

/* ===== CONTENT BOXES===== */
.content-box {
  background-color: #fff;
  padding: 30px;
  margin-bottom: 25px;
  border: 2px solid #4a6fa5;
  border-radius: 4px;
  box-shadow: 3px 3px 0px rgba(26, 58, 107, 0.2);
}

.content-box h2 {
  margin-top: 0;
}

.header-box {
  background-color: #fff;
  padding: 20px 30px;
  margin-bottom: 30px;
  border: 2px solid #4a6fa5;
  border-radius: 4px;
  box-shadow: 3px 3px 0px rgba(26, 58, 107, 0.2);
}

.header-box h1 {
  margin: 0;
}

/* ===== TYPOGRAPHY ===== */
h1 {
  font-size: 2.2em;
  margin-bottom: 0.3em;
  line-height: 1.2;
  color: #1a3a6b;
  font-weight: bold;
}

h2 {
  font-size: 1.4em;
  margin-top: 2em;
  margin-bottom: 0.8em;
  color: #2d5d9e;
  border-left: 4px solid #4a6fa5;
  padding-left: 12px;
}

h3{
  font-size: 1.1em;
  color:#5c82bc;
  padding-left: 14px;
}

h3 em {
  color:#5c82bc;
}

p {
  margin-bottom: 1.2em;
}

em {
  color: #5a5a6e;
  font-style: italic;
}

strong {
  color: #1a3a6b;
}

q {
  color:#8b8b97;
  border-left: 2px solid #2f2f2f;
  padding-left: 16px;
}

/* ===== LINKS ===== */
a {
  color: #2d5d9e;
  text-decoration: none;
  border-bottom: 1px dotted #4a6fa5;
}

a:hover {
  color: #1a3a6b;
  border-bottom: 1px solid #1a3a6b;
}

/* ===== MAIN CONTENT BOX ===== */
body>h1,
body>p,
article {
  background-color: #fff;
  padding: 30px;
  border: 2px solid #4a6fa5;
  border-radius: 4px;
  margin-bottom: 30px;
  box-shadow: 3px 3px 0px #1a3a6b;
}


/* ===== ARTICLE STYLING ===== */
article header {
  margin-bottom: 2em;
  padding-bottom: 1.5em;
  border-bottom: 2px solid #d4e3fc;
}

article header h1 {
  margin-top: 0;
  margin-bottom: 0.4em;
}

article header p {
  margin-bottom: 0.3em;
}

article section {
  margin-bottom: 2em;
}


/* ===== LISTS (for writing.html) ===== */
ul {
  list-style-position: inside;
  margin-bottom: 1em;
}

li {
  margin-bottom: 0.5em;
}


/* ===== WRITING PAGE HEADER BOX ===== */
.page-intro {
  background-color: #fff;
  padding: 20px 30px;
  margin-bottom: 30px;
  border: 2px solid #4a6fa5;
  border-radius: 4px;
  box-shadow: 3px 3px 0px rgba(26, 58, 107, 0.2);
}

.page-intro h1 {
  margin: 0 0 0.3em 0;
}

.page-intro p {
  margin: 0;
  color: #5a5a6e;
}

/* ===== RECENT POSTS ===== */
.recent-posts {
  background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
  padding: 25px 30px;
  margin-bottom: 35px;
  border-left: 6px solid #1a3a6b;
  border-radius: 4px;
  box-shadow: 2px 2px 8px rgba(26, 58, 107, 0.15);
}

.recent-posts h2 {
  margin-top: 0;
  border-left: none;
  padding-left: 0;
  color: #1a3a6b;
}

.recent-posts ul {
  list-style: none;
  padding-left: 0;
}

.recent-posts li {
  padding: 10px 0;
  border-bottom: 1px dashed rgba(74, 111, 165, 0.3);
}

.recent-posts li:last-child {
  border-bottom: none;
}

/* ===== CATEGORY CARDS ===== */
.category-card {
  background-color: #fff;
  padding: 25px 30px;
  margin-bottom: 25px;
  border: 3px solid #4a6fa5;
  border-radius: 6px;
  box-shadow: 4px 4px 0px #1a3a6b;
  transition: transform 0.2s, box-shadow 0.2s;
}

.category-card:hover {
  transform: translateY(-3px);
  box-shadow: 6px 6px 0px #1a3a6b;
}

.category-card h2 {
  margin-top: 0;
  border-left: none;
  padding-left: 0;
  color: #1a3a6b;
  font-size: 1.6em;
}

.category-card ul {
  list-style: none;
  padding-left: 0;
}

.category-card li {
  padding: 12px 0;
  border-bottom: 1px solid rgba(74, 111, 165, 0.2);
}

.category-card li:last-child {
  border-bottom: none;
}

.category-card strong{
  color: #5a5a6e;
  font-family: 'Courier New', 'Courier', monospace;
  font-size: 0.9em;
}

/* ===== COMING SOON styling ===== */

.category-card .coming-soon {
  color: #999;
  font-style: italic;
}

/* ===== FOOTER STYLING ===== */
footer {
  margin-top: 3em;
  padding-top: 1.5em;
  border-top: 2px solid rgba(74, 111, 165, 0.3);
  font-size: 0.9em;
  color: #5a5a6e;
  text-align: center;
}

/* ===== SCRAPBOOK PAGE STYLES ===== */

/* Layout */
.scrapbook-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 25px;
  align-items: start;
}

/* On mobile, stack into single column */
@media (max-width: 600px) {
  .scrapbook-layout {
    grid-template-columns: 1fr;
  }
}


/* Base card style */
.scrapbook-card {
  padding: 25px 30px;
  margin-bottom: 25px;
  border-radius: 6px;
}

/* Currently - Light blue gradient */
.scrapbook-card.currently {
  background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
  border-left: 6px solid #1a3a6b;
  box-shadow: 2px 2px 8px rgba(26, 58, 107, 0.15);
}

/* Brain Scratchers - White with thick border */
.scrapbook-card.brain-scratchers {
  background-color: #fff;
  border: 3px solid #4a6fa5;
  box-shadow: 4px 4px 0px #1a3a6b;
}

/* Media Recs - Soft yellow/cream */
.scrapbook-card.media-recs {
  background-color: #fffbf0;
  border: 2px dashed #4a6fa5;
}

/* Quotes - Minimal with left accent bar */
.scrapbook-card.quotes {
  background-color: rgba(255, 255, 255, 0.9);
  border-left: 8px solid #2d5d9e;
  font-style: italic;
  padding-left: 40px;
}

/* Photos/Moments - No border, just subtle shadow */
.scrapbook-card.photos {
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  padding: 20px;
}

/* Small Moments - Handwritten feel */
.scrapbook-card.moments {
  background-color: #fff9e6;
  border: 1px solid #d4c5a9;
  border-radius: 4px;
  box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.1);
  font-family: 'Papyrus', cursive;
}

/* Questions - Highlighted style */
.scrapbook-card.questions {
  background: linear-gradient(to right, #fff 0%, #e8f0fe 100%);
  border-top: 3px solid #4a6fa5;
  border-bottom: 3px solid #4a6fa5;
}

.scrapbook-card ul {
  list-style: none;
  padding-left: 0;
}

.scrapbook-card li {
  margin-bottom: 0.8em;
  line-height: 1.6;
}

.scrapbook-card li:before {
  content: "• ";
  color: #4a6fa5;
  font-weight: bold;
  margin-right: 8px;
}

/* Star ratings */
.stars {
  color: #f4b400;
  letter-spacing: 2px;
}

/* Quote styling */
.scrapbook-card.quotes p {
  font-size: 1.1em;
  line-height: 1.7;
  margin-bottom: 0.5em;
}

.scrapbook-card.quotes cite {
  display: block;
  text-align: right;
  font-size: 0.9em;
  color: #5a5a6e;
  margin-top: 1em;
}








/* ===== MEDIA GRID ===== */
.media-grid-card {
  background-color: #fff;
  border: 2px solid #4a6fa5;
  border-radius: 6px;
  box-shadow: 4px 4px 0px #1a3a6b;
}

.media-label {
  font-size: 0.85em;
  color: #5a5a6e;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 1.5em;
  margin-bottom: 0.8em;
  border-bottom: 1px solid rgba(74, 111, 165, 0.2);
  padding-bottom: 5px;
}

.media-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* 4 columns on desktop */
  gap: 8px;
  margin-bottom: 1em;
}

.media-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}

.media-item img {
  width: 100%;
  aspect-ratio: 2/3; 
  object-fit: cover;
  border-radius: 3px;
  border: 1px solid rgba(74, 111, 165, 0.3);
  transition: transform 0.2s, box-shadow 0.2s;
}

.media-item img:hover {
  transform: scale(1.05);
  box-shadow: 2px 2px 8px rgba(26, 58, 107, 0.3);
}

.media-title {
  font-size: 0.7em;
  text-align: center;
  color: #5a5a6e;
  line-height: 1.3;
}

/* Mobile: 3 columns on small screens */
@media (max-width: 480px) {
  .media-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ===== SOCIAL BADGES ===== */
.socials-card {
  background-color: #fff;
  border: 2px solid #4a6fa5;
  border-radius: 6px;
  box-shadow: 4px 4px 0px #1a3a6b;
}

.social-badges {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 0.5em;
}

.badge {
  display: inline-block;
  padding: 8px 18px;
  border-radius: 20px; 
  font-size: 0.85em;
  font-weight: bold;
  text-decoration: none;
  border: none;
  transition: transform 0.2s, opacity 0.2s;
}

.badge:hover {
  transform: translateY(-2px);
  opacity: 0.9;
  border-bottom: none;
}

.badge-instagram {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  color: white;
}

.badge-letterboxd {
  background-color: #2c3440;
  color: #00c030; 
}

.badge-passportdex {
  background-color: #000000;
  color: #FFFFFF;
  display: inline-block;
  padding: 0.4rem 1.2rem;\
  border-radius: 999px;
}

/* ===== FIGURES / CHARTS ===== */
figure {
  margin: 1.8em 0;
  text-align: center;
}

figure img {
  max-width: 100%;
  border: 1px solid #c5d8f7;
  border-radius: 4px;
  box-shadow: 2px 2px 8px rgba(26, 58, 107, 0.1);
}

figcaption {
  font-size: 0.85em;
  color: #5a5a6e;
  margin-top: 0.6em;
  font-style: italic;
}


.download-block {
  background-color: #f0f5ff;
  border: 1px solid #c5d8f7;
  border-radius: 4px;
  padding: 16px 20px;
  margin: 1.5em 0;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.download-block p {
  margin: 0;
  font-size: 0.95em;
  color: #2d2d4e;
  flex: 1;
}

.download-btn {
  display: inline-block;
  padding: 9px 18px;
  background-color: #1a3a6b;
  color: #fff !important;
  border: none;
  border-bottom: none !important;
  border-radius: 4px;
  font-family: 'Courier New', monospace;
  font-size: 0.88em;
  text-decoration: none;
  white-space: nowrap;
  transition: background-color 0.2s, transform 0.1s;
  box-shadow: 2px 2px 0px rgba(26, 58, 107, 0.4);
}

.download-btn:hover {
  background-color: #2d5d9e;
  color: #fff !important;
  border-bottom: none !important;
  transform: translateY(-1px);
  box-shadow: 3px 3px 0px rgba(26, 58, 107, 0.4);
}



