/* Blog Container Styles */
.blog-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    background-color: #1a0033;
    border: 2px solid;
    border-color: #ff69b4 #800080 #800080 #ff69b4;
    box-shadow: 5px 5px 5px rgba(255,105,180,0.3);
}

/* Blog Header */
.blog-container header {
    text-align: center;
    margin-bottom: 30px;
}

.blog-container h1 {
    color: #ff69b4;
    text-shadow: 2px 2px 4px rgba(255,105,180,0.5);
    font-family: "Comic Sans MS", "Times New Roman", serif;
    font-size: 2.5em;
}

/* Blog Intro Section */
.blog-intro {
    background-color: #800080;
    color: #ff69b4;
    padding: 20px;
    margin-bottom: 30px;
    border: 2px dashed #ff69b4;
    text-align: center;
}

.blog-intro p {
    margin: 10px 0;
    font-family: "Comic Sans MS", "Times New Roman", serif;
}

/* Blog Posts */
.blog-posts {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.blog-post {
    background-color: #1a0033;
    border: 1px solid #ff69b4;
    padding: 20px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.blog-post:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(255,105,180,0.3);
    border-color: #ff69b4;
}

.blog-post h2 {
    color: #ff69b4;
    margin-bottom: 10px;
    font-family: "Comic Sans MS", "Times New Roman", serif;
    text-shadow: 2px 2px 4px rgba(255,105,180,0.5);
}

.post-meta {
    color: #ff69b4;
    font-size: 0.9em;
    margin-bottom: 15px;
    font-family: "Comic Sans MS", "Times New Roman", serif;
    opacity: 0.8;
}

.post-excerpt {
    color: #ff69b4;
    line-height: 1.6;
    font-family: "Comic Sans MS", "Times New Roman", serif;
}

.post-excerpt p {
    margin-bottom: 15px;
}

.read-more {
    display: inline-block;
    color: #ff69b4;
    text-decoration: none;
    border: 2px solid #ff69b4;
    padding: 5px 15px;
    transition: all 0.3s ease;
    font-family: "Comic Sans MS", "Times New Roman", serif;
}

.read-more:hover {
    background-color: #ff69b4;
    color: #000;
}

/* Construction Notice */
.construction-notice {
    text-align: center;
    margin: 30px 0;
}

.construction-notice img {
    max-width: 100px;
    height: auto;
    margin-bottom: 10px;
}

.construction-notice p {
    color: #ff69b4;
    font-family: "Comic Sans MS", "Times New Roman", serif;
}

/* Footer Section */
.footer-section {
    margin-top: 50px;
    text-align: center;
    padding: 20px;
    background-color: #000;
    border-top: 1px solid #ff69b4;
}

.footer-text {
    color: #ff69b4;
    font-family: "Comic Sans MS", "Times New Roman", serif;
}

.footer-text a {
    color: #ff69b4;
    text-decoration: none;
}

.footer-text a:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .blog-container {
        padding: 10px;
        margin: 10px;
    }
    
    .blog-post {
        padding: 15px;
    }
    
    .blog-container h1 {
        font-size: 2em;
    }
} 