/* Basic Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Sawarabi Gothic', sans-serif;
    line-height: 1.6;
    background-color: #0d1a26;
    color: #fff;
}

h1, h2, h3 {
    font-family: 'Marcellus', serif;
}

.container {
    width: 80%;
    margin: auto;
    overflow: hidden;
    padding: 20px 0;
}

/* Header */
header {
    color: #fff;
    padding: 0.8rem 0;
    position: fixed;
    width: 100%;
    z-index: 1000;
    transition: background 0.3s ease, border-bottom 0.3s ease;
}

header.transparent-header {
    background: rgba(0, 0, 0, 0.5);
    border-bottom: none;
}

header.solid-header {
    background: #0d1a26;
    border-bottom: 1px solid #333;
}

header nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 80%;
    margin: auto;
}

header .logo {
    font-size: 1.8rem;
    font-weight: bold;
}

header .logo a {
    color: #bda87f; /* Red accent */
    text-decoration: none;
    transition: color 0.3s ease;
}

header.solid-header .logo a {
    color: #fff;
}

header ul {
    list-style: none;
}

header ul li {
    display: inline;
    margin-left: 20px;
}

header ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

header ul li a:hover {
    color: #bda87f; /* Red accent */
}

/* Hero Section */
#hero {
    height: 100vh;
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
}

.slideshow-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.slide.active {
    opacity: 1;
}

#hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6); /* Dark overlay */
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
}

#hero h1 {
    font-size: 4rem;
    margin-bottom: 10px;
    color: #bda87f; /* Red accent */
    opacity: 0;
    animation: fadeInUp 1s ease-out forwards;
}

#hero p {
    font-size: 1.5rem;
    margin-bottom: 30px;
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.3s forwards;
}

.hero-content .btn {
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.6s forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.btn {
    display: inline-block;
    background: #bda87f; /* Red accent */
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(231, 76, 60, 0.3);
}

.btn:hover {
    background: #c0392b;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(231, 76, 60, 0.5);
}

/* Sections */
.section-dark {
    background: #1a2b3c;
    color: #fff;
    padding: 60px 0;
}

.section-light {
    background: #f4f4f4;
    color: #333;
    padding: 60px 0;
}

.section-dark h2, .section-light h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2.5rem;
}

.section-dark h2 {
    color: #bda87f; /* Red accent */
}

/* About Section */
.about-text {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    font-size: 1.1rem;
    line-height: 2;
}

.about-text p {
    margin-bottom: 2em;
}

.about-text .signature {
    text-align: right;
    font-size: 1rem;
    line-height: 1.8;
    margin-top: 40px;
}

/* Typewriter effect */
.typewriter-title {
    display: inline-block;
    text-align: center;
    color: #bda87f; /* Red accent for dark sections */
    font-size: 2.5rem; /* Match h2 font size */
    margin-bottom: 40px; /* Match h2 margin */
    min-height: 1.2em; /* Prevent layout shift */
    position: relative;
}

/* Light section titles should have dark color */
.section-light .typewriter-title {
    color: #333;
}

.typewriter-cursor {
    color: #bda87f;
    font-weight: normal;
    animation: none;
    margin-left: 2px;
}

