﻿/* Yeni Modern BaÅŸkan BÃ¶lÃ¼mÃ¼ CSS */
.president-section-2025 {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  padding: calc(var(--space-section-lg) + 1.1rem) 0;
  position: relative;
  overflow: hidden;
}

.president-section-2025::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 80%, rgba(120, 119, 198, 0.3) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 40% 40%, rgba(120, 119, 198, 0.2) 0%, transparent 50%);
  pointer-events: none;
}

.president-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-radius: 2.5rem;
  box-shadow: none !important;
  overflow: hidden;
  position: relative;
  z-index: 2;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.president-card:hover {
  transform: translateY(-10px);
  box-shadow: none !important;
}

/* BaÅŸkan Header */
.president-header {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: calc(var(--space-section-lg) + 0.6rem);
  padding: calc(var(--space-section-lg) + 0.6rem);
  align-items: center;
}



.president-photo-container {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.photo-frame {
  position: relative;
  width: 250px;
  height: 300px;
  border-radius: 2rem;
  overflow: hidden;
  box-shadow: none !important;
  transition: all 0.4s ease;
}

.photo-frame:hover {
  transform: scale(1.02);
  box-shadow: none !important;
}

.president-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.4s ease;
}

.photo-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  padding: 2rem 1.5rem 1.5rem;
  transform: translateY(100%);
  transition: all 0.4s ease;
}

.photo-frame:hover .photo-overlay {
  transform: translateY(0);
}

.overlay-content {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: white;
  font-weight: 600;
  font-size: 0.9rem;
}

.overlay-content i {
  font-size: 1.2rem;
}

/* BaÅŸkan Bilgileri */
.president-info {
  text-align: left;
}

.president-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  box-shadow: none !important;
}

.president-name {
  font-size: 3rem;
  font-weight: 900;
  color: #1a202c;
  margin-bottom: 0.5rem;
  line-height: 1.1;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.president-title {
  font-size: 1.3rem;
  color: #64748b;
  font-weight: 500;
  margin-bottom: var(--space-section);
}

.president-quote {
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  padding: calc(var(--space-card-padding) + 0.9rem);
  border-radius: 1.5rem;
  border-left: 5px solid #667eea;
  position: relative;
  box-shadow: none !important;
}

.quote-mark {
  position: absolute;
  top: -15px;
  left: 25px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  box-shadow: none !important;
}

.president-quote blockquote {
  font-size: 1.2rem;
  color: #475569;
  font-style: italic;
  margin: 0;
  line-height: 1.6;
  font-weight: 500;
}

/* BaÅŸkan Footer */
.president-footer {
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  padding: calc(var(--space-section-lg) + 0.2rem) calc(var(--space-section-lg) + 0.8rem);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: calc(var(--space-section-lg) + 0.6rem);
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.section-title {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.1rem;
  font-weight: 700;
  color: #374151;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.section-title i {
  color: #667eea;
  font-size: 1.3rem;
}

/* Sosyal Medya */
.social-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 1rem;
}

.social-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 1.5rem 1rem;
  background: white;
  border-radius: 1.5rem;
  text-decoration: none;
  color: #374151;
  transition: all 0.3s ease;
  box-shadow: none !important;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.social-item:hover {
  transform: translateY(-5px);
  box-shadow: none !important;
  text-decoration: none;
  color: #374151;
}

.social-item i {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
}

.social-item span {
  font-size: 0.9rem;
  font-weight: 600;
}

.social-item.facebook i { color: #1877f2; }
.social-item.twitter i { color: #1da1f2; }
.social-item.instagram i { color: #e4405f; }
.social-item.linkedin i { color: #0a66c2; }
.social-item.youtube i { color: #ff0000; }

/* MenÃ¼ */
.menu-grid {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.menu-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.5rem;
  background: white;
  border-radius: 1rem;
  text-decoration: none;
  color: #374151;
  transition: all 0.3s ease;
  box-shadow: none !important;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.menu-item:hover {
  transform: translateX(5px);
  box-shadow: none !important;
  text-decoration: none;
  color: #374151;
}

.menu-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.menu-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.menu-text {
  font-weight: 600;
  font-size: 1rem;
}

.menu-content i {
  color: #9ca3af;
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

.menu-item:hover .menu-content i {
  color: #667eea;
  transform: translateX(3px);
}

/* Responsive TasarÄ±m */
@media (max-width: 1024px) {
  .president-header {
    grid-template-columns: 250px 1fr;
    gap: 2rem;
    padding: 2.5rem;
  }
  
  .photo-frame {
    width: 200px;
    height: 250px;
  }
  
  .president-name {
    font-size: 2.5rem;
  }
  
  .president-footer {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 2rem 2.5rem;
  }
}

@media (max-width: 768px) {
  .president-section-2025 {
    padding: 3rem 0;
  }
  
  .president-header {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
    padding: 2rem;
  }
  
  .president-info {
    text-align: center;
  }
  
  .photo-frame {
    width: 180px;
    height: 220px;
  }
  
  .president-name {
    font-size: 2.2rem;
  }
  
  .president-footer {
    padding: 2rem;
  }
  
  .social-grid {
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
  }
}

@media (max-width: 480px) {
  .president-card {
    border-radius: 1.5rem;
  }
  
  .president-header {
    padding: 1.5rem;
  }
  
  .president-name {
    font-size: 1.8rem;
  }
  
  .president-title {
    font-size: 1.1rem;
  }
  
  .president-quote {
    padding: 1.5rem;
  }
  
  .president-quote blockquote {
    font-size: 1.1rem;
  }
  
  .president-footer {
    padding: 1.5rem;
  }
  
  .social-item {
    padding: 1rem 0.5rem;
  }
  
  .social-item i {
    font-size: 1.5rem;
  }
  
  .social-item span {
    font-size: 0.8rem;
  }
  
  .menu-item {
    padding: 0.8rem 1rem;
  }
  
  .menu-icon {
    width: 35px;
    height: 35px;
    font-size: 1rem;
  }
  
  .menu-text {
    font-size: 0.9rem;
  }
}













