/*
Theme Name: FILL GARDEN
Theme URI: https://fill.garden/
Description: 植木屋・造園サイト用WordPressテーマ。緑と暮らす、オシャレに彩る植栽デザインをコンセプトにしたビジネスサイトテーマです。
Author: FILL GARDEN
Author URI: https://www.instagram.com/fill.garden/
Version: 1.0.0
Requires at least: 5.0
Tested up to: 6.4
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: fillgarden
Tags: business, portfolio, custom-header, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready

FILL GARDEN is a WordPress theme designed for gardening and landscaping businesses.
*/

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

body {
    font-family: 'YuGothic', 'Yu Gothic', '游ゴシック', 'Hiragino Sans', 'Hiragino Kaku Gothic ProN', sans-serif;
    color: #69804A;
    background-color: #F2F3E8;
    line-height: 1.8;
    font-size: 16px;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: opacity 0.3s;
}

a:hover {
    opacity: 0.7;
}

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

/* Header */
.site-header {
    background-color: rgb(242, 243, 232);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-logo {
    font-family: 'Marcellus', serif;
    font-size: 28px;
    font-weight: normal;
    letter-spacing: 2px;
}

.site-logo a {
    color: #006400;
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 35px;
    align-items: center;
}

.main-nav a {
    font-size: 14px;
    font-weight: 500;
}

.instagram-icon img {
    width: 24px;
    height: 24px;
}

/* Hero Section */
.hero {
    position: relative;
    margin-bottom: 80px;
}

.hero-image {
    position: relative;
    height: 500px;
    overflow: hidden;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 60px;
    background: rgba(0, 0, 0, 0.15);
}

.hero-text-top {
    align-self: flex-start;
}

.hero-title {
    font-family: 'YuKyokasho', 'Yu Kyokasho', '游教科書', 'YuMincho', serif;
    font-size: 32px;
    color: #FFFFE0;
    line-height: 1.8;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
}

.hero-text-bottom {
    align-self: flex-end;
    text-align: right;
    margin-right: 50px;
}

.hero-subtitle {
    font-family: 'YuKyokasho', 'Yu Kyokasho', '游教科書', 'YuMincho', serif;
    font-size: 20px;
    color: #FFFFE0;
    line-height: 1.8;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
}

.hero-cta {
    font-family: 'YuKyokasho', 'Yu Kyokasho', '游教科書', 'YuMincho', serif;
    font-size: 16px;
    color: #FFFFE0;
    line-height: 1.8;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
}

/* Services Section */
.services {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    font-size: 32px;
    margin-bottom: 60px;
    font-weight: 500;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.service-item {
    text-align: center;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.service-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    margin-bottom: 20px;
    border-radius: 8px;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-title {
    font-size: 20px;
    margin-bottom: 15px;
    font-weight: 500;
}

.service-description {
    font-size: 14px;
    line-height: 1.8;
}

/* Process Section */
.process-section {
    position: relative;
    margin: 80px 0;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.process-background-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.process-text {
    position: absolute;
    bottom: 60px;
    left: 60px;
    background: rgba(255, 255, 255, 0.95);
    padding: 50px 60px;
    border-radius: 8px;
    max-width: 600px;
    text-align: center;
    z-index: 1;
}

.process-title {
    font-size: 26px;
    margin-bottom: 20px;
    font-weight: 500;
}

.process-description {
    font-size: 15px;
    line-height: 1.9;
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
    background-color: #F2F3E8;
}

.contact-card {
    background: #fff;
    padding: 50px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.contact-intro {
    font-size: 15px;
    margin-bottom: 30px;
    line-height: 1.8;
}

.contact-info {
    margin-top: 30px;
}

.phone-number {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 15px;
    white-space: nowrap;
}

.business-hours {
    font-size: 14px;
    margin-bottom: 30px;
}

.contact-note {
    font-size: 13px;
    margin-bottom: 30px;
    line-height: 1.8;
}

.btn-contact {
    display: inline-block;
    background-color: #008000;
    color: #fff;
    padding: 15px 60px;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 500;
    transition: background-color 0.3s;
}

.btn-contact:hover {
    background-color: #006400;
    opacity: 1;
}

/* Company Info Section */
.company-info {
    padding: 80px 0;
    background-color: #F2F3E8;
}

.company-card {
    background: #fff;
    padding: 50px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.company-images {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.company-logo {
    text-align: center;
}

.company-logo img {
    width: 280px;
    height: 280px;
    object-fit: cover;
    display: block;
}

.company-representative {
    text-align: center;
}

.company-representative img {
    width: 280px;
    height: 280px;
    object-fit: cover;
    display: block;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.company-details {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.detail-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.detail-item h4 {
    font-size: 14px;
    margin-bottom: 8px;
    font-weight: 500;
}

.detail-item p {
    font-size: 14px;
}

/* Page Top Button */
.page-top {
    position: fixed;
    bottom: 40px;
    right: 40px;
    z-index: 100;
}

.page-top a {
    display: block;
    width: 60px;
    height: 60px;
    background: #69804A;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-top img {
    width: 30px;
    height: 30px;
    filter: brightness(0) invert(1);
}

/* Footer */
.site-footer {
    background-color: rgba(105, 128, 74, 0.1);
    padding: 40px 0 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

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

.footer-nav a {
    font-size: 14px;
}

.copyright {
    text-align: center;
    font-size: 12px;
    color: #69804A;
}

/* Page Title */
.page-title {
    background-color: rgba(105, 128, 74, 0.15);
    padding: 60px 0;
    text-align: center;
    margin-bottom: 60px;
}

.page-title h1 {
    font-size: 32px;
    font-weight: 500;
}

/* Projects Section */
.projects-section {
    padding: 40px 0 80px;
}

/* Interior Projects Section */
.interior-projects-section {
    padding: 40px 0 80px;
}

.interior-gallery {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    max-width: 600px;
    margin: 0 auto;
}

.interior-item {
    width: 100%;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.interior-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.interior-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

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

.project-category {
    margin-bottom: 80px;
}

.category-title {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 10px;
}

.category-subtitle {
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 40px;
}

.project-row {
    margin-bottom: 40px;
}

.project-comparison {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

.project-image {
    flex: 1;
    max-width: 450px;
}

.project-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 8px;
}

.image-label {
    text-align: center;
    margin-top: 10px;
    font-size: 14px;
}

.arrow {
    font-size: 32px;
    color: #69804A;
    font-weight: bold;
}

/* Contact Form Section */
.contact-form-section {
    padding: 60px 0 80px;
}

.form-intro {
    text-align: center;
    margin-bottom: 50px;
}

.form-intro p {
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 10px;
}

.required-note {
    font-size: 13px;
    color: #69804A;
}

.contact-form {
    max-width: 700px;
    margin: 0 auto;
    background: #fff;
    padding: 50px;
    border-radius: 8px;
    border: 2px solid #008000;
}

.form-group {
    margin-bottom: 30px;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-size: 16px;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 15px;
    font-family: inherit;
    color: #333;
}

.form-group textarea {
    resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #69804A;
}

.form-submit {
    text-align: center !important;
    margin-top: 40px;
    width: 100%;
    display: block;
}

.btn-submit {
    background-color: #808080;
    color: #fff;
    padding: 15px 80px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.btn-submit:hover {
    background-color: #666;
}

/* Contact Form 7 スタイリング */
/* フォームグループ - 左寄せ */
.wpcf7-form .form-group {
    margin-bottom: 30px;
    text-align: left;
}

.wpcf7-form .form-group label {
    display: block;
    margin-bottom: 10px;
    font-size: 16px;
    font-weight: 500;
    text-align: left;
}

.wpcf7-form .form-group input,
.wpcf7-form .form-group textarea,
.wpcf7-form .form-group .wpcf7-form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 15px;
    font-family: inherit;
    color: #333;
    box-sizing: border-box;
}

.wpcf7-form .form-group textarea {
    resize: vertical;
}

.wpcf7-form .form-group input:focus,
.wpcf7-form .form-group textarea:focus {
    outline: none;
    border-color: #69804A;
}

/* 送信ボタン - 中央配置 */
.wpcf7-form .form-submit {
    text-align: center !important;
    margin-top: 40px;
    width: 100%;
    display: block;
}

/* Contact Form 7が出力するpタグを中央配置 */
.wpcf7-form p {
    text-align: center !important;
    margin: 0;
    padding: 0;
}

/* form-group内のpタグは左寄せに戻す */
.wpcf7-form .form-group,
.wpcf7-form .form-group p,
.wpcf7-form .form-group label {
    text-align: left !important;
}

.wpcf7-form .form-submit .btn-submit,
.wpcf7-form .form-submit .wpcf7-submit,
.wpcf7-form .btn-submit,
.wpcf7-form .wpcf7-submit {
    background-color: #808080;
    color: #fff;
    padding: 15px 80px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.wpcf7-form .form-submit .btn-submit:hover,
.wpcf7-form .form-submit .wpcf7-submit:hover,
.wpcf7-form .btn-submit:hover,
.wpcf7-form .wpcf7-submit:hover {
    background-color: #666;
}

/* スピナーの位置調整 */
.wpcf7-spinner {
    display: inline-block;
    margin-left: 10px;
}

/* スマホ専用改行 */
.sp-only {
    display: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    /* スマホのみ改行を表示 */
    .sp-only {
        display: inline;
    }

    /* ヘッダーレイアウト調整 */
    .header-content {
        flex-direction: column;
        gap: 15px;
    }

    /* ロゴとインスタアイコンを横並び */
    .site-logo {
        text-align: left;
        align-self: flex-start;
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .main-nav {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    .main-nav ul {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 12px;
        width: 100%;
    }

    /* インスタアイコンをロゴの横に配置 */
    .main-nav ul li:last-child {
        position: absolute;
        top: 28px;
        right: 20px;
    }

    /* その他のメニュー項目 */
    .main-nav ul li:not(:last-child) a {
        font-size: 13px;
    }

    /* ヒーローセクションのレイアウト調整 */
    .hero-overlay {
        padding: 30px 20px;
    }

    .hero-text-top {
        align-self: flex-start;
        text-align: left;
    }

    .hero-text-bottom {
        align-self: flex-end;
        text-align: right;
        margin-right: 0;
    }

    .hero-title {
        font-size: 20px;
        line-height: 1.6;
    }

    .hero-subtitle {
        font-size: 16px;
        line-height: 1.6;
    }

    .hero-cta {
        font-size: 14px;
        white-space: nowrap;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .process-section {
        min-height: 400px;
    }

    .process-background-image {
        object-fit: cover;
    }

    .process-text {
        bottom: 30px;
        left: 20px;
        right: 20px;
        padding: 30px;
        max-width: calc(100% - 40px);
    }

    .process-title {
        font-size: 18px;
        white-space: nowrap;
    }

    .detail-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .project-comparison {
        flex-direction: column;
        gap: 20px;
    }

    .arrow {
        transform: rotate(90deg);
    }

    .footer-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .footer-nav ul {
        flex-wrap: wrap;
        justify-content: flex-start;
        gap: 15px;
    }

    .footer-social {
        align-self: flex-start;
    }

    .page-top {
        bottom: 20px;
        right: 20px;
    }

    .page-top a {
        width: 50px;
        height: 50px;
    }

    .contact-form {
        padding: 30px 20px;
    }

    /* スマホ版：送信ボタンを中央配置 */
    .wpcf7-form p,
    .wpcf7-form .form-submit {
        text-align: center !important;
        width: 100% !important;
        display: block !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    .wpcf7-form .btn-submit,
    .wpcf7-form .wpcf7-submit {
        margin-left: auto !important;
        margin-right: auto !important;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 20px;
    }

    .section-title {
        font-size: 24px;
    }

    .phone-number {
        font-size: 22px;
    }

    .company-card {
        padding: 30px 20px;
    }
}

/* ========================================
   Premium Animations
   ======================================== */

/* Fade In Animation */
.fade-in-element {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-active {
    opacity: 1;
    transform: translateY(0);
}

/* Smooth transitions for buttons */
.btn-contact,
.btn-submit {
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-contact::before,
.btn-submit::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-contact:hover::before,
.btn-submit:hover::before {
    width: 300px;
    height: 300px;
}

.btn-contact:hover,
.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* Page Top Button Animation */
.page-top a {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.page-top a:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

/* Header Transition */
.site-header {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Project Image Hover */
.project-image {
    overflow: hidden;
    border-radius: 8px;
    cursor: pointer;
}

.project-image img {
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Company Card Hover Effect */
.company-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.company-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

/* Contact Card Animation */
.contact-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

/* Parallax Effect Base - 無効化 */
/* .hero-image img,
.process-background-image {
    will-change: transform;
} */

/* ヒーロー画像の動きを完全に停止 */
.hero-image img {
    transform: none !important;
    transition: none !important;
}

/* Loading Animation */
@keyframes fadeInPage {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

body {
    animation: fadeInPage 0.8s ease;
}

/* Text Glow Effect on Hover */
.site-logo a:hover {
    text-shadow: 0 0 20px rgba(0, 100, 0, 0.3);
    transition: text-shadow 0.3s ease;
}

/* Smooth Nav Link Hover */
.main-nav a,
.footer-nav a {
    position: relative;
    transition: color 0.3s ease;
}

.main-nav a::after,
.footer-nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #006400;
    transition: width 0.3s ease;
}

.main-nav a:hover::after,
.footer-nav a:hover::after {
    width: 100%;
}

/* Form Input Focus Animation */
.form-group input:focus,
.form-group textarea:focus {
    transform: scale(1.01);
    transition: all 0.3s ease;
}

/* Instagram Icon Hover */
.instagram-icon {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: transform 0.3s ease;
}

.instagram-icon:hover {
    transform: rotate(10deg) scale(1.1);
}

/* Stagger Animation for Service Items */
.service-item:nth-child(1) {
    transition-delay: 0.1s;
}

.service-item:nth-child(2) {
    transition-delay: 0.2s;
}

.service-item:nth-child(3) {
    transition-delay: 0.3s;
}

/* Process Text Animation */
.process-text {
    animation: slideInLeft 1s ease;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Reduce Motion for Accessibility */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Blog Section Styles */
.blog-section {
    padding: 60px 0;
    background-color: #F2F3E8;
}

.posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.post-item {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.post-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.post-thumbnail {
    width: 100%;
    overflow: hidden;
}

.post-thumbnail img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.post-content {
    padding: 30px;
}

.post-title {
    font-size: 1.5rem;
    margin-bottom: 15px;
    line-height: 1.4;
}

.post-title a {
    color: #006400;
    text-decoration: none;
    transition: color 0.3s ease;
}

.post-title a:hover {
    color: #008000;
}

.post-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 0.9rem;
    color: #888;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.post-categories a {
    color: #69804A;
    text-decoration: none;
    transition: color 0.3s ease;
}

.post-categories a:hover {
    color: #006400;
}

.post-excerpt {
    color: #69804A;
    line-height: 1.8;
    margin-bottom: 20px;
}

.read-more {
    display: inline-block;
    padding: 10px 24px;
    background: #008000;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    transition: background 0.3s ease, transform 0.2s ease;
}

.read-more:hover {
    background: #006400;
    transform: translateX(5px);
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 40px;
}

.pagination .nav-links {
    display: flex;
    gap: 10px;
    align-items: center;
}

.pagination a,
.pagination .current {
    padding: 10px 16px;
    background: #fff;
    color: #006400;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
    border: 1px solid #ddd;
}

.pagination a:hover {
    background: #006400;
    color: #fff;
    border-color: #006400;
}

.pagination .current {
    background: #006400;
    color: #fff;
    border-color: #006400;
}

.no-posts {
    text-align: center;
    padding: 60px 0;
}

.no-posts p {
    font-size: 1.2rem;
    color: #69804A;
}

/* Single Post Styles */
.single-post-section {
    padding: 60px 0;
    background-color: #F2F3E8;
}

.single-post {
    background: #fff;
    border-radius: 8px;
    padding: 50px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    max-width: 900px;
    margin: 0 auto;
}

.single-post-thumbnail {
    margin-bottom: 30px;
    border-radius: 8px;
    overflow: hidden;
}

.single-post-thumbnail img {
    width: 100%;
    height: auto;
    display: block;
}

.single-post-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 0.9rem;
    color: #888;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
    flex-wrap: wrap;
}

.single-post-content {
    color: #69804A;
    line-height: 1.9;
    font-size: 1.05rem;
}

.single-post-content h2 {
    font-size: 1.8rem;
    color: #006400;
    margin-top: 40px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #006400;
}

.single-post-content h3 {
    font-size: 1.5rem;
    color: #006400;
    margin-top: 30px;
    margin-bottom: 15px;
}

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

.single-post-content ul,
.single-post-content ol {
    margin-left: 25px;
    margin-bottom: 20px;
}

.single-post-content li {
    margin-bottom: 10px;
}

.single-post-content img {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
    margin: 20px 0;
}

.single-post-content a {
    color: #008000;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.single-post-content a:hover {
    color: #006400;
}

.post-tags {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.tags-label {
    font-weight: bold;
    color: #69804A;
    margin-right: 10px;
}

.post-tags a {
    display: inline-block;
    padding: 5px 12px;
    background: #F2F3E8;
    color: #69804A;
    text-decoration: none;
    border-radius: 4px;
    font-size: 0.9rem;
    margin-right: 8px;
    margin-bottom: 8px;
    transition: all 0.3s ease;
}

.post-tags a:hover {
    background: #006400;
    color: #fff;
}

/* Post Navigation */
.post-navigation {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    margin-top: 60px;
    flex-wrap: wrap;
}

.nav-previous,
.nav-next {
    flex: 1;
    min-width: 250px;
}

.nav-previous a,
.nav-next a {
    display: block;
    padding: 20px;
    background: #fff;
    border-radius: 8px;
    text-decoration: none;
    color: #006400;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.nav-previous a:hover,
.nav-next a:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.nav-next {
    text-align: right;
}

.nav-title {
    display: block;
    font-size: 1.1rem;
    font-weight: bold;
    margin-top: 8px;
    color: #69804A;
}
