/* CSS Reset and base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    background: white;
    margin: 0;
    padding: 40px 20px;
    color: #666666;
    line-height: 1.4;
    font-size: 16px; /* Explicit base font size */
}
.container {
    max-width: 800px;
    margin: 0 auto;
}
.header {
    text-align: left;
    margin-bottom: 40px;
}
.name {
    font-size: 1.8rem;
    font-weight: bold;
    font-style: italic;
    letter-spacing: 4px;
    margin-bottom: 10px;
    color: #ff1493;
    line-height: 1.2;
}
.location {
    font-size: 1rem;
    margin-bottom: 5px;
    color: #cccccc;
    line-height: 1.2;
}
.year {
    font-size: 1rem;
    margin-bottom: 5px;
    color: #cccccc;
    line-height: 1.2;
}
.email {
    font-size: 1em;
    margin-bottom: 30px;
    color: #cccccc;
    line-height: 1.2;
}
.section {
    margin-bottom: 35px;
}
.section-title {
    font-size: 1.1rem;
    font-weight: bold;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    user-select: none;
    position: relative;
    padding-right: 20px;
    transition: color 0.3s ease;
}
.section-title:hover {
    color: #888888;
}
.section-title::after {
    content: '−';
    position: absolute;
    right: 0;
    top: 0;
    font-weight: normal;
    transition: transform 0.3s ease;
}
.section-title.collapsed::after {
    content: '+';
}
.section-content {
    overflow: hidden;
    transition: max-height 0.3s ease;
}
.section-content.collapsed {
    max-height: 0;
}
.entry {
    margin-bottom: 15px;
}
.entry-year {
    font-weight: bold;
    margin-right: 10px;
}
.entry-title {
    font-weight: bold;
}
.entry-details {
    margin-left: 0;
}
.sub-entry {
    margin-left: 20px;
    margin-top: 5px;
    font-size: 0.95rem;
}
.venue {
    font-style: italic;
}
.parenthetical {
    color: #bbbbbb;
    font-style: italic;
    font-size: 0.9rem;
}
.bio-text {
    font-size: 0.9rem;
    line-height: 1.6;
}
a {
    color: #666666;
    text-decoration: underline;
}
a:hover {
    color: #888888;
}
@media (max-width: 768px) {
    .container {
        padding: 20px 10px;
    }
    .name {
        font-size: 1.5rem;
        letter-spacing: 2px;
    }
    .section-title {
        font-size: 1rem;
    }
}
.organization-toggle {
    text-align: left;
    margin-bottom: 30px;
}
.toggle-button {
    background: transparent;
    border: 1px solid #cccccc;
    padding: 8px 16px;
    margin: 0 5px 0 0;
    cursor: pointer;
    font-size: 0.9rem;
    text-transform: capitalize;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    color: #666666;
    text-decoration: none;
    display: inline-block;
    box-sizing: border-box;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    vertical-align: top;
    /* Normalize button vs anchor differences */
    line-height: normal;
    text-align: center;
    min-height: auto;
    outline: none;
}
/* Reset button-specific styles */
button.toggle-button {
    border: 1px solid #cccccc;
    background: transparent;
}
/* Reset anchor-specific styles */
a.toggle-button {
    text-decoration: none;
}
.toggle-button:hover {
    background: #f5f5f5;
    color: #666666;
    text-decoration: none;
}
.toggle-button.active {
    background: transparent;
    color: #666666;
    border-color: #666666;
}
.year-view {
    display: none;
}
.category-view {
    display: block;
}
.year-section {
    margin-bottom: 25px;
}
.year-title {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 10px;
    color: #666666;
    border-bottom: 1px solid #eeeeee;
    padding-bottom: 5px;
}
.year-entries {
    margin-left: 0;
}
.year-entry {
    margin-bottom: 8px;
    font-size: 0.95rem;
}
.year-entry-category {
    color: #888888;
    font-style: italic;
    margin-right: 8px;
    font-size: 0.85rem;
}
.flower-icon {
    height: 5rem;
    width: 5rem;
    padding-bottom: 10px;
}

/* Blog specific styles */
.post-list {
    list-style: none;
    padding: 0;
}
.post-list li {
    margin-bottom: 30px;
}
.post-list a {
    color: #666666;
    text-decoration: underline;
    font-size: 1.1rem;
}
.post-list a:hover {
    color: #888888;
}
.post-meta {
    color: #cccccc;
    font-size: 0.9rem;
}
.post, .page {
    margin-bottom: 50px;
}
.post-title, .page-title {
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 10px;
    color: #666666;
}
.post-content {
    line-height: 1.6;
}
.post-content h2 {
    font-size: 1.3rem;
    font-weight: bold;
    margin-top: 30px;
    margin-bottom: 10px;
    color: #666666;
}
.post-content h3 {
    font-size: 1.1rem;
    font-weight: bold;
    margin-top: 20px;
    margin-bottom: 10px;
    color: #666666;
}
.post-content p {
    margin-bottom: 15px;
}
.post-content ul, .post-content ol {
    margin-left: 20px;
    margin-bottom: 15px;
}
.post-content li {
    margin-bottom: 5px;
}
.post-content a {
    color: #666666;
    text-decoration: underline;
}
.post-content a:hover {
    color: #888888;
}
pre {
    background: #f5f5f5;
    padding: 15px;
    border-radius: 0;
    border-left: 3px solid #cccccc;
    overflow-x: auto;
    margin-bottom: 15px;
}
code {
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
    color: #666666;
}
pre code {
    background: none;
    padding: 0;
}
.site-footer {
    border-top: 1px solid #eeeeee;
    padding-top: 20px;
    margin-top: 50px;
    color: #cccccc;
    font-size: 0.9rem;
}
.footer-col-wrapper {
    display: flex;
    gap: 20px;
}
.footer-col {
    flex: 1;
}
