/* assets/css/style.css */

/* تنظیمات کلی */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    background-color: #f8f9fa;
}

/* هدر */
header {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar-nav .nav-link {
    padding: 0.5rem 1rem;
    font-weight: 500;
}

/* بخش اصلی */
.hero-section {
    background: linear-gradient(135deg, #f5f7fa 0%, #e4e8eb 100%);
    border-radius: 10px;
    margin-top: 20px;
}

/* کارت‌ها */
.card {
    border: none;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
    transition: transform 0.3s ease;
}

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

.card-header {
    border-bottom: none;
}

/* فوتر */
footer {
    background-color: #343a40;
    margin-top: 50px;
}

footer a {
    color: #adb5bd;
    text-decoration: none;
    transition: color 0.3s;
}

footer a:hover {
    color: white;
}

/* فرم‌ها */
.form-control {
    padding: 10px 15px;
    margin-bottom: 15px;
}

.btn {
    padding: 10px 20px;
    font-weight: 500;
}

/* صفحه درباره ما */
.teacher-card {
    border-left: 4px solid #007bff;
}

/* صفحه تماس با ما */
.map-container {
    border-radius: 8px;
    overflow: hidden;
}

/* رسید پرداخت */
.table th {
    white-space: nowrap;
    width: 30%;
}

/* رسپانسیو */
@media (max-width: 768px) {
    .hero-section .col-md-6 {
        text-align: center;
        margin-bottom: 20px;
    }
    
    .navbar-nav {
        margin-top: 10px;
    }
}