/* Blog Post Styling — Matches existing site.css aesthetic */

.blog-post {
    max-width: 1000px;
    width: 90%;
    margin: 0 auto;
    padding: 0;
    font-family: Arial, sans-serif;
    color: #333;
    line-height: 1.6;
}

/* Stats Bar */
.stats-bar {
    background-color: #fff;
    padding: 20px 0;
    margin-bottom: 30px;
    border-bottom: 1px solid #eee;
}

.stats-bar h2 {
    margin: 0 0 10px 0;
    font-size: 24px;
    color: #333;
}

.stats-bar p {
    margin: 0;
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

/* Blog Sections */
.blog-post section {
    margin-bottom: 30px;
}

.blog-post h3 {
    font-size: 20px;
    color: #333;
    margin-top: 25px;
    margin-bottom: 15px;
    text-align: left;
}

.blog-post h4 {
    font-size: 16px;
    color: #333;
    margin-top: 20px;
    margin-bottom: 10px;
    text-align: left;
}

.blog-post p {
    margin: 0 0 12px 0;
    text-align: left;
    font-size: 16px;
}

/* Lists */
.blog-post ul {
    margin: 15px 0;
    padding-left: 25px;
    text-align: left;
}

.blog-post li {
    margin: 8px 0;
    line-height: 1.6;
    font-size: 16px;
}

.blog-post a {
    color: green;
    text-decoration: none;
}

.blog-post a:hover {
    text-decoration: underline;
}

/* Flora/Fauna Section */
.flora-fauna h4 {
    margin-top: 30px;
    color: #0066cc;
}

.flora-fauna p {
    margin: 15px 0;
}

/* Photo Gallery */
.photo-gallery {
    margin: 50px 0;
}

.photo-gallery h3 {
    margin-bottom: 30px;
}

.photo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin: 30px 0;
}

.gallery-item {
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
}

.gallery-item img:hover {
    transform: scale(1.05);
}

.gallery-caption {
    font-size: 0.85em;
    color: #666;
    margin-top: 8px;
    text-align: center;
    font-style: italic;
}

/* Video Sections */
.video-section,
.youtube-section {
    margin: 50px 0;
}

.vlog-video {
    width: 100%;
    aspect-ratio: 16 / 9;
    position: relative;
    margin: 20px 0;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.vlog-video iframe {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    border: none;
}

/* Opening Section */
.opening {
    font-size: 1.1em;
    line-height: 1.8;
    margin-bottom: 50px;
    color: #333;
}

.opening p {
    margin: 15px 0;
}

/* Closing Section */
.closing {
    background: #f9f9f9;
    padding: 30px;
    border-radius: 4px;
    margin-top: 50px;
    font-size: 1.05em;
}

.closing h3 {
    margin-top: 0;
}

/* Emphasis Styles */
.blog-post strong {
    color: #333;
    font-weight: 600;
}

.blog-post em {
    color: #555;
    font-style: italic;
}

/* Links */
.blog-post a {
    color: #0066cc;
    text-decoration: none;
}

.blog-post a:hover {
    text-decoration: underline;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .blog-post {
        padding: 0 15px;
    }

    .stats-bar {
        padding: 15px;
        margin-bottom: 30px;
    }

    .stats-bar h2 {
        font-size: 1.4em;
    }

    .stats-bar p {
        font-size: 0.9em;
    }

    .blog-post h3 {
        font-size: 1.3em;
        margin-top: 30px;
    }

    .photo-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 10px;
    }

    .closing {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .blog-post {
        padding: 0 10px;
    }

    .stats-bar {
        padding: 12px;
        border-left-width: 3px;
    }

    .stats-bar h2 {
        font-size: 1.2em;
        margin-bottom: 10px;
    }

    .stats-bar p {
        font-size: 0.85em;
        line-height: 1.5;
    }

    .blog-post h3 {
        font-size: 1.1em;
        margin-top: 25px;
    }

    .blog-post h4 {
        font-size: 1em;
    }

    .photo-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 8px;
    }

    .vlog-video {
        margin: 15px 0;
    }

    .closing {
        padding: 15px;
        font-size: 0.95em;
    }
}
