/* ===== HAKKIMIZDA SAYFASI STİLLERİ ===== */

/* Genel Stiller */
:root {
    --primary-color: #2E8B57;
    --secondary-color: #20B2AA;
    --accent-color: #32CD32;
    --dark-color: #1a1a1a;
    --light-color: #f8f9fa;
    --success-color: #28a745;
    --warning-color: #ffc107;
    --danger-color: #dc3545;
    --text-dark: #2c3e50;
    --text-light: #6c757d;
    --border-radius: 15px;
    --box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Container genişlikleri */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

@media (min-width: 576px) {
    .container {
        max-width: 540px;
    }
}

@media (min-width: 768px) {
    .container {
        max-width: 720px;
    }
}

@media (min-width: 992px) {
    .container {
        max-width: 960px;
    }
}

@media (min-width: 1200px) {
    .container {
        max-width: 1140px;
    }
}

@media (min-width: 1400px) {
    .container {
        max-width: 1320px;
    }
}

/* Sayfa Başlığı */
.page-header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 4rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
    position: relative;
    z-index: 2;
}

/* Hakkımızda Bölümü */
.about-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.about-content {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
    transition: var(--transition);
}

.about-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.about-title {
    text-align: center;
    margin-bottom: 3rem;
}

.about-title h2 {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.about-title p {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 2rem;
}

.about-text p {
    margin-bottom: 1.5rem;
}

.about-text strong {
    color: var(--primary-color);
    font-weight: 700;
}

/* Misyon Vizyon */
.mission-vision {
    padding: 4rem 0;
    background: white;
}

.mission-card,
.vision-card {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    height: 100%;
    border: 2px solid transparent;
}

.mission-card:hover,
.vision-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-color);
}

.mission-icon,
.vision-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: var(--transition);
}

.mission-icon i,
.vision-icon i {
    font-size: 2rem;
    color: white;
}

.mission-card:hover .mission-icon,
.vision-card:hover .vision-icon {
    transform: scale(1.1) rotate(5deg);
}

.mission-card h3,
.vision-card h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.mission-card p,
.vision-card p {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 1rem;
}

/* Değerlerimiz */
.values-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.values-title {
    text-align: center;
    margin-bottom: 3rem;
}

.values-title h2 {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.values-title p {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

.value-item {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    height: 100%;
    border: 2px solid transparent;
}

.value-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-color);
}

.value-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    transition: var(--transition);
}

.value-icon i {
    font-size: 1.5rem;
    color: white;
}

.value-item:hover .value-icon {
    transform: scale(1.1);
}

.value-item h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.value-item p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Ekip */
.team-section {
    padding: 4rem 0;
    background: white;
}

.team-title {
    text-align: center;
    margin-bottom: 3rem;
}

.team-title h2 {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.team-title p {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

.team-member {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    height: 100%;
    border: 2px solid transparent;
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-color);
}

.member-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    overflow: hidden;
    border: 4px solid var(--primary-color);
    transition: var(--transition);
}

.member-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-member:hover .member-photo {
    transform: scale(1.05);
    border-color: var(--secondary-color);
}

