/* Additional Custom Styles for Maveeranal Theme */

/* Navigation Styles */
.main-navigation ul {
    list-style: none;
    display: flex;
    gap: 30px;
    align-items: center;
}

.main-navigation a {
    color: #ffffff;
    font-size: 1.1rem;
    padding: 10px 15px;
    transition: all 0.3s ease;
    border-bottom: 2px solid transparent;
}

.main-navigation a:hover {
    color: #ff6b6b;
    border-bottom-color: #ff6b6b;
}

/* Live Stream Placeholder */
.stream-placeholder {
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
    color: #ffffff;
    text-align: center;
}

.placeholder-content {
    padding: 40px;
}

.placeholder-content h3 {
    margin: 20px 0;
    font-size: 2rem;
}

.placeholder-content p {
    font-size: 1.2rem;
    color: #cccccc;
}

.stream-note {
    margin-top: 20px;
    font-size: 1rem;
    color: #888;
}

/* Posts Grid */
.posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.post-card {
    background: #1a1a1a;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255, 107, 107, 0.2);
}

.post-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 107, 107, 0.3);
}

.post-card .post-thumbnail {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

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

.post-card:hover .post-thumbnail img {
    transform: scale(1.1);
}

.post-card .post-content {
    padding: 20px;
}

.post-card h3 {
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.post-card h3 a {
    color: #ffffff;
}

.post-card h3 a:hover {
    color: #ff6b6b;
}

.post-excerpt {
    color: #cccccc;
    margin-bottom: 15px;
}

.read-more {
    display: inline-block;
    color: #ff6b6b;
    font-weight: bold;
    transition: color 0.3s ease;
}

.read-more:hover {
    color: #ff8787;
}

/* Single Post Styles */
.single-post {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px;
}

.single-post .entry-header {
    margin-bottom: 30px;
    text-align: center;
    padding-bottom: 20px;
    border-bottom: 2px solid rgba(255, 107, 107, 0.3);
}

.single-post .entry-title {
    font-size: 3rem;
    margin-bottom: 20px;
}

.entry-meta {
    color: #888;
    font-size: 0.9rem;
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

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

.single-post .entry-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #e0e0e0;
}

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

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

.entry-footer {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 107, 107, 0.2);
    color: #888;
    font-size: 0.9rem;
}

.post-categories,
.post-tags {
    margin-bottom: 10px;
}

.post-categories a,
.post-tags a {
    color: #ff6b6b;
    margin-left: 10px;
}

/* Post Navigation */
.post-navigation {
    display: flex;
    justify-content: space-between;
    margin: 40px 0;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 107, 107, 0.2);
    border-bottom: 1px solid rgba(255, 107, 107, 0.2);
}

.post-navigation a {
    color: #ff6b6b;
    font-weight: bold;
    transition: color 0.3s ease;
}

.post-navigation a:hover {
    color: #ff8787;
}

/* Page Styles */
.page-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px;
}

.page-content .entry-title {
    font-size: 3rem;
    margin-bottom: 30px;
    text-align: center;
}

/* Section Titles */
.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 40px;
    color: #ffffff;
}

/* Recent Posts Section */
.recent-posts-section {
    padding: 60px 0;
    background: linear-gradient(180deg, #1a1a1a 0%, #0a0a0a 100%);
}

/* Memorial Text Styles */
.memorial-text,
.memorial-text-en {
    font-size: 1.3rem;
    line-height: 1.8;
    max-width: 800px;
    margin: 20px auto;
    color: #e0e0e0;
}

.memorial-text-en {
    color: #cccccc;
    font-style: italic;
}

.rise-up-text,
.rise-up-text-en {
    font-size: 1.5rem;
    line-height: 1.8;
    max-width: 900px;
    margin: 20px auto;
    color: #e0e0e0;
}

.rise-up-text-en {
    color: #cccccc;
    font-style: italic;
}

/* Pagination */
.pagination {
    margin: 40px 0;
    text-align: center;
}

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

.pagination a,
.pagination span {
    padding: 10px 15px;
    background: #1a1a1a;
    color: #ffffff;
    border-radius: 5px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 107, 107, 0.3);
}

.pagination a:hover {
    background: #ff6b6b;
    color: #ffffff;
}

.pagination .current {
    background: #ff6b6b;
    color: #ffffff;
}

/* Comments */
.comments-area {
    margin-top: 40px;
    padding-top: 40px;
    border-top: 2px solid rgba(255, 107, 107, 0.3);
}

