/* Homepage Specific Styles - Clean Card Layout */

/* Hero Section with Profile Card */
.hero {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 3rem;
  min-height: 70vh;
  align-items: center;
  padding: 2rem 0;
}

/* Profile Card */
.profile-card {
  background: #eae4db;
  border-radius: 15px;
  padding: 3rem 2rem;
  text-align: center;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  position: relative;
}

.profile-photo {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 2rem;
  border: 4px solid rgba(255, 255, 255, 0.8);
}

.profile-card h2 {
  color: #333;
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.divider {
  width: 60px;
  height: 3px;
  background: #072451;
  margin: 0 auto 1.5rem;
  border-radius: 2px;
}

.title {
  color: #666;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 1px;
  margin-bottom: 2rem;
}

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

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  background: #fff;
  border-radius: 50%;
  text-decoration: none;
  font-size: 1.2rem;
  color: black;
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(5, 2, 67, 0.1);
}

.social-links a:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  background: #4285f4;
  color: white;
}

/* Intro Content */
.intro-content {
  padding-left: 2rem;
}

.intro-content h1 {
  color: #333;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  line-height: 1.1;
}

.action-buttons {
  display: flex;
  gap: 1rem;
  margin-bottom: 3rem;
}

.action-buttons .btn-primary {
  background: #072451;
  color: white;
  padding: 0.8rem 2rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

.action-buttons .btn-primary:hover {
  background: #030d22;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(66, 133, 244, 0.3);
}

.description {
  color: #666;
  font-size: 1rem;
  line-height: 1.7;
  max-width: 600px;
  text-align: justify;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .hero {
    grid-template-columns: 350px 1fr;
    gap: 2rem;
  }

  .intro-content h1 {
    font-size: 3.5rem;
  }
}

@media (max-width: 768px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
    min-height: auto;
  }

  .profile-card {
    margin: 0 auto;
    max-width: 350px;
  }

  .intro-content {
    padding-left: 0;
  }

  .intro-content h1 {
    font-size: 3rem;
  }

  .action-buttons {
    justify-content: center;
    flex-wrap: wrap;
  }
}

@media (max-width: 480px) {
  .profile-card {
    padding: 2rem 1.5rem;
  }

  .profile-photo {
    width: 150px;
    height: 150px;
  }

  .intro-content h1 {
    font-size: 2.5rem;
  }

  .subtitle {
    font-size: 1.1rem;
  }
}
