/* GENEL SAYFA */
.investors-page {
  padding-top: 80px;
  min-height: 100vh;
  background-color: #FAFAFA;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: #1A1A1A;
}

/* HEADER */
.investors-header {
  background: linear-gradient(90deg, #E8DFF5 0%, #A0526F 100%);
  color: #FFFFFF;
  padding: 6rem 2rem 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.investors-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(232, 223, 245, 0.1) 0%, rgba(160, 82, 111, 0.1) 100%);
  z-index: 1;
}

.investors-header > * {
  position: relative;
  z-index: 2;
}

.page-title {
  font-family: 'Inter', sans-serif;
  font-size: 3.2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
  color: #FFFFFF;
}

.page-description {
  font-size: 1.1rem;
  max-width: 650px;
  margin: 0 auto;
  line-height: 1.7;
  opacity: 0.9;
  color: #E8F2FF;
  font-weight: 400;
}

/* CONTENT */
.investors-content {
  padding: 5rem 2rem;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
}

/* GRID - INVESTORS */
.investors-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

/* INVESTOR CARD */
.investor-card {
  background: #FFFFFF;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid #E5E7EB;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.investor-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
  border-color: #A0526F;
}

/* LOGO ALANI */
.investor-logo {
  background: linear-gradient(135deg, #F8FAFC 0%, #EDF2F7 100%);
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid #E5E7EB;
}

.logo-emoji {
  font-size: 4rem;
  z-index: 1;
  filter: grayscale(0.3);
}

/* BİLGİ ALANI */
.investor-info {
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  min-height: 280px;
  color: #1A1A1A;
}

.investor-name {
  font-family: 'Inter', sans-serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: #1A1A1A;
  margin-bottom: 0.5rem;
  letter-spacing: -0.01em;
}

.investor-type {
  font-size: 0.9rem;
  color: #6B7280;
  font-weight: 500;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.investor-description {
  color: #4B5563;
  line-height: 1.6;
  margin-bottom: 2rem;
  font-size: 0.95rem;
  flex-grow: 1;
}

.investment-amount {
  background-color: #F3F4F6;
  padding: 1rem 1.25rem;
  border-radius: 8px;
  margin-bottom: 2rem;
  color: #1F2937;
  font-size: 0.9rem;
  font-weight: 600;
  border-left: 4px solid #A0526F;
}

/* WEBSITE LINK */
.website-link {
  align-self: flex-start;
  background-color: #A0526F;
  color: white;
  padding: 0.875rem 1.75rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.2s ease;
  margin-top: auto;
  width: fit-content;
  font-size: 0.9rem;
  letter-spacing: 0.01em;
}

.website-link:hover {
  background-color: #923c64;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(160, 82, 111, 0.3);
}

/* SPONSORS GRID */
.sponsors-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  margin-top: 5rem;
}

/* SPONSOR CARD */
.sponsor-card {
  background: #FFFFFF;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid #E5E7EB;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.sponsor-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
  border-color: #A0526F;
}

/* SPONSOR LOGO */
.sponsor-logo {
  background: linear-gradient(135deg, #F8FAFC 0%, #EDF2F7 100%);
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid #E5E7EB;
}

/* SPONSOR INFO */
.sponsor-info {
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  min-height: 280px;
  color: #1A1A1A;
}

.sponsor-name {
  font-family: 'Inter', sans-serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: #1A1A1A;
  margin-bottom: 0.5rem;
  letter-spacing: -0.01em;
}

.sponsor-type {
  font-size: 0.9rem;
  color: #6B7280;
  font-weight: 500;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.sponsor-description {
  color: #4B5563;
  line-height: 1.6;
  margin-bottom: 2rem;
  font-size: 0.95rem;
  flex-grow: 1;
}

.partnership-type {
  background-color: #F3F4F6;
  padding: 1rem 1.25rem;
  border-radius: 8px;
  margin-bottom: 2rem;
  color: #1F2937;
  font-size: 0.9rem;
  font-weight: 600;
  border-left: 4px solid #A0526F;
}

/* SECTION BAŞLIKLARI */
.section-title {
  font-family: 'Inter', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #1A1A1A;
  text-align: center;
  margin-bottom: 3rem;
  letter-spacing: -0.02em;
}

.section-subtitle {
  font-size: 1.1rem;
  color: #6B7280;
  text-align: center;
  max-width: 600px;
  margin: 0 auto 4rem;
  line-height: 1.6;
}

/* RESPONSIVE - INVESTORS & SPONSORS */
@media (max-width: 1200px) {
  .investors-grid, .sponsors-grid {
    gap: 2rem;
  }
  
  .container {
    max-width: 1200px;
  }
}

@media (max-width: 1024px) {
  .investors-grid, .sponsors-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .investors-header {
    padding: 4rem 1.5rem 3rem;
  }

  .page-title {
    font-size: 2.8rem;
  }
  
  .section-title {
    font-size: 2.2rem;
  }
}

@media (max-width: 768px) {
  .investors-grid, .sponsors-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .investors-header {
    padding: 3rem 1rem 2rem;
  }

  .page-title {
    font-size: 2.4rem;
  }

  .page-description {
    font-size: 1rem;
  }

  .investors-content {
    padding: 3rem 1rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .investor-info, .sponsor-info {
    padding: 2rem 1.5rem;
    min-height: 260px;
  }
}

@media (max-width: 480px) {
  .page-title {
    font-size: 2rem;
  }

  .page-description {
    font-size: 0.95rem;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .investor-name, .sponsor-name {
    font-size: 1.2rem;
  }

  .investor-type, .sponsor-type {
    font-size: 0.85rem;
  }

  .investor-description, .sponsor-description {
    font-size: 0.9rem;
  }

  .website-link {
    padding: 0.75rem 1.5rem;
    font-size: 0.85rem;
  }
  
  .investor-info, .sponsor-info {
    padding: 1.5rem;
    min-height: 240px;
  }
  
  .investors-content {
    padding: 2rem 1rem;
  }
}