/* Landing Page Styles */
.landing-page {
    direction: rtl;
    text-align: right;
    margin: 0;
    padding: 0;
}

.landing-page-fullscreen {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

.landing-page-fullscreen .site-main {
    margin: 0;
    padding: 0;
}

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

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    padding: 40px 0;
    min-height: auto;
    display: flex;
    align-items: center;
    margin: 0;
}

.hero-section .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.hero-content {
    flex: 1;
}

.hero-content h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #2c3e50;
}

.hero-subtitle {
    font-size: 1.4rem;
    color: #34495e;
    margin-bottom: 20px;
}

.hero-image {
    flex: 1;
}

.hero-image img {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.cta-button {
    display: inline-block;
    padding: 20px 50px;
    background-color: #e74c3c;
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-size: 1.4rem;
    font-weight: bold;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background-color: #c0392b;
    transform: translateY(-2px);
}

/* Features Section */
.features-section {
    padding: 100px 0;
    background-color: #fff;
    margin: 0;
}

.features-section h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 60px;
    color: #2c3e50;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.feature-item {
    text-align: center;
    padding: 40px;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
}

.feature-item img {
    width: 120px;
    height: 120px;
    margin-bottom: 25px;
}

.feature-item h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #2c3e50;
}

.feature-item p {
    color: #7f8c8d;
    font-size: 1.2rem;
}

/* Brands Section */
.brands-section {
    padding: 80px 0;
    background-color: #f8f9fa;
    margin: 0;
}

.brands-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #2c3e50;
}

.brands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 40px;
    align-items: center;
    justify-items: center;
}

.brands-grid img {
    max-width: 100%;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.brands-grid img:hover {
    filter: grayscale(0%);
}

/* Contact Section */
.contact-section {
    padding: 100px 0;
    background-color: #fff;
    margin: 0;
}

.contact-section h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 50px;
    color: #2c3e50;
}

.contact-form {
    max-width: 700px;
    margin: 0 auto;
    padding: 40px;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

/* Contact Form 7 Customization */
.wpcf7-form {
    display: grid;
    gap: 25px;
}

.wpcf7-form label {
    display: block;
    margin-bottom: 8px;
    color: #2c3e50;
    font-size: 1.1rem;
}

.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form input[type="tel"],
.wpcf7-form textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1.1rem;
}