.typewriter-cursor.blink {
    animation: blink 1s infinite;
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

/* Profile Section */
.profile-content {
    display: flex;
    align-items: center;
    gap: 40px;
}

.profile-img {
    flex-shrink: 0;
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.profile-img.fade-in {
    opacity: 1;
    transform: translateX(0);
}

.profile-text {
    flex-grow: 1;
}

.profile-text h3 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: #bda87f; /* Red accent */
}

.profile-text p {
    margin-bottom: 10px;
}

.profile-text .signature {
    text-align: right;
    margin-top: 20px;
    font-size: 1rem;
}

.profile-text ul {
    list-style: inside;
    margin-bottom: 10px;
}

.profile-text ul li {
    margin-bottom: 5px;
}

/* Lessons Overview */
.lessons-overview {
    max-width: 800px;
    margin: auto;
    text-align: center;
}

.lessons-overview p {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.lessons-overview .btn {
    margin-top: 20px;
}

/* Announcements Section */
.announcement-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.announcement-item {
    background: #fff;
    color: #333;
    border-radius: 8px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    border-left: 5px solid #bda87f; /* Accent color */
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
    display: flex;
    overflow: hidden;
}

.announcement-img {
    flex: 1;
}

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

.announcement-content {
    flex: 2;
    padding: 25px;
    position: relative;
    padding-bottom: 60px; /* Space for the button */
}

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

.announcement-item h3 {
    color: #bda87f; /* Accent color */
    margin-bottom: 10px;
}

.announcement-item p {
    margin-bottom: 15px;
}

.announcement-item .btn {
    background: #bda87f;
    color: #fff;
    padding: 8px 15px;
    text-decoration: none;
    border-radius: 4px;
    transition: background 0.3s ease;
    position: absolute;
    right: 25px;
    bottom: 25px;
}

.announcement-item .btn:hover {
    background: #a8936a; /* Darker accent color */
}

/* Gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.gallery-grid img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border: 3px solid #bda87f; /* Red border */
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.gallery-grid img:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(231, 76, 60, 0.5);
}

/* Contact Form */
#contact form {
    display: flex;
    flex-direction: column;
    max-width: 500px;
    margin: auto;
}

#contact form input,
#contact form textarea {
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #555;
    background: #333;
    color: #fff;
    border-radius: 5px;
}

#contact form input:focus,
#contact form textarea:focus {
    outline: none;
    border-color: #bda87f; /* Red accent */
}

#contact form .btn {
    align-self: flex-start;
}

/* Footer */
footer {
    background: #0d1a26;
    color: #fff;
    text-align: center;
    padding: 20px 0;
    border-top: 1px solid #333;
}

.social-links {
    margin-bottom: 15px;
}

.social-links a {
    color: #fff;
    text-decoration: none;
    margin: 0 15px;
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

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

/* Hamburger Menu */
#hamburger-icon {
    display: none;
    cursor: pointer;
    padding: 10px;
}

#hamburger-icon .bar {
    width: 25px;
    height: 3px;
    background-color: #fff;
    margin: 5px 0;
    transition: 0.4s;
}

/* Responsive Design */
@media (max-width: 768px) {
    header nav {
        width: 90%;
    }

    header ul {
        display: none;
        flex-direction: column;
        width: 100%;
        background-color: rgba(0, 0, 0, 0.9);
        position: absolute;
        top: 70px;
        left: 0;
        padding: 20px 0;
    }

    header ul.active {
        display: flex;
    }

    header ul li {
        margin: 15px 0;
        text-align: center;
    }

    #hamburger-icon {
        display: block;
    }

    #hamburger-icon.active .bar:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }

    #hamburger-icon.active .bar:nth-child(2) {
        opacity: 0;
    }

    #hamburger-icon.active .bar:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }

    .container {
        width: 90%;
    }

    #hero h1 {
        font-size: 3rem;
    }

    #hero p {
        font-size: 1.2rem;
    }

    .profile-content {
        flex-direction: column;
    }

    .profile-img {
        max-width: 250px;
        margin-bottom: 20px;
    }

    /* Archive cards responsive */
    .archive-posts-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .archive-card .entry-meta {
        flex-direction: column;
        gap: 8px;
    }
}

/* Lightbox Styles */
.lightbox {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 9999; /* Sit on top */
    padding-top: 100px; /* Location of the box */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgba(0,0,0,0.9); /* Black w/ opacity */
}

.lightbox-content {
    margin: auto;
    display: block;
    max-width: 80%;
    max-height: 80%;
    object-fit: contain;
    animation-name: zoom;
    animation-duration: 0.6s;
}

@keyframes zoom {
    from {transform: scale(0)}
    to {transform: scale(1)}
}

.close-button {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
    cursor: pointer;
}

.close-button:hover,
.close-button:focus {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
}

/* Main Content Area for single.php and page.php */
.main-content {
    padding: 20px; /* Normal padding for non-fixed header */
    min-height: calc(100vh - 180px); /* Adjust based on header and footer height */
    background-color: #1a2b3c; /* Dark background for content */
    color: #fff;
    max-width: 1200px; /* Wider content width */
    margin: 0 auto; /* Center the content */
    width: 95%; /* Wider responsive width */
}

