.heading {
  font-family: 'Montserrat', sans-serif;
  font-size: 21px;
  letter-spacing: 1.5px;
  color: #333333;
}

.subheading {
  font-family: 'Open Sans', sans-serif;
  font-size: 20px;
  color: #777777;
}

.nav-menu {
    text-align: center;
    padding: 2vh;
}

/* Default (smaller) navigation for regular pages */
.nav-link {
    color: #FFA500;
    text-decoration: none;
    margin: 0 1.5vw;  /* slightly tighter margins too */
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-weight: 700;
    font-size: 1.2rem;  /* smaller base size for regular pages */
}

/* Larger navigation for homepage */
.home-page .nav-link {
    font-size: 2.5vw; 
}

.bracket {
    color: #342151;
    font-size: 0.7em;  
}

/* Keep your existing hover effect */
.nav-link:hover {
    color: white;
    text-shadow: 0 0 10px #FFA500;
    transform: scale(1.1);
}

/* Make sure brackets stay grey on hover */
.nav-link:hover .bracket {
    color: #374151;
    text-shadow: none;
}

/* Your existing media queries */
@media (min-width: 768px) {
    .nav-link {
       font-size: 1rem;  /* even smaller on desktop for regular pages */
	    
    }

   .home-page .nav-link {
        font-size: 2.5vw;  /* your original desktop size for homepage */
    }
}

@media (max-width: 768px) {
    .nav-link {
	font-size 0.9rem;
        display: block;
        margin-bottom: 3vh;
    }
    .nav-menu {
        display: flex;
        flex-wrap: wrap;  /* Let items wrap naturally */
        justify-content: center;
        gap: 1.5vh 2vw;  /* Space between items */
        padding: 1vh;
    }    
}

html, body {
  overflow-x: hidden;
}

* {
  box-sizing: border-box;
}

/* Responsive images in post content (cover, etc) */
.post-content img, .prose img, .story-content img, .post-body img {
    max-width: 100%;
    height: auto;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

/* DEBUG: Make all images responsive everywhere */
img {
    max-width: 100% !important;
    height: auto !important;
    display: block !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

/* Force images inside paragraphs to be responsive for Markdown */
p > img {
    max-width: 100vw !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

/* Prevent post content containers from overflowing on mobile */
/* Main content column for readable text */
.prose, .post-content, .story-content, .post-body, article {
  max-width: 40rem;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
  box-sizing: border-box;
}
@media (max-width: 600px) {
  .prose, .post-content, .story-content, .post-body, article {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }
}

/* Cover image styling for shortcode */
.cover-image-wrapper {
  max-width: 600px;
  width: 100%;
  margin: 0.5rem auto 0.25rem auto;
  box-sizing: border-box;
  padding-left: 0;
  padding-right: 0;
}
.cover-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 0.5rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

/* (Removed aggressive container rule for mobile) */
