/* CSS Variables for Dark Theme */
:root {
  --background: #0a0b14;
  --foreground: #f8fafc;
  --card: #1e1f2e;
  --card-foreground: #f8fafc;
  --primary: #60a5fa;
  --primary-foreground: #f8fafc;
  --secondary: #1e293b;
  --secondary-foreground: #f8fafc;
  --muted: #1e293b;
  --muted-foreground: #94a3b8;
  --accent: #334155;
  --accent-foreground: #f8fafc;
  --border: #334155;
  --radius: 0.625rem;
}

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
  background-color: var(--background);
  color: var(--foreground);
  line-height: 1.6;
  min-height: 100vh;
}

.min-h-screen {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Container and Layout */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.content-wrapper {
  text-align: center;
  max-width: 64rem;
  width: 100%;
}

/* Logo Section */
.logo-section {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 3rem;
}

.logo {
  height: 4rem;
  width: 4rem;
  margin-right: 1rem;
}

.brand-text {
  font-size: 2.25rem;
  font-weight: bold;
}

/* Typography */
.main-heading {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 2rem;
  line-height: 1.1;
}

.subheading {
  font-size: 1.5rem;
  color: var(--muted-foreground);
  margin-bottom: 4rem;
  font-weight: 300;
}

.team-heading {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 3rem;
}

/* Gradient Text Effect */
.gradient-text {
  background: linear-gradient(135deg, #60a5fa, #a78bfa);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradient-shift 3s ease-in-out infinite;
}

@keyframes gradient-shift {
  0%, 100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

.primary-text {
  color: var(--primary);
}

/* Company Button */
.company-link-section {
  margin-bottom: 5rem;
}

.company-button {
  display: inline-flex;
  align-items: center;
  background-color: var(--primary);
  color: var(--primary-foreground);
  padding: 1.5rem 2rem;
  border-radius: var(--radius);
  text-decoration: none;
  font-size: 1.125rem;
  font-weight: 500;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.company-button:hover {
  background-color: #3b82f6;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(96, 165, 250, 0.3);
}

.external-link-icon {
  margin-left: 0.5rem;
  width: 1.25rem;
  height: 1.25rem;
}

/* Team Section */
.team-section {
  margin-bottom: 2rem;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 64rem;
  margin: 0 auto;
}

.team-card {
  background-color: rgba(30, 31, 46, 0.5);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(51, 65, 85, 0.5);
  border-radius: var(--radius);
  padding: 2rem;
  transition: all 0.3s ease;
}

.team-card:hover {
  transform: translateY(-5px);
  border-color: rgba(96, 165, 250, 0.5);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.team-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.profile-image {
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  margin: 0 auto 1.5rem;
  object-fit: cover;
  border: 2px solid rgba(96, 165, 250, 0.2);
  transition: all 0.3s ease;
}

.profile-image:hover {
  border-color: rgba(96, 165, 250, 0.5);
  transform: scale(1.05);
}

.member-name {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.member-title {
  color: var(--muted-foreground);
  margin-bottom: 1rem;
}

.linkedin-link {
  display: inline-flex;
  align-items: center;
  color: var(--primary);
  font-size: 0.875rem;
  transition: color 0.3s ease;
}

.linkedin-link:hover {
  color: #3b82f6;
}

.linkedin-icon {
  margin-left: 0.25rem;
  width: 1rem;
  height: 1rem;
}

/* Footer */
.footer {
  border-top: 1px solid rgba(51, 65, 85, 0.5);
  padding: 2rem 0;
  margin-top: auto;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
  text-align: center;
}

.footer-text {
  color: var(--muted-foreground);
}

/* Animations */
.fade-in {
  animation: fadeIn 1s ease-in;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .main-heading {
    font-size: 2rem;
  }
  
  .subheading {
    font-size: 1.25rem;
  }
  
  .team-heading {
    font-size: 1.75rem;
  }
  
  .brand-text {
    font-size: 1.875rem;
  }
  
  .logo {
    height: 3rem;
    width: 3rem;
  }
  
  .container {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
  
  .team-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .company-button {
    padding: 1.25rem 1.5rem;
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .main-heading {
    font-size: 1.75rem;
  }
  
  .subheading {
    font-size: 1.125rem;
  }
  
  .brand-text {
    font-size: 1.5rem;
  }
  
  .logo-section {
    flex-direction: column;
    gap: 1rem;
  }
  
  .logo {
    margin-right: 0;
  }
}