/* Override header position for single post and page templates */
body.single header,
body.page header {
    position: static; /* Remove fixed positioning */
    background: #0d1a26; /* Solid background */
    border-bottom: 1px solid #333;
}

/* トップページ（front-page）のヘッダーは固定透明に戻す */
body.home header,
body.front-page header {
    position: fixed !important; /* 固定位置に戻す */
    background: transparent !important; /* 透明背景 */
    border-bottom: none !important; /* ボーダーを削除 */
    transition: background 0.3s ease, border-bottom 0.3s ease; /* アニメーション */
}

/* スクロール時の黒背景クラス */
body.home header.solid-header,
body.front-page header.solid-header {
    background: #0d1a26 !important; /* 黒背景 */
    border-bottom: 1px solid #333 !important; /* ボーダー追加 */
}

/* トップページ以外のmain-contentで固定ヘッダーとの重なりを調整 */
body.home .main-content,
body.front-page .main-content {
    padding-top: 100px; /* 固定ヘッダー用のパディング */
}

/* 投稿・固定ページは通常パディング */
body.single .main-content,
body.page .main-content {
    padding-top: 20px; /* 通常ヘッダー用のパディング */
}

.main-content .page-title {
    font-size: 3rem;
    color: #bda87f;
    margin-bottom: 40px;
}

.main-content .entry-header {
    margin-bottom: 30px;
    position: static; /* Ensure it's not floating or fixed */
}

/* For single posts and pages */
.main-content h1.entry-title {
    font-size: 3rem;
    color: #bda87f;
    margin-bottom: 10px;
    position: static; /* Ensure it's not floating or fixed */
}

/* For post listings (archive, index) */
.main-content h2.entry-title {
    font-size: 2rem; /* Smaller for list items */
    color: #bda87f;
    margin-bottom: 10px;
    position: static; /* Ensure it's not floating or fixed */
}

.main-content .entry-meta {
    font-size: 0.9rem;
    color: #aaa;
    margin-bottom: 0; /* Reset margin-bottom to avoid double spacing */
}

.main-content .entry-content {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-top: 0; /* Reset margin-top as spacing is handled by entry-header */
}

.main-content .entry-content p {
    margin-bottom: 1em;
}

/* Headings within main content */
.main-content .entry-content h2 {
    font-size: 2.2rem;
    color: #bda87f;
    margin-top: 2em;
    margin-bottom: 1em;
    font-family: 'Marcellus', serif;
    border-bottom: 2px solid #bda87f;
    padding-bottom: 0.5em;
}

.main-content .entry-content h3 {
    font-size: 1.8rem;
    color: #bda87f;
    margin-top: 1.5em;
    margin-bottom: 0.8em;
    font-family: 'Marcellus', serif;
}

.main-content .entry-content h4 {
    font-size: 1.4rem;
    color: #fff;
    margin-top: 1.2em;
    margin-bottom: 0.6em;
    font-family: 'Marcellus', serif;
}

.main-content .entry-content h5,
.main-content .entry-content h6 {
    font-size: 1.2rem;
    color: #fff;
    margin-top: 1em;
    margin-bottom: 0.5em;
    font-family: 'Marcellus', serif;
}

/* Lists within main content */
.main-content .entry-content ul,
.main-content .entry-content ol {
    margin-bottom: 1.5em;
    padding-left: 2em;
}

.main-content .entry-content ul li,
.main-content .entry-content ol li {
    margin-bottom: 0.5em;
    line-height: 1.8;
}

.main-content .entry-content ul {
    list-style-type: disc;
}

.main-content .entry-content ol {
    list-style-type: decimal;
}

/* Blockquotes */
.main-content .entry-content blockquote {
    background: rgba(189, 168, 127, 0.1);
    border-left: 4px solid #bda87f;
    margin: 1.5em 0;
    padding: 1em 1.5em;
    font-style: italic;
    color: #ddd;
}

.main-content .entry-content blockquote p {
    margin-bottom: 0;
}

