/* עיצוב דף אודות - ShareIt - גרסת רצועה אדומה נקייה */

.about-page {
    background-color: #f4f7f6;
    overflow-x: hidden;
}

.content-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.about-hero {
    background-color: #0d4d44; 
    color: white;
    padding: 80px 0;
    text-align: center;
}

.hero-brand-name {
    font-size: 5rem;
    font-weight: 900;
    color: #d63031; 
    letter-spacing: -2px;
    margin-bottom: 10px;
}

.about-hero h1 {
    font-size: 2.5rem;
    margin: 15px 0;
    line-height: 1.2;
    white-space: nowrap;
}

.hero-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Vision & Purpose */
.vision-section {
    padding: 80px 0;
    background: white;
}

.vision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.vision-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    text-align: center;
    border-top: 8px solid #0d4d44;
}

.purpose-card {
    border-top-color: #d63031;
}

.card-icon {
    font-size: 3rem;
    color: #0d4d44;
    margin-bottom: 20px;
}

.vision-card h2 {
    color: #0d4d44;
    margin-bottom: 15px;
    font-size: 1.8rem;
}

.vision-card p {
    line-height: 1.8;
    color: #444;
    font-size: 1.05rem;
}

/* Team Section */
.team-section {
    padding: 80px 0;
    background-color: #0d4d44; 
    color: white;
    text-align: center;
}

.section-title {
    font-size: 3rem;
    margin-bottom: 15px;
    color: white;
}

.team-intro {
    max-width: 750px;
    margin: 0 auto 50px;
    font-size: 1.15rem;
    opacity: 0.95;
    line-height: 1.6;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.team-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    padding: 30px 15px;
    border-radius: 20px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.team-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.2);
}

.member-icon {
    font-size: 2.8rem;
    color: white;
    margin-bottom: 15px;
}

.team-card h3 {
    color: white;
    font-size: 1.4rem;
    margin: 10px 0 5px;
}

.team-card p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

/* Academic Credit - רצועה אדומה ועיצוב מלבן משודרג */
.academic-credit {
    padding: 100px 0;
    background-color: #d63031; /* רצועה אדומה מלאה */
    text-align: center;
    width: 100%;
}

.credit-badge {
    display: inline-block;
    background: white;
    padding: 50px 60px;
    border-radius: 35px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
    position: relative;
    max-width: 80%;
}

/* מיקום כובע הסטודנט בתוך מלבן אדום קטן שיושב על המסגרת */
.credit-badge::before {
    content: '🎓';
    font-size: 2.2rem;
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    background: #d63031; /* רקע אדום לכובע */
    color: white;
    width: 70px;
    height: 60px;
    line-height: 65px;
    border-radius: 15px;
    border: 4px solid white; /* מסגרת לבנה עבה שמפרידה בינו לבין הרצועה */
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.credit-badge p {
    font-weight: 700;
    font-size: 1.6rem;
    margin: 5px 0;
    color: #0d4d44;
}

.credit-badge strong {
    color: #d63031; /* שם המנחה רון רוזן באדום */
}

.credit-badge small {
    display: block;
    font-size: 1.1rem;
    color: #666;
    margin-top: 10px;
    font-weight: 500;
    letter-spacing: 0.5px;
}

/* רספונסיביות */
@media (max-width: 1000px) {
    .team-grid { grid-template-columns: repeat(2, 1fr); }
    .credit-badge { max-width: 90%; padding: 40px 30px; }
}

@media (max-width: 800px) {
    .hero-brand-name { font-size: 3.5rem; }
    .about-hero h1 { font-size: 1.8rem; white-space: normal; }
} 