/* About Page Styles */
.about-page {
    direction: rtl;
    text-align: start;
}

/* Hero Section */
.about-hero {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.about-hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1rem;
    text-align: start;
}

.about-hero-content .lead {
    font-size: 1.25rem;
    color: #6c757d;
    margin-bottom: 1.5rem;
    text-align: start;
}

.about-hero-content .about-hero-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #495057;
    text-align: start;
}

.about-hero-image img {
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Stats Section */
.about-stats {
    padding: 60px 0;
    background: #fff;
}

.stat-item {
    padding: 30px 20px;
    text-align: center;
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #d32f2f;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    color: #6c757d;
    font-weight: 500;
}

/* Story Section */
.about-story {
    padding: 80px 0;
    background: #f8f9fa;
}

.about-story-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    text-align: start;
}

.about-story-content .about-story-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #495057;
    text-align: start;
}

.about-story-image img {
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Values Section */
.about-values {
    padding: 80px 0;
    background: #fff;
}

.section-header {
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.2rem;
    color: #6c757d;
}

.value-item {
    text-align: center;
    padding: 40px 20px;
    margin-bottom: 30px;
    transition: transform 0.3s ease;
}

.value-item:hover {
    transform: translateY(-10px);
}

.value-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #d32f2f 0%, #b71c1c 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.value-icon i {
    font-size: 2rem;
    color: #fff;
}

.value-item h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.value-item p {
    font-size: 1rem;
    color: #6c757d;
    line-height: 1.6;
}

/* Instagram Section */
.about-instagram {
    padding: 80px 0;
    background: #f8f9fa;
}

.instagram-grid {
    margin-bottom: 40px;
}

.instagram-item {
    position: relative;
    margin-bottom: 20px;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.instagram-item:hover {
    transform: scale(1.05);
}

.instagram-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.instagram-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.instagram-item:hover .instagram-overlay {
    opacity: 1;
}

.instagram-overlay i {
    font-size: 2rem;
    color: #fff;
}

/* Team Section */
.about-team {
    padding: 80px 0;
    background: #fff;
}

.team-member {
    text-align: center;
    margin-bottom: 30px;
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
}

.member-image {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 20px;
    border: 4px solid #d32f2f;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.member-info h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.member-info p {
    font-size: 1rem;
    color: #6c757d;
}

/* Buttons */
.btn-primary {
    background: linear-gradient(135deg, #d32f2f 0%, #b71c1c 100%);
    border: none;
    padding: 12px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #b71c1c 0%, #8e0000 100%);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 47, 47, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
    .about-hero-content h1 {
        font-size: 2rem;
    }
    
    .about-hero-content .lead {
        font-size: 1.1rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .about-story-content h2,
    .section-header h2 {
        font-size: 2rem;
    }
    
    .value-item {
        padding: 30px 15px;
    }
    
    .member-image {
        width: 150px;
        height: 150px;
    }
    
    .instagram-item img {
        height: 200px;
    }
}

@media (max-width: 576px) {
    .about-hero {
        padding: 60px 0;
    }
    
    .about-hero-content h1 {
        font-size: 1.8rem;
    }
    
    .stat-item {
        padding: 20px 10px;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .value-icon {
        width: 60px;
        height: 60px;
    }
    
    .value-icon i {
        font-size: 1.5rem;
    }
    
    .instagram-item img {
        height: 150px;
    }
} 