/* Code and preformatted text */
.main-content .entry-content code {
    background: #333;
    color: #bda87f;
    padding: 0.2em 0.4em;
    border-radius: 3px;
    font-size: 0.9em;
    font-family: 'Courier New', monospace;
}

.main-content .entry-content pre {
    background: #1a1a1a;
    color: #fff;
    padding: 1.5em;
    border-radius: 5px;
    overflow-x: auto;
    margin: 1.5em 0;
    border-left: 4px solid #bda87f;
}

.main-content .entry-content pre code {
    background: none;
    padding: 0;
    color: inherit;
}

/* Links */
.main-content .entry-content a {
    color: #bda87f;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.main-content .entry-content a:hover {
    color: #a8936a;
}

/* Images */
.main-content .entry-content img {
    max-width: 100%;
    height: auto;
    border-radius: 5px;
    margin: 1em 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

/* Tables */
.main-content .entry-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5em 0;
    background: rgba(255, 255, 255, 0.05);
}

.main-content .entry-content th,
.main-content .entry-content td {
    padding: 0.8em 1em;
    border: 1px solid #444;
    text-align: left;
}

.main-content .entry-content th {
    background: #bda87f;
    color: #fff;
    font-weight: bold;
}

.main-content .entry-content tr:nth-child(even) {
    background: rgba(255, 255, 255, 0.02);
}

/* Horizontal rule */
.main-content .entry-content hr {
    border: none;
    height: 2px;
    background: #bda87f;
    margin: 2em 0;
}

.main-content .read-more {
    display: inline-block;
    margin-top: 15px;
    background: #bda87f;
    color: #fff;
    padding: 8px 15px;
    text-decoration: none;
    border-radius: 4px;
    transition: background 0.3s ease;
}

.main-content .read-more:hover {
    background: #a8936a;
}

/* Pagination styles */
.main-content .navigation.pagination {
    text-align: center;
    margin-top: 40px;
}

.main-content .nav-links {
    display: inline-block;
}

.main-content .page-numbers {
    display: inline-block;
    padding: 8px 12px;
    margin: 0 5px;
    background-color: #333;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.main-content .page-numbers.current,
.main-content .page-numbers:hover {
    background-color: #bda87f;
}

/* Archive and Search Page Styles */
.archive-posts,
.search-results {
    margin-top: 30px;
}

/* Grid layout for archive cards */
.archive-posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

/* Card styles */
.archive-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(189, 168, 127, 0.2);
}

.archive-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(189, 168, 127, 0.3);
}

/* Card image */
.card-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.card-image:hover img {
    transform: scale(1.05);
}

