/* Layout & Background */
body {
  min-height: 100vh;
  background: linear-gradient(to bottom, #6dd5ed, #fceabb);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.container-custom {
  max-width: 900px;
  background: rgba(255, 255, 255, 0.85);
  border-radius: 20px;
  padding: 2rem;
}

/* Profile Picture */
.profile-picture {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 50%;
}

/* Link Button */
.link-button {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  background-color: white;
  border: none;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: all 0.3s ease;
}

.link-button:hover {
  background-color: #e2e8f0;
  transform: scale(1.05);
  opacity: 0.9;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Custom Button Colors */
.btn-hesu {
  background-color: #F56040;
  color: white;
}

.btn-ig {
  background-color: #E1306C;
  color: white;
}

.btn-wa {
  background-color: #25D366;
  color: white;
}

.btn-linkedin {
  background-color: #0077B5;
  color: white;
}

.btn-quora {
  background-color: #B92B27;
  color: white;
}

.btn-portfolio {
  background-color: #6C63FF;
  color: white;
}

/* Dark Mode */
body.dark {
  background: linear-gradient(to bottom, #232526, #414345);
  color: #f1f1f1;
}

body.dark .container-custom {
  background-color: rgba(30, 30, 30, 0.9);
}

body.dark .link-button {
  background-color: #333;
  color: #f1f1f1;
  filter: brightness(0.95);
}

body.dark .link-button:hover {
  background-color: #444;
}

/* Responsive Tweaks */
@media (max-width: 768px) {
  .container-custom {
    text-align: center;
  }

  .profile-picture {
    margin-bottom: 1rem;
  }

  .row {
    flex-direction: column;
  }

  .col-md-5, .col-md-7 {
    width: 100%;
  }
}
