:root {
    --primary-color: #2c3e50;
    --secondary-color: #3498db;
    --background-color: #f8f9fa;
    --text-color: #2c3e50;
    --max-width: 1200px;
}

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

body {
    font-family: "Courier New", monospace;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--background-color);
}

main {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 2rem 1rem;
}

.hero {
    text-align: center;
    padding: 4rem 0;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.about {
    padding: 4rem 0;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-top: 2rem;
}

.profile-img {
    border-radius: 50%;
}

.posts-list {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.post-item {
    padding: 0.7rem 0;
    transition: all 0.2s ease;
}

.post-item:hover {
    transform: translateX(8px);
}

.post-item a {
    text-decoration: none;
    color: var(--text-color);
    font-size: 1rem;
    font-weight: 500;
    display: inline-block;
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

.post-item a:hover {
    color: var(--secondary-color);
}

.post-item .post-date {
    color: #666;
    font-size: 0.9rem;
    margin-right: 1rem;
}

footer {
    text-align: center;
    padding: 2rem;
    background-color: white;
    margin-top: 4rem;
}

@media (max-width: 768px) {
    .about-content {
        flex-direction: column;
        text-align: center;
    }
    
    .nav-content {
        flex-direction: column;
        gap: 1rem;
    }
    
    .nav-links a {
        margin: 0 1rem;
    }
} 

.back-link {
    margin-bottom: 2rem;
}

.back-link a {
    color: var(--text-color);
    text-decoration: none;
    font-size: 1.1rem;
}

.back-link a:hover {
    color: var(--secondary-color);
} 

/* Side Menu Styles */
.layout {
    display: flex;
    min-height: 100vh;
}

.side-menu {
    width: 200px;
    background-color: #f4f4f4;
    padding: 3rem 0;
    position: fixed;
    height: 100vh;
}

.side-menu nav {
    display: flex;
    flex-direction: column;
}

.side-menu a {
    color: var(--text-color);
    text-decoration: none;
    padding: 0.8rem 2rem;
    transition: all 0.2s ease;
    font-size: 0.95rem;
}

.side-menu a:hover,
.side-menu a.active {
    color: #000;
    background-color: #e5e5e5;
    padding-left: 2.5rem;
}

.content {
    flex: 1;
    margin-left: 200px;
    padding: 2rem;
}

@media (max-width: 768px) {
    .layout {
        flex-direction: column;
    }
    
    .side-menu {
        width: 100%;
        height: auto;
        position: relative;
        border: none;
    }
    
    .side-menu nav {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        max-width: 600px;
        margin: 0 auto;
    }
    
    .side-menu a {
        border: none;
        text-align: center;
        padding: 1rem;
    }
    
    .content {
        margin-left: 0;
    }
} 

/* Quotes Styles */
.quotes-list {
    margin-top: 2rem;
}

.quotes-list p {
    margin: 1rem 0;
}

.quotes-footer {
    margin-top: 4rem;
    font-style: italic;
    color: #666;
}

/* Call to Action Styles */
.cta-section {
    margin-top: 4rem;
    text-align: center;
    padding: 2rem;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.cta-section p {
    margin: 0.5rem 0;
}

.cta-section a {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: bold;
}

.cta-section a:hover {
    text-decoration: underline;
} 

/* Subscribe Button Styles */
.subscribe-container {
    text-align: center;
    margin: 4rem 0;
}

.subscribe-button {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background-color: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.2s ease;
    cursor: pointer;
    font-family: "Courier New", monospace;
}

.subscribe-button:hover {
    background-color: var(--secondary-color);
}

.subscribe-button.grey {
    background-color: #6c757d;
}

.subscribe-button.grey:hover {
    background-color: #5a6268;
} 