* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  line-height: 1.6;
  color: #333;
}

/* Header */
header {
  background-color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem;
  z-index: 10;
  position: relative;
}

.logo {
  font-family: Georgia, 'Times New Roman', serif;
  color: #1e3a8a;
  font-weight: 600;
  font-size: 1.875rem;
  word-spacing: -5px;
}

header nav ul {
  display: flex;
  gap: 1.75rem;
  list-style: none;
}

header nav ul li a {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 1.25rem;
  color: #333;
  text-decoration: none;
  transition: color 0.3s;
}

header nav ul li a:hover {
  color: #1e3a8a;
}

/* Hero Section */
.hero {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image {
  height: 600px;
  width: 100%;
  object-fit: cover;
  filter: brightness(0.5);
}

.hero-content {
  position: absolute;
  display: flex;
  flex-direction: column;
  max-width: 48rem;
  color: white;
  padding: 0 1rem;
}

.hero-content h1 {
  text-transform: uppercase;
  font-size: 2.25rem;
  text-align: center;
}

.hero-content p {
  margin-top: 1.75rem;
  text-align: center;
}

.hero-button {
  margin-top: 3.75rem;
  display: flex;
  justify-content: center;
  gap: 1.25rem;
}

.hero-button button {
  background-color: #1e3a8a;
  padding: 0.75rem;
  width: 10rem;
  border-radius: 0.5rem;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s;
}

.hero-button button:hover {
  background-color: #1e40af;
}

.hero-button button a {
  color: white;
  text-decoration: none;
}

/* Team Section */
.team-section {
  background-color: #e5e7eb;
}

.card {
  padding: 2.5rem;
  display: flex;
  justify-content: center;
}

.card-content {
  padding: 1.25rem 1.5rem;
  border-radius: 0.5rem;
  background-color: white;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 80rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

/* Profile Column */
.profile-column {
  position: relative;
}

.profile-image {
  position: relative;
}

.profile-image img {
  height: 605px;
  width: 100%;
  object-fit: cover;
  border-radius: 0.5rem;
  filter: brightness(0.75);
}

.profile-info {
  position: absolute;
  bottom: 4rem;
  left: 0.75rem;
  padding: 0.75rem;
  font-size: 0.875rem;
}

.profile-info p {
  color: white;
  margin: 0.25rem 0;
}

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

.social-links a {
  color: #333;
  text-decoration: none;
  transition: color 0.3s;
}

.social-links a:hover {
  color: #1e3a8a;
}

.social-links span {
  font-size: 0.875rem;
}

.instagram {
  color: #dd2c7c;
}

.twitter {
  color: #1d4ed8;
}

/* Info Column */
.info-column {
  display: flex;
  flex-direction: column;
}

.profile-header h1 {
  font-size: 1.5rem;
  color: #B0C912;
  font-weight: 600;
  font-family: Georgia, 'Times New Roman', serif;
}

.tagline {
  font-size: 0.875rem;
  color: #6b7280;
}

.section {
  margin-top: 1.5rem;
}

.section h4 {
  font-weight: 600;
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}

.section p {
  font-size: 0.875rem;
  color: #6b7280;
}

/* Skills Table */
.skills-table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid #d1d5db;
  margin-bottom: 1.5rem;
  text-align: center;
}

.skills-table thead {
  background-color: #f3f4f6;
}

.skills-table th,
.skills-table td {
  border: 1px solid #d1d5db;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
}

/* Coding Skills */
.coding-skills {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.skill p {
  font-size: 0.875rem;
  margin-bottom: 0.25rem;
}

.progress-bar {
  width: 100%;
  background-color: #e5e7eb;
  border-radius: 9999px;
  height: 0.5rem;
}

.progress {
  background-color: #ea580c;
  height: 0.5rem;
  border-radius: 9999px;
}

/* Hobbies Column */
.hobbies-column {
  display: flex;
  flex-direction: column;
}

.hobbies-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  padding-top: 0.75rem;
}

.hobby-item span {
  color: #6b7280;
  display: block;
  margin-bottom: 0.5rem;
}

.hobby-item img,
.hobby-item video {
  width: 100%;
  height: 10rem;
  object-fit: cover;
  border-radius: 0.375rem;
}

.hobby-item.wide {
  grid-column: span 2;
}

.hobby-item audio {
  width: 100%;
  margin-top: 0.5rem;
}

/* Technologies */
.technologies {
  margin-top: 1.25rem;
}

.tech-title {
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.tech-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.tech-tags span {
  padding: 0.25rem 1rem;
  border-radius: 9999px;
  background-color: #f3f4f6;
  color: #374151;
  font-size: 0.875rem;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

/* Footer */
footer {
  margin-top: 1.75rem;
  color: #6b7280;
  text-align: center;
  padding: 0.5rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  header {
    flex-direction: column;
    gap: 1rem;
  }

  header nav ul {
    gap: 1rem;
  }

  .hero-content h1 {
    font-size: 1.5rem;
  }

  .card-content {
    grid-template-columns: 1fr;
  }

  .profile-image img {
    height: 400px;
  }

  .hobbies-grid {
    grid-template-columns: 1fr;
  }

  .hobby-item.wide {
    grid-column: span 1;
  }
}