/*
Theme Name: LP Transport Theme
Description: A custom WordPress theme for transport and logistics companies
Version: 1.0
Author: Your Name
License: GPL v2 or later
Text Domain: lp-transport
*/

body {
  opacity: 1 !important;
  visibility: visible !important;
}

/* Basic WordPress styling */
.alignleft {
    float: left;
    margin-right: 1.5em;
    margin-bottom: 1.5em;
}

.alignright {
    float: right;
    margin-left: 1.5em;
    margin-bottom: 1.5em;
}

.aligncenter {
    clear: both;
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 1.5em;
}

.wp-caption {
    max-width: 100%;
    margin-bottom: 1.5em;
}

.wp-caption img {
    display: block;
    margin: 0 auto;
}

.wp-caption-text {
    text-align: center;
    font-size: 0.9em;
    color: #666;
    margin-top: 0.5em;
}

/* Blog post styling */
.single-post-item {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #eee;
}

.post-thumbnail img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

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

.post-meta span {
    margin-right: 1rem;
}

.post-title {
    margin-bottom: 1rem;
}

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

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

.post-excerpt {
    margin-bottom: 1rem;
    line-height: 1.6;
}

.read-more {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: #F07A24;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    transition: background 0.3s ease;
}

.read-more:hover {
    background: #F07A24;
    color: white;
    text-decoration: none;
}

/* Widget area styling */
.widget-area {
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 8px;
}

.widget {
    margin-bottom: 2rem;
}

.widget-title {
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #F07A24;
}

/* Pagination styling */
.navigation.pagination {
    margin-top: 3rem;
    text-align: center;
}

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

.nav-links .page-numbers {
    display: inline-block;
    padding: 0.5rem 1rem;
    margin: 0 0.25rem;
    background: #f8f9fa;
    color: #333;
    text-decoration: none;
    border-radius: 4px;
    transition: background 0.3s ease;
}

.nav-links .page-numbers:hover,
.nav-links .page-numbers.current {
    background: #F07A24;
    color: white;
}

/* No posts found styling */
.no-posts {
    text-align: center;
    padding: 3rem 0;
}

.no-posts h2 {
    margin-bottom: 1rem;
    color: #333;
}

.no-posts p {
    margin-bottom: 2rem;
    color: #666;
}

/* Search form styling */
.search-form {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

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

.search-form input[type="submit"] {
    padding: 0.5rem 1rem;
    background: #F07A24;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.search-form input[type="submit"]:hover {
    background: #F07A24;
}
.theme-btn{
    background: #F07A24;
    border: 1px solid #F07A24;
}
.blog-area a.read-more {
    color: #fff;
}
.blog-area p.blog-meta {
    color: #F07A24 !important;
}

main#main {
    top: 15%;
}

.single-post main#main {
    top: 0 !important; /* remove extra gap */
    padding-top: 120px; /* adjust depending on header height */
}
/* Black header background only for single blog post pages */
.single-post #header-sticky,
.single-post .header-area {
    background-color: #000 !important; /* solid black */
}

/* Optional: Make sure logo area has some padding */
.single-post #header-sticky .container {
    padding-top: 10px;
    padding-bottom: 10px;
}
.footer-area .logo{
    margin-top: 35px;
}
.mobile-nav {
    position: fixed;
    right: -380px;
    top: 0;
    width: 320px;
    height: 100vh;
    scroll-behavior: smooth;
    overflow-y: scroll;
    transition: right 0.5s ease-in;
    background-color: #F07A24;
    padding: 20px;
    z-index: 9999;
    box-shadow: 0 13px 35px -12px #086AD7;
}
.mobile-nav.show a {
    font-size: 15px;
    color: #fff;
    padding: 12px 0;
    border-bottom: 1px solid #cecece;
    width: 100%;
}

.mobile-nav.show li {
    display: inline-block;
    width: 100%;
}
.logo img {
    width: 180px;
    background: rgb(255, 2555, 255, 0.1);
}

.header-area.absolute-header .logo {
    color: #fff;
    margin-top: 80px;
}

.contact-section .contact-info i {
    background: #F07A24;
}
input[type=submit], button[type=submit] {
    background: #F07A24;
    color: #fff;
}
/* .footer-up .logo {
    margin: 0 auto;
    display: inline;
} */
.footer-area .logo {
    margin-top: 41px;
}
.logo img{
	background:none;
}

/* Responsive design */
@media (max-width: 1200px) {
.contact-form-wrapper {
     margin-top: 0px; !important
}
}
@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }
    
    .post-meta span {
        display: block;
        margin-bottom: 0.5rem;
    }
    
    .search-form {
        flex-direction: column;
    }
    
    .search-form input[type="submit"] {
        margin-top: 0.5rem;
    }
    .contact-form-wrapper {
     margin-top: 0px; !important
}
	.footer-up .logo {
    margin: 0 auto;
    display: inline;
}
input[type=submit], button[type=submit] {
    background: #F07A24;
    color: #fff;
}
} 