.member-name {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.member-role {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.member-description {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Gelişmiş Responsive Tasarım */
@media (max-width: 1400px) {
    .page-header h1 {
        font-size: 2.8rem;
    }
    
    .page-header p {
        font-size: 1.1rem;
    }
    
    .about-title h2,
    .values-title h2,
    .team-title h2 {
        font-size: 2.2rem;
    }
}

@media (max-width: 1200px) {
    .page-header h1 {
        font-size: 2.5rem;
    }
    
    .page-header p {
        font-size: 1rem;
    }
    
    .about-content {
        padding: 2.5rem;
    }
    
    .about-title h2,
    .values-title h2,
    .team-title h2 {
        font-size: 2rem;
    }
    
    .about-title p,
    .values-title p,
    .team-title p {
        font-size: 1rem;
    }
    
    .about-text {
        font-size: 1rem;
    }
    
    .mission-card,
    .vision-card {
        padding: 2rem;
    }
    
    .value-item {
        padding: 1.5rem;
    }
    
    .team-member {
        padding: 1.5rem;
    }
}

@media (max-width: 992px) {
    .page-header {
        padding: 3rem 0;
    }
    
    .page-header h1 {
        font-size: 2.2rem;
    }
    
    .page-header p {
        font-size: 0.95rem;
    }
    
    .about-section,
    .mission-vision,
    .values-section,
    .team-section {
        padding: 3rem 0;
    }
    
    .about-content {
        padding: 2rem;
    }
    
    .about-title h2,
    .values-title h2,
    .team-title h2 {
        font-size: 1.8rem;
    }
    
    .about-title p,
    .values-title p,
    .team-title p {
        font-size: 1rem;
    }
    
    .about-text {
        font-size: 1rem;
    }
    
    .mission-card,
    .vision-card {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .mission-icon,
    .vision-icon {
        width: 60px;
        height: 60px;
    }
    
    .mission-icon i,
    .vision-icon i {
        font-size: 1.5rem;
    }
    
    .mission-card h3,
    .vision-card h3 {
        font-size: 1.5rem;
    }
    
    .value-item {
        padding: 1.2rem;
        margin-bottom: 1rem;
    }
    
    .value-icon {
        width: 50px;
        height: 50px;
    }
    
    .value-icon i {
        font-size: 1.2rem;
    }
    
    .value-item h4 {
        font-size: 1.1rem;
    }
    
    .team-member {
        padding: 1.2rem;
        margin-bottom: 1rem;
    }
    
    .member-photo {
        width: 100px;
        height: 100px;
    }
    
    .member-name {
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    .page-header {
        padding: 2.5rem 0;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .page-header p {
        font-size: 0.9rem;
    }
    
    .about-section,
    .mission-vision,
    .values-section,
    .team-section {
        padding: 2rem 0;
    }
    
    .about-content {
        padding: 1.5rem;
    }
    
    .about-title h2,
    .values-title h2,
    .team-title h2 {
        font-size: 1.6rem;
    }
    
    .about-title p,
    .values-title p,
    .team-title p {
        font-size: 0.9rem;
    }
    
    .about-text {
        font-size: 0.95rem;
    }
    
    .mission-card,
    .vision-card {
        padding: 1.2rem;
        margin-bottom: 1rem;
    }
    
    .mission-icon,
    .vision-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 1rem;
    }
    
    .mission-icon i,
    .vision-icon i {
        font-size: 1.2rem;
    }
    
    .mission-card h3,
    .vision-card h3 {
        font-size: 1.3rem;
    }
    
    .mission-card p,
    .vision-card p {
        font-size: 0.9rem;
    }
    
    .value-item {
        padding: 1rem;
        margin-bottom: 0.8rem;
    }
    
    .value-icon {
        width: 45px;
        height: 45px;
    }
    
    .value-icon i {
        font-size: 1.1rem;
    }
    
    .value-item h4 {
        font-size: 1rem;
    }
    
    .value-item p {
        font-size: 0.85rem;
    }
    
    .team-member {
        padding: 1rem;
        margin-bottom: 0.8rem;
    }
    
    .member-photo {
        width: 80px;
        height: 80px;
        margin-bottom: 1rem;
    }
    
    .member-name {
        font-size: 1rem;
    }
    
    .member-role {
        font-size: 0.9rem;
    }
    
    .member-description {
        font-size: 0.85rem;
    }
}

@media (max-width: 576px) {
    .page-header {
        padding: 2rem 0;
    }
    
    .page-header h1 {
        font-size: 1.8rem;
    }
    
    .page-header p {
        font-size: 0.85rem;
    }
    
    .about-section,
    .mission-vision,
    .values-section,
    .team-section {
        padding: 1.5rem 0;
    }
    
    .about-content {
        padding: 1rem;
    }
    
    .about-title h2,
    .values-title h2,
    .team-title h2 {
        font-size: 1.4rem;
    }
    
    .about-title p,
    .values-title p,
    .team-title p {
        font-size: 0.85rem;
    }
    
    .about-text {
        font-size: 0.9rem;
    }
    
    .mission-card,
    .vision-card {
        padding: 1rem;
        margin-bottom: 0.8rem;
    }
    
    .mission-icon,
    .vision-icon {
        width: 40px;
        height: 40px;
        margin-bottom: 0.8rem;
    }
    
    .mission-icon i,
    .vision-icon i {
        font-size: 1rem;
    }
    
    .mission-card h3,
    .vision-card h3 {
        font-size: 1.2rem;
    }
    
    .mission-card p,
    .vision-card p {
        font-size: 0.85rem;
    }
    
    .value-item {
        padding: 0.8rem;
        margin-bottom: 0.6rem;
    }
    
    .value-icon {
        width: 35px;
        height: 35px;
    }
    
    .value-icon i {
        font-size: 1rem;
    }
    
    .value-item h4 {
        font-size: 0.9rem;
    }
    
    .value-item p {
        font-size: 0.8rem;
    }
    
    .team-member {
        padding: 0.8rem;
        margin-bottom: 0.6rem;
    }
    
    .member-photo {
        width: 70px;
        height: 70px;
        margin-bottom: 0.8rem;
    }
    
    .member-name {
        font-size: 0.9rem;
    }
    
    .member-role {
        font-size: 0.8rem;
    }
    
    .member-description {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .page-header h1 {
        font-size: 1.6rem;
    }
    
    .page-header p {
        font-size: 0.8rem;
    }
    
    .about-content {
        padding: 0.8rem;
    }
    
    .about-title h2,
    .values-title h2,
    .team-title h2 {
        font-size: 1.3rem;
    }
    
    .about-title p,
    .values-title p,
    .team-title p {
        font-size: 0.8rem;
    }
    
    .about-text {
        font-size: 0.85rem;
    }
    
    .mission-card,
    .vision-card {
        padding: 0.8rem;
    }
    
    .mission-icon,
    .vision-icon {
        width: 35px;
        height: 35px;
        margin-bottom: 0.6rem;
    }
    
    .mission-icon i,
    .vision-icon i {
        font-size: 0.9rem;
    }
    
    .mission-card h3,
    .vision-card h3 {
        font-size: 1.1rem;
    }
    
    .mission-card p,
    .vision-card p {
        font-size: 0.8rem;
    }
    
    .value-item {
        padding: 0.6rem;
    }
    
    .value-icon {
        width: 30px;
        height: 30px;
    }
    
    .value-icon i {
        font-size: 0.9rem;
    }
    
    .value-item h4 {
        font-size: 0.85rem;
    }
    
    .value-item p {
        font-size: 0.75rem;
    }
    
    .team-member {
        padding: 0.6rem;
    }
    
    .member-photo {
        width: 60px;
        height: 60px;
        margin-bottom: 0.6rem;
    }
    
    .member-name {
        font-size: 0.85rem;
    }
    
    .member-role {
        font-size: 0.75rem;
    }
    
    .member-description {
        font-size: 0.75rem;
    }
}

/* Touch Device Optimizasyonları */
@media (hover: none) and (pointer: coarse) {
    .about-content:hover,
    .mission-card:hover,
    .vision-card:hover,
    .value-item:hover,
    .team-member:hover {
        transform: none;
    }
}

/* Landscape Orientation */
@media (orientation: landscape) and (max-height: 500px) {
    .page-header {
        padding: 1.5rem 0;
    }
    
    .page-header h1 {
        font-size: 1.5rem;
    }
    
    .page-header p {
        font-size: 0.8rem;
    }
    
    .about-section,
    .mission-vision,
    .values-section,
    .team-section {
        padding: 1rem 0;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
    .about-content,
    .mission-card,
    .vision-card,
    .value-item,
    .team-member {
        border: 2px solid var(--text-dark);
    }
}

/* Print Styles */
@media print {
    .about-content,
    .mission-card,
    .vision-card,
    .value-item,
    .team-member {
        box-shadow: none;
        border: 1px solid #ddd;
    }
    
    .member-photo {
        border: 2px solid #ddd;
    }
} 