/* Hakkımızda Sayfası CSS - ASEC Kulübü */

/* Ana Renkler
- Ana Renk (Lacivert): #1B1F3B
- Gece Mavisi: #2C3E50
- Mor: #6A0DAD
- Koyu Mor: #4B0082
- Menekşe: #9370DB
- Sistem Moru: #B39DDB
- Açık Mor: #E6E6FA
*/

/* Ana Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Hakkımızda Header Bölümü */
.about-header {
    background: linear-gradient(135deg, #1B1F3B 0%, #4B0082 100%);
    color: #FFFFFF;
    padding: 5rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.about-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 20 20"><rect width="20" height="20" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></svg>');
    opacity: 0.3;
    z-index: 1;
}

.about-header h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
}

.about-header p {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.2rem;
    line-height: 1.8;
    position: relative;
    z-index: 2;
}

/* Hero Bölümü */
.about-hero {
    padding: 5rem 2rem;
    background-color: #f9f9f9;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 4rem;
}

.hero-text {
    flex: 1;
}

.hero-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1B1F3B;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 1rem;
}

.hero-text h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #6A0DAD, #9370DB);
    border-radius: 2px;
}

.hero-text p {
    font-size: 1.1rem;
    color: #444;
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

.hero-stats {
    display: flex;
    gap: 2.5rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #6A0DAD;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: #555;
    font-weight: 500;
}

.hero-image {
    flex: 1;
    position: relative;
}

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

/* Vizyon & Misyon Bölümü */
.vision-mission-section {
    padding: 5rem 2rem;
    background-color: #fff;
    position: relative;
    overflow: hidden;
}

.vision-mission-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(27, 31, 59, 0.02) 0%, rgba(106, 13, 173, 0.02) 100%);
    z-index: 1;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.section-header h2 {
    font-size: 2.8rem;
    font-weight: 700;
    color: #1B1F3B;
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    width: 100%;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #6A0DAD, #9370DB);
    border-radius: 2px;
    margin: 0 auto;
}

.divider {
    display: none; /* Artık h2::after kullanıyoruz */
}

.vision-mission-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.vision-card, .mission-card {
    background-color: #FFFFFF;
    border-radius: 15px;
    padding: 3rem 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.5s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    z-index: 1;
}

.vision-card::before, .mission-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #6A0DAD, #9370DB);
    transition: all 0.5s ease;
    z-index: -1;
}

.vision-card:hover, .mission-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 15px 40px rgba(106, 13, 173, 0.15);
}

.vision-card:hover::before, .mission-card:hover::before {
    height: 100%;
    opacity: 0.05;
}

.icon-container {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    position: relative;
    font-size: 3rem;
    background: linear-gradient(135deg, #6A0DAD, #9370DB);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.icon-container::after {
    content: '';
    position: absolute;
    width: 80px;
    height: 80px;
    background-color: rgba(106, 13, 173, 0.05);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
    transition: all 0.5s ease;
}

.vision-card:hover .icon-container::after, 
.mission-card:hover .icon-container::after {
    width: 90px;
    height: 90px;
    background-color: rgba(106, 13, 173, 0.1);
}

.vision-card h3, .mission-card h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #1B1F3B;
    margin-bottom: 1.2rem;
    transition: all 0.3s ease;
}

.vision-card:hover h3, .mission-card:hover h3 {
    color: #6A0DAD;
}

.vision-card p, .mission-card p {
    font-size: 1.05rem;
    color: #666;
    line-height: 1.8;
}

/* Değerler Bölümü */
.values-section {
    padding: 5rem 2rem;
    background-color: #f9f9f9;
    position: relative;
    overflow: hidden;
}

.values-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(27, 31, 59, 0.02) 0%, rgba(106, 13, 173, 0.02) 100%);
    z-index: 1;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.value-card {
    background-color: #FFFFFF;
    border-radius: 15px;
    padding: 2.5rem 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.5s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    z-index: 1;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #6A0DAD, #9370DB);
    transition: all 0.5s ease;
    z-index: -1;
}

.value-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 15px 40px rgba(106, 13, 173, 0.15);
}

.value-card:hover::before {
    height: 100%;
    opacity: 0.05;
}

.value-card .icon-container {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    position: relative;
    font-size: 2.2rem;
    background: linear-gradient(135deg, #6A0DAD, #9370DB);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.value-card .icon-container::after {
    content: '';
    position: absolute;
    width: 70px;
    height: 70px;
    background-color: rgba(106, 13, 173, 0.05);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
    transition: all 0.5s ease;
}

.value-card:hover .icon-container::after {
    width: 80px;
    height: 80px;
    background-color: rgba(106, 13, 173, 0.1);
}

.value-card h4 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #1B1F3B;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.value-card:hover h4 {
    color: #6A0DAD;
}

.value-card p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
}

/* Animasyonlar */
.animate-fade-in {
    opacity: 0;
    animation: fadeIn 1s ease forwards;
}

.animate-slide-up {
    opacity: 0;
    transform: translateY(30px);
    animation: slideUp 1s ease forwards;
}

.animate-scale-up {
    opacity: 0;
    transform: scale(0.9);
    animation: scaleUp 1s ease forwards;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@keyframes slideUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scaleUp {
    0% {
        opacity: 0;
        transform: scale(0.9);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

/* Responsive Tasarım */
@media (max-width: 992px) {
    .hero-content {
        flex-direction: column;
        gap: 3rem;
    }
    
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .about-header h2 {
        font-size: 2.5rem;
    }
    
    .about-header p {
        font-size: 1.1rem;
    }
    
    .hero-text h2 {
        font-size: 2.2rem;
    }
    
    .section-header h2 {
        font-size: 2.2rem;
    }
    
    .vision-mission-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-stats {
        justify-content: space-between;
        width: 100%;
    }
}

@media (max-width: 576px) {
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .vision-card, .mission-card, .value-card {
        padding: 1.8rem;
    }
}
