/*
Theme Name: LKPNews
Theme URI: 
Author: Janon Emersion T from LKProfessionals
Author URI: https://lkprofessionals.com
Description: A well organized wordpress theme for news website created by LKProfessionals (Pvt) Ltd
Version: 1.1
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: lkpnews
*/

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

body {
    font-family: 'Noto Sans Tamil', 'Latha', 'Vani', Arial, sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    width: 100%;
    overflow-x: hidden;
    color: #333;
}

/* Tamil Font Support */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+Tamil:wght@400;500;600;700&display=swap');

h1, h2, h3 {
    color: #333;
}

a {
    color: #0066cc;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

/* Main Content */
main {
    width: 100%;
    background-color: #f5f5f5;
}

.homepage-main,
.archive-main,
.single-main {
    padding: 30px 0;
}

/* Content Grid Layout */
.content-grid {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 30px;
    margin-top: 20px;
}

.main-column {
    background-color: #ffffff;
    padding: 20px;
    border-radius: 4px;
}

/* Breaking News Section */
.breaking-news-section {
    background-color: #ff0000;
    color: #ffffff;
    padding: 12px 0;
    border-bottom: 2px solid #cc0000;
}

.breaking-news-section .container {
    display: flex;
    align-items: center;
    gap: 15px;
}

.breaking-news-label {
    background-color: #000000;
    padding: 8px 15px;
    font-weight: bold;
    white-space: nowrap;
    font-size: 14px;
}

.breaking-news-ticker {
    flex: 1;
    overflow: hidden;
}

.breaking-news-ticker a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    display: block;
    white-space: nowrap;
    animation: scroll-news 20s linear infinite;
}

.breaking-news-ticker a:hover {
    text-decoration: underline;
}

