/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Times New Roman", Times, serif;
    line-height: 1.6;
    color: #fff;
    background-image: url('sheep.jpeg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    padding: 20px;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

/* Typography */
.site-title {
    font-family: "Times New Roman", Times, serif;
    font-weight: normal;
    font-size: 2.5rem;
    text-align: left;
    margin-bottom: 20px;
    color: #fff;
}

.post-title {
    font-family: "Times New Roman", Times, serif;
    font-weight: normal;
    font-size: 2rem;
    margin-bottom: 20px;
    color: #fff;
}

.post-content {
    font-family: "Times New Roman", Times, serif;
    /* font-style: italic; */
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: #fff;
    line-height: 1.8;
}

/* Navigation */
.navigation {
    margin-bottom: 30px;
}

.nav-list {
    list-style: none;
    display: flex;
    gap: 30px;
}

.nav-link {
    text-decoration: none;
    color: #ccc;
    font-size: 1.1rem;
    padding: 5px 0;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}

.nav-link:hover {
    color: #fff;
    border-bottom-color: #fff;
}

.nav-link.active {
    color: #fff;
    border-bottom-color: #fff;
}

/* Layout */
.header {
    margin-bottom: 40px;
    border-bottom: 2px solid #fff;
    padding-bottom: 20px;
}

.main {
    margin-bottom: 40px;
}

.section {
    margin-bottom: 30px;
}

.post {
    margin-bottom: 30px;
}

.footer {
    display: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    body {
        padding: 10px;
    }
    
    .container {
        padding: 10px;
    }
    
    .site-title {
        font-size: 2rem;
    }
    
    .post-title {
        font-size: 1.5rem;
    }
    
    .post-content {
        font-size: 1rem;
    }
    
    .nav-list {
        gap: 20px;
    }
    
    .nav-link {
        font-size: 1rem;
    }
} 