/*
Theme Name: قالب اختصاصی
Theme URI: https://skymabiz.com
Author: شما
Author URI: https://skymabiz.com
Description: قالب اختصاصی ساخته شده با Bootstrap 4
Version: 1.1.1
License: GPL v2 or later
Text Domain: skytheme
Tags: bootstrap, rtl-language-support, custom-menu
*/

/* ==================================================
   استایل‌های اصلی قالب
   ================================================== */

body {
    background-color: #f0f2f5;
    font-family: 'Tahoma', 'Arial', sans-serif;
}

/* استایل هدر */
.custom-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

/* استایل لوگو */
.logo {
    color: white;
    font-size: 28px;
    font-weight: bold;
    text-decoration: none;
}

.logo:hover {
    color: #ffd700;
    text-decoration: none;
}

/* استایل منو */
.nav-menu .nav-link {
    color: white !important;
    font-weight: 500;
    margin: 0 10px;
    transition: all 0.3s ease;
}

.nav-menu .nav-link:hover {
    color: #ffd700 !important;
    transform: translateY(-2px);
}

/* استایل جستجو */
.search-box {
    background: rgba(255,255,255,0.2);
    border: none;
    color: white;
    border-radius: 25px;
    padding: 8px 15px;
}

.search-box::placeholder {
    color: rgba(255,255,255,0.7);
}

.search-btn {
    background: #ffd700;
    border: none;
    border-radius: 25px;
    padding: 8px 20px;
    color: #333;
    font-weight: bold;
}

.search-btn:hover {
    background: #ffed4a;
}

/* استایل اسلایدر */
.carousel-item {
    height: 500px;
}

.carousel-item img {
    object-fit: cover;
    height: 100%;
    width: 100%;
}

.carousel-caption {
    background: rgba(0,0,0,0.6);
    border-radius: 10px;
    padding: 20px;
    bottom: 30%;
}

.carousel-caption h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.carousel-caption p {
    font-size: 20px;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: rgba(0,0,0,0.5);
    border-radius: 50%;
    padding: 20px;
}

.carousel-indicators li {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin: 0 5px;
}

/* استایل فوتر */
.footer {
    background: #2d3436;
    color: white;
    padding: 40px 0 20px 0;
    margin-top: 50px;
}

.footer a {
    color: #ffd700;
    text-decoration: none;
}

.footer a:hover {
    color: white;
}

.copyright {
    background: #1e272e;
    padding: 15px 0;
    text-align: center;
    color: #95a5a6;
}

.contact-info i {
    margin-left: 10px;
    color: #ffd700;
}

/* استایل محتوای اصلی */
.entry-content {
    line-height: 1.8;
}

article {
    background: white;
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 30px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

/* واکنش‌گرا برای موبایل */
@media (max-width: 768px) {
    .carousel-item {
        height: 300px;
    }
    
    .carousel-caption h1 {
        font-size: 24px;
    }
    
    .carousel-caption p {
        font-size: 14px;
    }
    
    .custom-header {
        text-align: center;
    }
}