.wpcf7-form input[type="submit"] {
    background-color: #e74c3c;
    color: white;
    padding: 20px 40px;
    border: none;
    border-radius: 30px;
    font-size: 1.2rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: 100%;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .hero-section {
        padding: 40px 0;
    }

    .hero-section .container {
        flex-direction: column;
        text-align: center;
    }

    .hero-content h1 {
        font-size: 2.8rem;
    }

    .hero-subtitle {
        font-size: 1.4rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .brands-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

/* Header Styles */
.site-header {
    background-color: #000;
    padding: 15px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.site-branding {
    display: flex;
    align-items: center;
}

.site-title a {
    color: #FFD700;
    text-decoration: none;
    font-size: 1.8rem;
    font-weight: bold;
    transition: color 0.3s ease;
}

.site-title a:hover {
    color: #FFC107;
}

.custom-logo-link img {
    max-height: 60px;
    width: auto;
}

.main-navigation {
    display: flex;
    align-items: center;
}

.main-navigation ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.main-navigation li {
    margin: 0 15px;
}

.main-navigation a {
    color: #FFD700;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.main-navigation a:hover {
    color: #FFC107;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: #FFD700;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 5px;
}

/* Footer Styles */
.site-footer {
    background-color: #000;
    color: #FFD700;
    padding: 60px 0 20px;
    margin-top: 0;
}

.footer-widgets {
    margin-bottom: 40px;
}

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

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

.footer-column .widget {
    margin-bottom: 30px;
}

.footer-column .widget-title {
    color: #FFD700;
    font-size: 1.5rem;
    margin-bottom: 20px;
    font-weight: bold;
    position: relative;
    padding-bottom: 10px;
}

.footer-column .widget-title:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background-color: #FFD700;
}

.footer-column p,
.footer-column a {
    color: #FFD700;
    text-decoration: none;
    transition: color 0.3s ease;
    margin-bottom: 10px;
    display: block;
}

.footer-column a:hover {
    color: #FFC107;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 215, 0, 0.2);
}

.copyright p {
    margin: 0;
    color: #FFD700;
}

/* Responsive Footer */
@media (max-width: 992px) {
    .footer-columns {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .footer-columns {
        grid-template-columns: 1fr;
    }
    
    .footer-column {
        text-align: center;
    }
    
    .footer-column .widget-title:after {
        left: 50%;
        transform: translateX(-50%);
    }
}

/* Responsive Header */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .main-navigation ul {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: #000;
        padding: 20px;
        flex-direction: column;
    }

    .main-navigation.toggled ul {
        display: flex;
    }

    .main-navigation li {
        margin: 10px 0;
    }
}

/* Main Layout Styles */
.main-layout {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 40px;
    padding: 40px 0;
    background-color: #f8f9fa;
}

.main-content-area {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.custom-sidebar {
    background-color: #000;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.custom-sidebar .widget {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
}

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

.custom-sidebar .widget-title {
    color: #FFD700;
    font-size: 1.4rem;
    margin-bottom: 20px;
    font-weight: bold;
    position: relative;
    padding-bottom: 10px;
}

.custom-sidebar .widget-title:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background-color: #FFD700;
}

.custom-sidebar ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.custom-sidebar ul li {
    margin-bottom: 12px;
}

.custom-sidebar ul li:last-child {
    margin-bottom: 0;
}

.custom-sidebar a {
    color: #FFD700;
    text-decoration: none;
    transition: color 0.3s ease;
    display: block;
    padding: 5px 0;
}

.custom-sidebar a:hover {
    color: #FFC107;
}

/* Blog Post Styles */
.blog-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 30px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
}

.blog-thumbnail {
    position: relative;
    overflow: hidden;
}

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

.blog-content {
    padding: 25px;
}

.entry-title {
    margin: 0 0 15px;
    font-size: 1.8rem;
}

.entry-title a {
    color: #2c3e50;
    text-decoration: none;
    transition: color 0.3s ease;
}

.entry-title a:hover {
    color: #e74c3c;
}

.entry-meta {
    color: #7f8c8d;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.entry-meta span {
    margin-right: 15px;
}

.entry-meta a {
    color: #7f8c8d;
    text-decoration: none;
}

.entry-meta a:hover {
    color: #e74c3c;
}

.entry-content {
    color: #34495e;
    line-height: 1.6;
    margin-bottom: 20px;
}

.read-more {
    display: inline-block;
    padding: 10px 25px;
    background-color: #e74c3c;
    color: white;
    text-decoration: none;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.read-more:hover {
    background-color: #c0392b;
    transform: translateY(-2px);
}

/* Single Post/Page Layout */
.single .main-layout,
.page .main-layout {
    grid-template-columns: 1fr;
}

.single .main-content-area,
.page .main-content-area {
    max-width: 800px;
    margin: 0 auto;
}

.single .entry-content,
.page .entry-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #2c3e50;
}

.single .entry-content p,
.page .entry-content p {
    margin-bottom: 1.5em;
}

.single .entry-content img,
.page .entry-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 1.5em 0;
}

.single .entry-content h2,
.page .entry-content h2 {
    font-size: 2rem;
    margin: 1.5em 0 1em;
    color: #2c3e50;
}

.single .entry-content h3,
.page .entry-content h3 {
    font-size: 1.6rem;
    margin: 1.5em 0 1em;
    color: #2c3e50;
}

/* Responsive Layout */
@media (max-width: 992px) {
    .main-layout {
        grid-template-columns: 1fr;
    }

    .custom-sidebar {
        order: -1;
    }

    .single .main-content-area,
    .page .main-content-area {
        padding: 20px;
    }
} 