@keyframes scroll-news {
    0% { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
}

/* Featured Post */
.featured-section {
    margin-bottom: 40px;
}

.featured-post {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    background-color: #ffffff;
    padding: 20px;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.featured-image {
    overflow: hidden;
    border-radius: 4px;
}

.featured-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

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

.featured-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.featured-title {
    font-size: 32px;
    line-height: 1.3;
    margin: 15px 0;
}

.featured-title a {
    color: #1a1a1a;
    text-decoration: none;
    transition: color 0.3s ease;
}

.featured-title a:hover {
    color: #ff6600;
}

/* Section Titles */
.section-title {
    background-color: #ff6600;
    color: #ffffff;
    padding: 12px 20px;
    margin: 30px 0 20px;
    font-size: 18px;
    font-weight: bold;
    text-transform: uppercase;
    border-left: 4px solid #cc5500;
}

.section-title a {
    color: #ffffff;
    text-decoration: none;
}

.section-title .title-text {
    display: inline-block;
}

/* Posts Grid */
.posts-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-bottom: 40px;
}

.post-card {
    background-color: #ffffff;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.post-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.post-thumbnail {
    overflow: hidden;
    height: 200px;
}

.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-content {
    padding: 20px;
}

.post-category {
    display: inline-block;
    background-color: #ff6600;
    color: #ffffff;
    padding: 4px 12px;
    border-radius: 3px;
    font-size: 12px;
    font-weight: 500;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.post-card-title {
    font-size: 20px;
    line-height: 1.4;
    margin: 10px 0;
}

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

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

.post-meta {
    color: #666;
    font-size: 13px;
    margin: 10px 0;
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.post-excerpt {
    color: #555;
    font-size: 14px;
    line-height: 1.6;
    margin: 10px 0;
}

.read-more {
    display: inline-block;
    color: #ff6600;
    font-weight: 500;
    margin-top: 10px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.read-more:hover {
    color: #cc5500;
    text-decoration: underline;
}

/* Category Sections */
.category-section {
    margin-bottom: 40px;
    background-color: #ffffff;
    padding: 20px;
    border-radius: 4px;
}

.category-featured {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 20px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 2px solid #eee;
}

.category-thumbnail {
    overflow: hidden;
    border-radius: 4px;
}

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

.category-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.category-title {
    font-size: 22px;
    margin: 10px 0;
}

.category-title a {
    color: #1a1a1a;
    text-decoration: none;
    transition: color 0.3s ease;
}

.category-title a:hover {
    color: #ff6600;
}

.category-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.category-list li {
    padding: 12px 0;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.category-list li:last-child {
    border-bottom: none;
}

.category-list a {
    color: #333;
    text-decoration: none;
    flex: 1;
    transition: color 0.3s ease;
}

.category-list a:hover {
    color: #ff6600;
}

.list-date {
    color: #999;
    font-size: 12px;
}

/* Archive Header */
.archive-header {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 3px solid #ff6600;
}

.archive-title {
    font-size: 32px;
    color: #1a1a1a;
    margin: 0;
}

.archive-description {
    margin-top: 15px;
    color: #666;
    font-size: 16px;
    line-height: 1.6;
}

.no-posts {
    text-align: center;
    padding: 60px 20px;
    color: #666;
}

/* 404 Error Page */
.error-main {
    padding: 60px 0;
}

.error-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    background-color: #ffffff;
    padding: 60px 40px;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.error-title {
    font-size: 120px;
    font-weight: bold;
    color: #ff6600;
    margin: 0;
    line-height: 1;
}

.error-subtitle {
    font-size: 32px;
    color: #1a1a1a;
    margin: 20px 0;
}

.error-message {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 30px;
}

.error-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.error-button {
    display: inline-block;
    padding: 12px 30px;
    background-color: #ff6600;
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.error-button:hover {
    background-color: #cc5500;
}

.error-button.secondary {
    background-color: #666;
}

.error-button.secondary:hover {
    background-color: #555;
}

.error-search {
    margin-top: 40px;
    padding-top: 40px;
    border-top: 2px solid #eee;
}

.error-search h3 {
    margin-bottom: 20px;
    color: #1a1a1a;
}

.error-search form {
    display: flex;
    gap: 10px;
    max-width: 400px;
    margin: 0 auto;
}

.error-search input[type="search"] {
    flex: 1;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.error-search button {
    padding: 10px 20px;
    background-color: #ff6600;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.error-posts {
    margin-top: 40px;
    padding-top: 40px;
    border-top: 2px solid #eee;
    text-align: left;
}

.error-posts h3 {
    text-align: center;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.error-posts ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.error-posts li {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.error-posts li:last-child {
    border-bottom: none;
}

.error-posts a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.error-posts a:hover {
    color: #ff6600;
}

/* Search Results */
.search-info {
    color: #666;
    font-size: 14px;
    margin-top: 10px;
}

.search-again {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 2px solid #eee;
}

.search-again h3 {
    margin-bottom: 20px;
    color: #1a1a1a;
}

.search-again form {
    display: flex;
    gap: 10px;
    max-width: 500px;
}

.search-again input[type="search"] {
    flex: 1;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.search-again button {
    padding: 10px 20px;
    background-color: #ff6600;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

mark {
    background-color: #ffeb3b;
    padding: 2px 4px;
    border-radius: 2px;
}

/* Page Template */
.page-main {
    padding: 30px 0;
}

.page-content {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.page-header {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid #eee;
}

.page-title {
    font-size: 36px;
    color: #1a1a1a;
    margin: 0 0 15px;
}

.page-meta {
    color: #666;
    font-size: 14px;
}

.page-featured-image {
    margin: 30px 0;
    border-radius: 4px;
    overflow: hidden;
}

.page-featured-image img {
    width: 100%;
    height: auto;
    display: block;
}

.page-body {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
}

.page-body p {
    margin-bottom: 20px;
}

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

.page-links {
    margin: 30px 0;
    padding: 20px 0;
    border-top: 2px solid #eee;
    border-bottom: 2px solid #eee;
}

.page-links a {
    display: inline-block;
    padding: 8px 15px;
    margin: 5px;
    background-color: #f5f5f5;
    color: #333;
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.page-links a:hover {
    background-color: #ff6600;
    color: #ffffff;
}

/* Comments */
.comments-area {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 3px solid #ff6600;
}

.comments-title {
    font-size: 24px;
    color: #1a1a1a;
    margin-bottom: 30px;
}

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

.comment-list .comment {
    margin-bottom: 30px;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 4px;
}

.comment-body {
    display: flex;
    gap: 15px;
}

.comment-author {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.comment-author img {
    border-radius: 50%;
}

.comment-author .fn {
    font-weight: bold;
    color: #1a1a1a;
}

.comment-meta {
    color: #666;
    font-size: 13px;
    margin-left: 10px;
}

.comment-meta a {
    color: #666;
    text-decoration: none;
}

.comment-meta a:hover {
    color: #ff6600;
}

.comment-text {
    margin: 15px 0;
    line-height: 1.6;
    color: #333;
}

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

.reply {
    margin-top: 15px;
}

.reply a {
    display: inline-block;
    padding: 6px 15px;
    background-color: #ff6600;
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    font-size: 13px;
    transition: background-color 0.3s ease;
}

.reply a:hover {
    background-color: #cc5500;
}

.comment-awaiting-moderation {
    color: #ff6600;
    font-style: italic;
    font-size: 13px;
}

.no-comments {
    color: #666;
    font-style: italic;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 4px;
}

/* Comment Form */
.comment-form {
    margin-top: 40px;
    padding: 30px;
    background-color: #f9f9f9;
    border-radius: 4px;
}

.comment-form p {
    margin-bottom: 20px;
}

.comment-form label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
    color: #333;
}

.comment-form .required {
    color: #ff6600;
}

.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"],
.comment-form textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    font-family: inherit;
}

.comment-form textarea {
    min-height: 150px;
    resize: vertical;
}

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

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

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    background-color: #ff6600;
    color: #ffffff;
    border: none;
    padding: 12px 20px;
    font-size: 16px;
    cursor: pointer;
    width: 100%;
    text-align: left;
    margin-bottom: 0;
}

/* Sticky Header */
.sticky-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.sticky-header + main {
    margin-top: 80px;
}

/* Back to Top Button */
#back-to-top {
    display: none;
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: #ff6600;
    color: #ffffff;
    border: none;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    z-index: 999;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    transition: background-color 0.3s ease, transform 0.3s ease;
}

#back-to-top:hover {
    background-color: #cc5500;
    transform: translateY(-3px);
}

/* Screen Reader Text */
.screen-reader-text {
    clip: rect(1px, 1px, 1px, 1px);
    position: absolute !important;
    height: 1px;
    width: 1px;
    overflow: hidden;
}

/* Single Post */
.single-post {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.post-header {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid #eee;
}

.post-header .post-title {
    font-size: 36px;
    line-height: 1.3;
    margin: 15px 0;
    color: #1a1a1a;
}

.post-featured-image {
    margin: 30px 0;
    border-radius: 4px;
    overflow: hidden;
}

.post-featured-image img {
    width: 100%;
    height: auto;
    display: block;
}

.image-caption {
    padding: 10px;
    background-color: #f5f5f5;
    font-size: 13px;
    color: #666;
    font-style: italic;
    margin: 0;
}

.post-content {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
    margin: 30px 0;
}

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

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

.post-footer {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 2px solid #eee;
}

.post-tags {
    margin-bottom: 20px;
    font-size: 14px;
}

.post-tags a {
    display: inline-block;
    background-color: #f5f5f5;
    color: #333;
    padding: 5px 12px;
    border-radius: 3px;
    margin: 5px 5px 5px 0;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.post-tags a:hover {
    background-color: #ff6600;
    color: #ffffff;
}

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

.share-link {
    display: inline-block;
    padding: 8px 15px;
    margin: 5px 5px 5px 0;
    border-radius: 4px;
    text-decoration: none;
    color: #ffffff;
    font-size: 13px;
    transition: opacity 0.3s ease;
}

.share-link.facebook {
    background-color: #1877f2;
}

.share-link.twitter {
    background-color: #1da1f2;
}

.share-link.whatsapp {
    background-color: #25d366;
}

.share-link:hover {
    opacity: 0.9;
}

.related-posts {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 3px solid #ff6600;
}

.related-posts h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

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

.related-post {
    background-color: #f9f9f9;
    border-radius: 4px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.related-post:hover {
    transform: translateY(-3px);
}

.related-thumb {
    display: block;
    overflow: hidden;
    height: 150px;
}

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

.related-post h4 {
    padding: 15px;
    margin: 0;
    font-size: 16px;
}

.related-post h4 a {
    color: #1a1a1a;
    text-decoration: none;
    transition: color 0.3s ease;
}

.related-post h4 a:hover {
    color: #ff6600;
}

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

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

.pagination a,
.pagination span {
    display: inline-block;
    padding: 10px 15px;
    background-color: #f5f5f5;
    color: #333;
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.pagination a:hover,
.pagination .current {
    background-color: #ff6600;
    color: #ffffff;
}

.post {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #ddd;
}

.post-title {
    margin-bottom: 10px;
}

.post-meta {
    color: #666;
    font-size: 0.9em;
    margin-bottom: 15px;
}

.post-content {
    margin-bottom: 15px;
}

/* Top Bar Styles */
.top-bar {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 10px 0;
    border-bottom: 1px solid #333;
}

.top-bar-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    width: 100%;
}

.contact-info {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.contact-item {
    font-size: 13px;
    color: #cccccc;
}

.contact-item a {
    color: #ff6600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: #ff8833;
    text-decoration: underline;
}

.region-selector {
    display: flex;
    align-items: center;
}

.region-dropdown {
    background-color: #333;
    color: #ffffff;
    border: 1px solid #555;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 13px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.region-dropdown:hover {
    background-color: #444;
}

/* Header Styles */
.site-header {
    background-color: #ffffff;
    border-bottom: 2px solid #e0e0e0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

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

.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    flex-wrap: wrap;
    gap: 20px;
}

.logo-section {
    flex: 1;
    min-width: 200px;
}

.site-logo {
    text-decoration: none;
    color: inherit;
}

.site-title {
    font-size: 32px;
    font-weight: bold;
    color: #1a1a1a;
    margin: 0;
    line-height: 1.2;
}

.site-title:hover {
    color: #ff6600;
    transition: color 0.3s ease;
}

.site-tagline {
    font-size: 14px;
    color: #666;
    margin: 5px 0 0 0;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.search-box form {
    display: flex;
    gap: 5px;
}

.search-box input[type="search"] {
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    min-width: 200px;
}

.search-box input[type="search"]:focus {
    outline: none;
    border-color: #ff6600;
}

.search-box button {
    padding: 8px 20px;
    background-color: #ff6600;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    transition: background-color 0.3s ease;
}

.search-box button:hover {
    background-color: #e55a00;
}

/* Main Navigation */
.main-navigation {
    background-color: #ff6600;
    margin: 0 -20px;
    padding: 0 20px;
}

.nav-menu {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    margin: 0;
    padding: 0;
}

.nav-menu li {
    position: relative;
}

.nav-menu a {
    display: block;
    padding: 15px 20px;
    color: #ffffff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: background-color 0.3s ease;
    text-transform: uppercase;
}

.nav-menu a:hover,
.nav-menu li.current-menu-item > a {
    background-color: rgba(255, 255, 255, 0.1);
}

.nav-menu li:hover > a {
    background-color: rgba(255, 255, 255, 0.15);
}

/* Footer Styles */
.site-footer {
    background-color: #1a1a1a;
    color: #ffffff;
    margin-top: 60px;
    padding: 0;
    clear: both;
}

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

.footer-top {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    padding: 60px 0 40px;
    border-bottom: 1px solid #333;
}

.footer-column {
    padding: 0 10px;
}

.footer-title {
    color: #ffffff;
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #ff6600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-description {
    color: #cccccc;
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 15px;
}

.footer-company {
    color: #999999;
    font-size: 13px;
    margin-bottom: 20px;
}

.footer-company a {
    color: #ff6600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-company a:hover {
    color: #ff8833;
    text-decoration: underline;
}

/* Social Media */
.social-media {
    margin-top: 25px;
}

.social-media h4 {
    color: #ffffff;
    font-size: 14px;
    margin-bottom: 15px;
    font-weight: normal;
}

.social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.social-link {
    display: inline-block;
    width: 40px;
    height: 40px;
    background-color: #333;
    color: #ffffff;
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    transition: all 0.3s ease;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.social-link span {
    display: none;
}

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.social-link.facebook:hover {
    background-color: #1877f2;
}

.social-link.twitter:hover {
    background-color: #1da1f2;
}

.social-link.instagram:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-link.youtube:hover {
    background-color: #ff0000;
}

.social-link.linkedin:hover {
    background-color: #0077b5;
}

/* Social Media Icons */
.social-link .social-icon {
    display: block;
    font-size: 18px;
    line-height: 40px;
    font-weight: bold;
}

.social-link.facebook .social-icon {
    font-family: Arial, sans-serif;
}

.social-link.twitter .social-icon {
    font-size: 16px;
}

.social-link.instagram .social-icon {
    font-size: 16px;
}

.social-link.youtube .social-icon {
    font-size: 14px;
}

.social-link.linkedin .social-icon {
    font-family: Arial, sans-serif;
    font-weight: bold;
    font-size: 14px;
}

/* Footer Menu */
.footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-menu li {
    margin-bottom: 12px;
    padding-left: 15px;
    position: relative;
}

.footer-menu li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #ff6600;
    font-weight: bold;
}

.footer-menu a {
    color: #cccccc;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-menu a:hover {
    color: #ff6600;
    padding-left: 5px;
}

/* Recent Posts */
.recent-posts {
    list-style: none;
    padding: 0;
    margin: 0;
}

.recent-posts li {
    margin-bottom: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid #333;
}

.recent-posts li:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.recent-posts a {
    color: #cccccc;
    text-decoration: none;
    font-size: 14px;
    line-height: 1.6;
    transition: color 0.3s ease;
    display: block;
}

.recent-posts a:hover {
    color: #ff6600;
}

/* Footer Bottom */
.footer-bottom {
    background-color: #0f0f0f;
    padding: 25px 0;
}

.footer-bottom-content {
    text-align: center;
}

.copyright {
    color: #999999;
    font-size: 13px;
    line-height: 1.8;
}

.copyright p {
    margin: 5px 0;
}

.copyright a {
    color: #ff6600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.copyright a:hover {
    color: #ff8833;
    text-decoration: underline;
}

/* Sidebar */
.sidebar {
    background-color: #ffffff;
    padding: 20px;
    border-radius: 4px;
}

.widget {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid #eee;
}

.widget:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.widget-title {
    background-color: #ff6600;
    color: #ffffff;
    padding: 10px 15px;
    margin: 0 0 15px;
    font-size: 16px;
    font-weight: bold;
    text-transform: uppercase;
    border-left: 4px solid #cc5500;
}

/* Popular Posts Widget */
.popular-posts {
    list-style: none;
    padding: 0;
    margin: 0;
}

.popular-posts li {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.popular-posts li:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.popular-thumb {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    overflow: hidden;
    border-radius: 4px;
}

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

.popular-content {
    flex: 1;
}

.popular-content h4 {
    margin: 0 0 5px;
    font-size: 14px;
    line-height: 1.4;
}

.popular-content h4 a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.popular-content h4 a:hover {
    color: #ff6600;
}

.popular-date {
    color: #999;
    font-size: 12px;
}

/* Categories Widget */
.category-list-widget {
    list-style: none;
    padding: 0;
    margin: 0;
}

.category-list-widget li {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.category-list-widget li:last-child {
    border-bottom: none;
}

.category-list-widget a {
    color: #333;
    text-decoration: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.3s ease;
}

.category-list-widget a:hover {
    color: #ff6600;
}

.category-list-widget .count {
    background-color: #f5f5f5;
    color: #666;
    padding: 2px 8px;
    border-radius: 3px;
    font-size: 12px;
}

/* Recent Posts Widget */
.recent-posts-widget {
    list-style: none;
    padding: 0;
    margin: 0;
}

.recent-posts-widget li {
    padding: 12px 0;
    border-bottom: 1px solid #eee;
}

.recent-posts-widget li:last-child {
    border-bottom: none;
}

.recent-posts-widget a {
    color: #333;
    text-decoration: none;
    display: block;
    margin-bottom: 5px;
    transition: color 0.3s ease;
}

.recent-posts-widget a:hover {
    color: #ff6600;
}

.widget-date {
    color: #999;
    font-size: 12px;
}

/* Tags Widget */
.tagcloud {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tag-link {
    display: inline-block;
    background-color: #f5f5f5;
    color: #333;
    padding: 6px 12px;
    border-radius: 3px;
    font-size: 13px;
    text-decoration: none;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.tag-link:hover {
    background-color: #ff6600;
    color: #ffffff;
}

/* Responsive Design */
@media (max-width: 768px) {
    .footer-top {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 40px 0 30px;
    }
    
    .footer-column {
        padding: 0;
    }
    
    .footer-title {
        font-size: 16px;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .content-grid {
        grid-template-columns: 1fr;
    }
    
    .sidebar {
        margin-top: 30px;
    }
    
    .featured-post {
        grid-template-columns: 1fr;
    }
    
    .posts-grid {
        grid-template-columns: 1fr;
    }
    
    .category-featured {
        grid-template-columns: 1fr;
    }
    
    .related-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .top-bar-container {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .contact-info {
        justify-content: center;
    }
    
    .header-top {
        flex-direction: column;
        text-align: center;
    }
    
    .site-title {
        font-size: 28px;
    }
    
    .search-box {
        width: 100%;
    }
    
    .search-box form {
        width: 100%;
    }
    
    .search-box input[type="search"] {
        flex: 1;
        min-width: 0;
    }
    
    .nav-menu {
        flex-direction: column;
    }
    
    .nav-menu {
        flex-direction: column;
    }
    
    .nav-menu a {
        padding: 12px 15px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .featured-title {
        font-size: 24px;
    }
    
    .post-header .post-title {
        font-size: 28px;
    }
    
    .archive-title {
        font-size: 24px;
    }
    
    .breaking-news-section .container {
        flex-direction: column;
        gap: 10px;
    }
    
    .breaking-news-label {
        width: 100%;
        text-align: center;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .main-navigation {
        display: none;
    }
    
    .main-navigation.menu-open {
        display: block;
    }
    
    .comment-body {
        flex-direction: column;
    }
    
    #back-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .footer-container {
        padding: 0 15px;
    }
    
    .footer-top {
        padding: 30px 0 20px;
    }
    
    .copyright {
        font-size: 12px;
    }
    
    .site-title {
        font-size: 24px;
    }
    
    .contact-info {
        flex-direction: column;
        gap: 10px;
    }
}

/* ============================================
   Custom Post Types Styling
   ============================================ */

/* Category Filters */
.category-filters {
    margin-bottom: 30px;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 4px;
}

.category-filters h3 {
    margin-bottom: 15px;
    color: #1a1a1a;
    font-size: 18px;
}

.filter-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.filter-list li {
    margin: 0;
}

.filter-list a {
    display: inline-block;
    padding: 8px 15px;
    background-color: #ffffff;
    color: #333;
    text-decoration: none;
    border-radius: 4px;
    border: 1px solid #ddd;
    transition: all 0.3s ease;
}

.filter-list a:hover,
.filter-list a.active {
    background-color: #ff6600;
    color: #ffffff;
    border-color: #ff6600;
}

/* Events Styling */
.events-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.event-card {
    display: flex;
    gap: 25px;
    background-color: #ffffff;
    padding: 20px;
    border-radius: 4px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.event-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.event-thumbnail {
    flex-shrink: 0;
    width: 200px;
    height: 150px;
    overflow: hidden;
    border-radius: 4px;
}

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

.event-content {
    display: flex;
    gap: 20px;
    flex: 1;
}

.event-date-box {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    background-color: #ff6600;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    text-align: center;
}

.event-day {
    font-size: 28px;
    font-weight: bold;
    line-height: 1;
}

.event-month {
    font-size: 14px;
    text-transform: uppercase;
    margin-top: 5px;
}

.event-details {
    flex: 1;
}

.event-title {
    font-size: 22px;
    margin: 0 0 15px;
}

.event-title a {
    color: #1a1a1a;
    text-decoration: none;
    transition: color 0.3s ease;
}

.event-title a:hover {
    color: #ff6600;
}

.event-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 15px;
    color: #666;
    font-size: 14px;
}

.event-excerpt {
    color: #555;
    line-height: 1.6;
    margin-bottom: 15px;
}

/* Videos Styling */
.videos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.video-card {
    background-color: #ffffff;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.video-thumbnail {
    position: relative;
    overflow: hidden;
    height: 200px;
}

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

.video-play-overlay {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
}

.video-play-overlay::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.3);
    transition: background-color 0.3s ease;
}

.video-play-overlay:hover::after {
    background-color: rgba(0, 0, 0, 0.5);
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background-color: rgba(255, 102, 0, 0.9);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    z-index: 2;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.video-play-overlay:hover .play-button {
    transform: translate(-50%, -50%) scale(1.1);
    background-color: #ff6600;
}

.video-placeholder {
    width: 100%;
    height: 100%;
    background-color: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
}

.video-content {
    padding: 20px;
}

.video-title {
    font-size: 18px;
    margin: 0 0 10px;
}

.video-title a {
    color: #1a1a1a;
    text-decoration: none;
    transition: color 0.3s ease;
}

.video-title a:hover {
    color: #ff6600;
}

.video-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 10px;
    color: #666;
    font-size: 13px;
}

.video-excerpt {
    color: #555;
    font-size: 14px;
    line-height: 1.6;
}

.video-embed {
    margin: 30px 0;
    border-radius: 4px;
    overflow: hidden;
}

.video-embed iframe {
    width: 100%;
    display: block;
}

/* Photos Styling */
.photos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.photo-card {
    background-color: #ffffff;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.photo-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.photo-thumbnail {
    overflow: hidden;
    height: 250px;
}

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

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

.photo-placeholder {
    width: 100%;
    height: 100%;
    background-color: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 64px;
}

.photo-content {
    padding: 15px;
}

.photo-title {
    font-size: 16px;
    margin: 0 0 10px;
}

.photo-title a {
    color: #1a1a1a;
    text-decoration: none;
    transition: color 0.3s ease;
}

.photo-title a:hover {
    color: #ff6600;
}

.photo-meta {
    display: flex;
    gap: 15px;
    color: #666;
    font-size: 12px;
}

.photo-gallery {
    margin: 30px 0;
}

.gallery-main-image {
    margin-bottom: 20px;
    border-radius: 4px;
    overflow: hidden;
}

.gallery-main-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Business Styling */
.business-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.business-card {
    background-color: #ffffff;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.business-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.business-thumbnail {
    overflow: hidden;
    height: 200px;
}

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

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

.business-content {
    padding: 20px;
}

.business-title {
    font-size: 20px;
    margin: 0 0 15px;
}

.business-title a {
    color: #1a1a1a;
    text-decoration: none;
    transition: color 0.3s ease;
}

.business-title a:hover {
    color: #ff6600;
}

.business-excerpt {
    color: #555;
    line-height: 1.6;
    margin-bottom: 15px;
}

.business-details {
    margin-bottom: 15px;
}

.business-details p {
    margin: 8px 0;
    font-size: 14px;
    color: #666;
}

.business-details a {
    color: #ff6600;
    text-decoration: none;
}

.business-details a:hover {
    text-decoration: underline;
}

.business-contact-info {
    margin: 30px 0;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 4px;
}

.business-contact-info h3 {
    margin-bottom: 15px;
    color: #1a1a1a;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* Notices Styling */
.notices-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.notice-card {
    background-color: #ffffff;
    border-radius: 4px;
    padding: 20px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.notice-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.notice-content {
    display: flex;
    gap: 20px;
}

.notice-date {
    flex-shrink: 0;
    width: 70px;
    height: 70px;
    background-color: #ff6600;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    text-align: center;
}

.notice-day {
    font-size: 24px;
    font-weight: bold;
    line-height: 1;
}

.notice-month {
    font-size: 12px;
    text-transform: uppercase;
    margin-top: 5px;
}

.notice-details {
    flex: 1;
}

.notice-title {
    font-size: 20px;
    margin: 0 0 10px;
}

.notice-title a {
    color: #1a1a1a;
    text-decoration: none;
    transition: color 0.3s ease;
}

.notice-title a:hover {
    color: #ff6600;
}

.notice-excerpt {
    color: #555;
    line-height: 1.6;
    margin-bottom: 15px;
}

.notice-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.notice-author {
    color: #666;
    font-size: 13px;
}

/* Links Page Styling */
.links-section {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.link-category {
    background-color: #ffffff;
    padding: 25px;
    border-radius: 4px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.link-category-title {
    font-size: 22px;
    margin: 0 0 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #ff6600;
}

.link-category-title a {
    color: #1a1a1a;
    text-decoration: none;
    transition: color 0.3s ease;
}

.link-category-title a:hover {
    color: #ff6600;
}

.link-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.link-list li {
    padding: 12px 0;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.link-list li:last-child {
    border-bottom: none;
}

.link-list a {
    color: #333;
    text-decoration: none;
    flex: 1;
    transition: color 0.3s ease;
}

.link-list a:hover {
    color: #ff6600;
}

.link-date {
    color: #999;
    font-size: 12px;
}

.link-external {
    background-color: #f0f0f0;
    color: #666;
    padding: 2px 8px;
    border-radius: 3px;
    font-size: 11px;
    text-transform: uppercase;
}

/* Responsive Styles for Custom Post Types */
@media (max-width: 768px) {
    .event-card {
        flex-direction: column;
    }
    
    .event-thumbnail {
        width: 100%;
        height: 200px;
    }
    
    .event-content {
        flex-direction: column;
    }
    
    .videos-grid,
    .photos-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .business-grid {
        grid-template-columns: 1fr;
    }
    
    .notice-content {
        flex-direction: column;
    }
    
    .filter-list {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .videos-grid,
    .photos-grid {
        grid-template-columns: 1fr;
    }
    
    .event-date-box,
    .notice-date {
        width: 60px;
        height: 60px;
    }
    
    .event-day,
    .notice-day {
        font-size: 20px;
    }
}