/* Placeholder for posts without images */
.card-image.placeholder {
    background: linear-gradient(135deg, #1a2b3c, #2a3b4c);
    display: flex;
    align-items: center;
    justify-content: center;
}

.placeholder-content {
    text-align: center;
    color: #bda87f;
}

.placeholder-content i {
    font-size: 3rem;
    margin-bottom: 10px;
    display: block;
}

.placeholder-content span {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Card content */
.card-content {
    padding: 25px;
}

.archive-card .entry-header {
    margin-bottom: 15px;
}

.archive-card .entry-title {
    margin-bottom: 10px;
    font-size: 1.4rem;
}

.archive-card .entry-title a {
    color: #bda87f;
    text-decoration: none;
    transition: color 0.3s ease;
}

.archive-card .entry-title a:hover {
    color: #a8936a;
}

.archive-card .entry-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 0.85rem;
    color: #aaa;
}

.post-category a {
    color: #bda87f;
    text-decoration: none;
    background: rgba(189, 168, 127, 0.1);
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 0.8rem;
}

.post-category a:hover {
    background: rgba(189, 168, 127, 0.2);
}

.archive-card .entry-excerpt {
    margin-bottom: 20px;
    line-height: 1.6;
    color: #ddd;
}

.archive-card .entry-footer {
    text-align: right;
}

.archive-card .read-more {
    background: #bda87f;
    color: #fff;
    padding: 8px 16px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 0.9rem;
    transition: background 0.3s ease;
}

.archive-card .read-more:hover {
    background: #a8936a;
}

/* Old archive post styles for backward compatibility */
.archive-post,
.search-result {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 30px;
    margin-bottom: 30px;
    border-left: 4px solid #bda87f;
    overflow: hidden;
    clear: both;
    position: relative;
    z-index: 1;
}

.archive-post .entry-title,
.search-result .entry-title {
    margin-bottom: 10px;
    float: none; /* フローティングを解除 */
}

.archive-post .entry-title a,
.search-result .entry-title a {
    color: #bda87f;
    text-decoration: none;
    font-size: 1.8rem;
    display: block; /* フローティングを防ぐ */
}

.archive-post .entry-title a:hover,
.search-result .entry-title a:hover {
    color: #a8936a;
}

.search-results-count {
    color: #aaa;
    font-size: 0.9rem;
    margin-top: 10px;
}

/* Archive entry header and meta styles */
.archive-post .entry-header,
.search-result .entry-header {
    margin-bottom: 15px;
    overflow: hidden; /* フローティング要素を含める */
}

.archive-post .entry-meta,
.search-result .entry-meta {
    color: #aaa;
    font-size: 0.9rem;
    margin-bottom: 10px;
    clear: both; /* フローティングをクリア */
}

.archive-post .entry-excerpt,
.search-result .entry-excerpt {
    margin-bottom: 15px;
    clear: both; /* フローティングをクリア */
}

.archive-post .entry-footer,
.search-result .entry-footer {
    clear: both; /* フローティングをクリア */
}

/* 404 Error Page Styles */
.error-404 {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.error-404 .page-title {
    font-size: 3rem;
    color: #bda87f;
    margin-bottom: 30px;
}

.error-message h2 {
    color: #bda87f;
    margin-bottom: 20px;
}

.error-suggestions,
.search-form-container,
.recent-posts {
    margin: 40px 0;
    text-align: left;
}

.error-suggestions h3,
.search-form-container h3,
.recent-posts h3 {
    color: #bda87f;
    margin-bottom: 15px;
}

.error-suggestions ul,
.recent-posts ul {
    list-style: none;
    padding: 0;
}

.error-suggestions li,
.recent-posts li {
    margin-bottom: 10px;
    padding: 10px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
}

.recent-posts .post-date {
    color: #aaa;
    font-size: 0.9rem;
}

.no-results,
.no-posts {
    text-align: center;
    padding: 60px 20px;
}

.no-results h2,
.no-posts h2 {
    color: #bda87f;
    margin-bottom: 20px;
}

/* Comments Styles */
.comments-area {
    margin-top: 60px;
    border-top: 2px solid #444;
    padding-top: 40px;
}

.comments-title {
    color: #bda87f;
    font-size: 1.8rem;
    margin-bottom: 30px;
}

.comment-list {
    list-style: none;
    padding: 0;
}

.comment-list .comment {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 20px;
}

.comment-author img {
    border-radius: 50%;
    margin-right: 15px;
}

.comment-meta {
    color: #aaa;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.comment-content p {
    margin-bottom: 1em;
}

.reply {
    margin-top: 15px;
}

.reply a {
    background: #bda87f;
    color: #fff;
    padding: 5px 15px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 0.9rem;
}

.reply a:hover {
    background: #a8936a;
}

/* Comment Form */
.comment-form-author,
.comment-form-email,
.comment-form-url,
.comment-form-comment {
    margin-bottom: 20px;
}

.comment-form-author label,
.comment-form-email label,
.comment-form-url label,
.comment-form-comment label {
    display: block;
    margin-bottom: 5px;
    color: #fff;
}

.comment-form-author input,
.comment-form-email input,
.comment-form-url input,
.comment-form-comment textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #555;
    background: #333;
    color: #fff;
    border-radius: 4px;
}

.comment-form-author input:focus,
.comment-form-email input:focus,
.comment-form-url input:focus,
.comment-form-comment textarea:focus {
    outline: none;
    border-color: #bda87f;
}

.comment-notes {
    color: #aaa;
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.required {
    color: #bda87f;
}

.no-comments {
    text-align: center;
    color: #aaa;
    font-style: italic;
    padding: 30px;
}