/* === RESET === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* === BASE === */
body {
    font-family:
        "Inter",
        -apple-system,
        BlinkMacSystemFont,
        sans-serif;
    line-height: 1.7;
    color: #2e2e2e;
    background-color: #fff8f0;
}

/* === TYPOGRAPHY === */
h1 {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 2rem;
    letter-spacing: -1px;
}

h2 {
    font-size: 1.75rem;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

h3 {
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 0.5rem;
}

p {
    margin-bottom: 1rem;
    font-size: 1.05rem;
}

a {
    color: #2e2e2e;
    text-decoration: underline;
    text-decoration-color: #ff006e;
    text-decoration-thickness: 2px;
    text-underline-offset: 3px;
}

a:hover {
    color: #ff006e;
}

time {
    font-size: 0.9rem;
    color: #666;
    font-style: italic;
}

/* === CODE BLOCKS === */
code {
    background: #f5f5f5;
    padding: 0.2rem 0.4rem;
    border-radius: 3px;
    font-family: 'Monaco', 'Courier New', monospace;
    font-size: 0.9em;
    color: #d63384;
}

pre {
    background: #f5f5f5;
    padding: 1rem;
    border-radius: 4px;
    overflow-x: auto;
    margin-bottom: 1.5rem;
    border: 1px solid #e0e0e0;
}

pre code {
    background: none;
    padding: 0;
    color: #2e2e2e;
    font-size: 0.9rem;
}

/* === MARKDOWN SYNTAX === */
.md-hash {
    color: #aaa;
    font-weight: 400;
    margin-right: 0.5rem;
    user-select: none;
}

.md-bullet {
    color: #ff006e;
    font-weight: 500;
    margin-right: 0.75rem;
    user-select: none;
}

/* === LAYOUT === */
.page-container {
    max-width: 650px;
    margin: 0 auto;
    padding: 1rem 2rem 2rem 2rem;
    position: relative;
}

/* === HERO === */
.hero {
    margin-bottom: 3rem;
    min-height: calc(100vh - 3rem);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Logo Header - Mockup #4 Style */
.logo-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 0.5rem;
}

.logo-main {
    width: 500px;
    height: 500px;
    position: relative;
    margin-bottom: 0.05rem;
}

.logo-main img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.title-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.title-overlay h1 {
    font-size: 3rem;
    font-weight: 700;
    margin: 0;
    color: #2e2e2e;
    text-shadow: 2px 2px 4px rgba(255, 248, 240, 0.8);
    letter-spacing: -1px;
    white-space: nowrap;
}

.title-overlay h1 .md-hash {
    display: inline;
}

.tagline {
    margin-bottom: 1rem;
}

.tagline h2 {
    margin-bottom: 1rem;
}

.tagline p {
    margin-bottom: 0.5rem;
    font-size: 1.05rem;
    line-height: 1.6;
}

.cta {
    display: inline-block;
    margin-top: 0.5rem;
    padding: 0.75rem 1.5rem;
    color: #2e2e2e;
    background: transparent;
    text-decoration: none;
    border: 2px solid #ff006e;
    border-radius: 4px;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.2s ease;
}

.cta:hover {
    background: #ff006e;
    color: #fff;
}

/* === CONTENT SECTIONS === */
.content-section {
    margin-bottom: 3.5rem;
}

/* === POSTS === */
.post-item {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(46, 46, 46, 0.1);
}

.post-item:last-of-type {
    border-bottom: none;
}

.post-item h3 a {
    text-decoration: none;
}

.post-item h3 a:hover {
    color: #ff006e;
}

.post-item time {
    display: block;
    margin-bottom: 0.5rem;
}

.link-arrow {
    font-weight: 500;
}

/* === NAVIGATION === */
nav {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(46, 46, 46, 0.1);
}

nav a {
    margin-right: 1.5rem;
    text-decoration: none;
    font-size: 0.95rem;
}

nav a:hover {
    color: #ff006e;
}

/* === FOOTER === */
footer {
    margin-top: 4rem;
    padding: 1rem 0;
    border-top: 1px solid rgba(46, 46, 46, 0.1);
    text-align: center;
    font-size: 0.85rem;
    color: #666;
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
    h1 {
        font-size: 2.25rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    .page-container {
        padding: 1rem 1.5rem 1rem 1.5rem;
    }

    .logo-main {
        width: 280px;
        height: 280px;
    }

    .title-overlay h1 {
        font-size: 1.75rem;
    }

    .title-overlay {
        padding: 0.5rem 1.5rem;
    }

    .subtitle {
        font-size: 1rem;
    }
}

/* === BLOG LISTING PAGE === */
.container {
    max-width: 650px;
    margin: 0 auto;
    padding: 2rem 2rem;
}

.post-list article {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(46, 46, 46, 0.1);
}

/* === BLOG POST PAGE === */
.post-header {
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.post-content {
    font-size: 1.05rem;
    line-height: 1.8;
}

.post-content h2 {
    margin-top: 2rem;
}

.post-content h3 {
    margin-top: 1.5rem;
}
