/*
* AskPondy Links CSS Stylesheet
*/

:root {
  /* Primary colors */
  --primary-color: #FFC408;
  --primary-dark: #E6B000;
  --primary-darker: #D9A600;
  
  /* Text colors */
  --text-dark: #000000;
  --text-muted: #6c757d;

  /* UI colors */
  --bg-white: #fff;
  
  /* Shadows */
  --shadow-sm: 0 2px 5px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.1);
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-image: url("../img/bg.webp");
  background-size: cover;
  background-attachment: fixed;
  background-position: center;
  margin: 0;
  padding: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.container {
  width: 100%;
  max-width: 680px;
  padding: 2rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Profile Section */
.profile-section {
  text-align: center;
  margin-bottom: 2rem;
  background-color: rgba(255, 255, 255, 0.9);
  padding: 2rem;
  border-radius: 20px;
  box-shadow: var(--shadow-md);
  width: 100%;
}

.profile-logo {
  width: 120px;
  height: 120px;
  border-radius: 50%; /* Make it circular if desired, or keep square/rounded */
  object-fit: cover;
  margin-bottom: 1rem;
  border: 4px solid var(--primary-color);
  background-color: white;
}

.profile-title {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
}

.profile-bio {
  color: var(--text-muted);
  margin-bottom: 0;
  line-height: 1.5;
}

/* Links Section */
.links-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.link-card {
  display: flex;
  align-items: center;
  justify-content: center; /* Center text */
  padding: 1rem;
  background-color: rgba(255, 255, 255, 0.95);
  border-radius: 12px; /* Slightly more rounded */
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 600;
  font-size: 1.1rem;
  transition: transform 0.2s, box-shadow 0.2s, background-color 0.2s;
  box-shadow: var(--shadow-sm);
  border: 2px solid transparent;
  position: relative;
  text-align: center;
}

.link-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  background-color: #fff;
  border-color: var(--primary-color);
  color: var(--text-dark); /* Ensure text stays dark on hover */
}

.link-card i {
  font-size: 1.5rem;
  margin-right: 10px;
  position: absolute;
  left: 1.5rem;
}

/* Footer */
.footer {
  margin-top: 2rem;
  padding-bottom: 1rem;
  color: #fff;
  text-align: center;
  font-size: 0.9rem;
  text-shadow: 0 1px 2px rgba(0,0,0,0.5);
}

.footer a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
}