/* Stiluri principale pentru site-ul personal */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.6;
    color: #333;
    background-color: #fafafa;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

header {
    text-align: center;
    margin-bottom: 60px;
    border-bottom: 1px solid #e0e0e0;
    padding-bottom: 30px;
}

.site-title {
    font-size: 2.5em;
    font-weight: normal;
    color: #2c3e50;
    margin-bottom: 10px;
}

.site-subtitle {
    font-size: 1.1em;
    color: #7f8c8d;
    font-style: italic;
}

nav {
    margin: 40px 0;
    text-align: center;
}

nav a {
    text-decoration: none;
    color: #34495e;
    margin: 0 20px;
    font-size: 1.1em;
    transition: color 0.3s ease;
}

nav a:hover, nav a.active {
    color: #3498db;
}

.section {
    margin-bottom: 60px;
}

.section-title {
    font-size: 1.8em;
    color: #2c3e50;
    margin-bottom: 20px;
    border-left: 4px solid #3498db;
    padding-left: 15px;
}

.about-content {
    font-size: 1.1em;
    line-height: 1.8;
    color: #555;
}

.post {
    margin-bottom: 40px;
    padding: 25px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.2s ease;
}

.post:hover {
    transform: translateY(-2px);
}

.post-title {
    font-size: 1.4em;
    color: #2c3e50;
    margin-bottom: 10px;
}

.post-date {
    color: #7f8c8d;
    font-size: 0.9em;
    margin-bottom: 15px;
}

.post-excerpt {
    color: #555;
    line-height: 1.6;
    margin-bottom: 15px;
}

.post-content {
    color: #555;
    line-height: 1.8;
    font-size: 1.1em;
}

.post-content h2 {
    color: #2c3e50;
    margin: 30px 0 15px 0;
}

.post-content h3 {
    color: #34495e;
    margin: 25px 0 10px 0;
}

.post-content p {
    margin-bottom: 20px;
}

.post-content blockquote {
    border-left: 4px solid #3498db;
    padding-left: 20px;
    margin: 20px 0;
    font-style: italic;
    color: #7f8c8d;
}

.read-more {
    color: #3498db;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.read-more:hover {
    color: #2980b9;
}

.back-link {
    display: inline-block;
    margin-bottom: 30px;
    color: #3498db;
    text-decoration: none;
    transition: color 0.3s ease;
}

.back-link:hover {
    color: #2980b9;
}

footer {
    text-align: center;
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid #e0e0e0;
    color: #7f8c8d;
}

.social-links {
    margin-top: 20px;
}

.social-links a {
    color: #7f8c8d;
    text-decoration: none;
    margin: 0 10px;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #3498db;
}

/* Responsive design */
@media (max-width: 600px) {
    body {
        padding: 15px;
    }
    
    .site-title {
        font-size: 2em;
    }
    
    nav a {
        display: block;
        margin: 10px 0;
    }
    
    .post {
        padding: 20px;
    }
}