.comments-title {
    font-size: 2rem;
    margin-bottom: 30px;
}

.comment-list {
    list-style: none;
    margin: 30px 0;
}

.comment {
    background: #1a1a1a;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 10px;
    border-left: 3px solid #ff6b6b;
}

.comment-author {
    font-weight: bold;
    color: #ff6b6b;
    margin-bottom: 10px;
}

.comment-date {
    color: #888;
    font-size: 0.9rem;
    margin-left: 10px;
}

.comment-content {
    color: #e0e0e0;
    margin-top: 10px;
}

/* Form Styles */
.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"],
.comment-form textarea {
    width: 100%;
    padding: 12px;
    background: #1a1a1a;
    border: 1px solid rgba(255, 107, 107, 0.3);
    border-radius: 5px;
    color: #ffffff;
    font-family: inherit;
    margin-bottom: 15px;
}

.comment-form input[type="submit"] {
    background: #ff6b6b;
    color: #ffffff;
    padding: 12px 30px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    transition: background 0.3s ease;
}

.comment-form input[type="submit"]:hover {
    background: #ff8787;
}

/* Video.js Player Styles */
#live-player .video-js {
    width: 100%;
    max-width: 100%;
    height: 400px;
    background: #000;
    border-radius: 20px;
    overflow: hidden;
}

#live-player .video-js .vjs-big-play-button {
    background-color: var(--accent);
    border-color: var(--accent);
    border-radius: 50%;
    width: 80px;
    height: 80px;
    line-height: 80px;
    margin-top: -40px;
    margin-left: -40px;
    font-size: 2.5em;
}

#live-player .video-js .vjs-big-play-button:hover {
    background-color: var(--accent-gold);
    border-color: var(--accent-gold);
}

#live-player .video-js .vjs-control-bar {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, transparent 100%);
}

#live-player .video-js .vjs-play-progress {
    background-color: var(--accent);
}

#live-player .video-js .vjs-volume-level {
    background-color: var(--accent);
}

#live-player .video-js .vjs-load-progress {
    background-color: rgba(255, 255, 255, 0.3);
}

#live-player .video-js .vjs-live-control {
    color: var(--accent);
    font-weight: bold;
}

/* Responsive Video.js */
@media (max-width: 768px) {
    #live-player .video-js {
        height: 300px;
    }
}

/* No Posts */
.no-posts {
    text-align: center;
    padding: 60px 20px;
}

.no-posts h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

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

/* 404 Error Page */
.error-404 {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
}

.error-content {
    text-align: center;
    max-width: 600px;
}

.error-title {
    font-size: 8rem;
    color: #ff6b6b;
    margin-bottom: 20px;
    text-shadow: 0 0 30px rgba(255, 107, 107, 0.5);
    line-height: 1;
}

.error-message {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #ffffff;
}

.error-description {
    font-size: 1.2rem;
    color: #cccccc;
    margin-bottom: 40px;
}

.error-actions {
    margin-top: 30px;
}

.home-button {
    display: inline-block;
    padding: 15px 40px;
    background: #ff6b6b;
    color: #ffffff;
    border-radius: 5px;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.home-button:hover {
    background: #ff8787;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(255, 107, 107, 0.4);
}

/* Archive Header */
.archive-header {
    text-align: center;
    padding: 40px 20px;
    margin-bottom: 40px;
    border-bottom: 2px solid rgba(255, 107, 107, 0.3);
}

.archive-title {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #ffffff;
}

.archive-description {
    font-size: 1.2rem;
    color: #cccccc;
    max-width: 800px;
    margin: 0 auto;
}

/* Search Header */
.search-header {
    text-align: center;
    padding: 40px 20px;
    margin-bottom: 40px;
    border-bottom: 2px solid rgba(255, 107, 107, 0.3);
}

.search-title {
    font-size: 2.5rem;
    color: #ffffff;
}

.search-title span {
    color: #ff6b6b;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .main-navigation ul {
        flex-direction: column;
        gap: 15px;
    }
    
    .single-post .entry-title {
        font-size: 2rem;
    }
    
    .posts-grid {
        grid-template-columns: 1fr;
    }
    
    .post-navigation {
        flex-direction: column;
        gap: 15px;
    }
    
    .memorial-text,
    .memorial-text-en,
    .rise-up-text,
    .rise-up-text-en {
        font-size: 1.1rem;
    }
}

