About.css 1.87 KB
Newer Older
fisherdaddy's avatar
fisherdaddy committed
1
.about-section {
2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98
  padding: 4rem 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.about-header {
  text-align: center;
  margin-bottom: 4rem;
}

.about-header h1 {
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, #6366F1 0%, #4F46E5 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 1rem;
}

.about-header p {
  font-size: 1.2rem;
  color: #4B5563;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.about-card {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 8px 32px rgba(99, 102, 241, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.about-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 24px rgba(99, 102, 241, 0.15);
  border-color: rgba(99, 102, 241, 0.3);
}

.about-card h2 {
  font-size: 1.5rem;
  color: #1a1a1a;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.about-card p {
  color: #4B5563;
  line-height: 1.6;
}

.social-links {
  display: flex;
  gap: 1.5rem;
  margin-top: 2rem;
  justify-content: center;
}

.social-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #6366F1;
  font-size: 1.1rem;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  background: rgba(99, 102, 241, 0.1);
  transition: all 0.3s ease;
}

.social-link i {
  margin-right: 0.5rem;
  font-size: 1.2rem;
}

.social-link:hover {
  background: rgba(99, 102, 241, 0.2);
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .about-section {
    padding: 2rem 1rem;
fisherdaddy's avatar
fisherdaddy committed
99 100
  }
  
101 102
  .about-header h1 {
    font-size: 2rem;
fisherdaddy's avatar
fisherdaddy committed
103 104
  }
  
105 106
  .about-grid {
    grid-template-columns: 1fr;
fisherdaddy's avatar
fisherdaddy committed
107
  }
108
}