/*
Theme Name: Alain WordPress Theme
Theme URI: https://wordpress.org
Author: Alain Web Strategist
Author URI: https://wordpress.org
Description: Thème WordPress officiel pour Alain : Bio-Link, 4 pages courtes indexables & contact direct.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Tags: bio-link, content-creator, responsive-layout, custom-colors, mordant, linktree-alternative
Text Domain: alain-wordpress-theme
*/

:root {
  --wp-bg-gradient: linear-gradient(135deg, #0d1633 0%, #1a2b5e 50%, #253975 100%);
  --wp-text-color: #f8fafc;
  --wp-accent-color: #dc2626;
}

body {
  margin: 0;
  padding: 0;
  font-family: system-ui, -apple-system, sans-serif;
  background: var(--wp-bg-gradient);
  color: var(--wp-text-color);
  min-height: 100vh;
}

.bio-link-container {
  max-width: 480px;
  margin: 0 auto;
  padding: 40px 20px;
  text-align: center;
}

.avatar-wrapper img {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #ffffff;
  box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

.badge-text {
  display: inline-block;
  padding: 4px 12px;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.profile-name {
  font-size: 2.2rem;
  font-weight: 800;
  margin: 8px 0 4px 0;
}

.profile-title {
  font-size: 1.1rem;
  opacity: 0.85;
  margin-bottom: 24px;
}

.social-bar {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 32px;
}

.social-bar a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  color: #ffffff;
  text-decoration: none;
  transition: transform 0.2s ease, background 0.2s ease;
  backdrop-filter: blur(6px);
}

.social-bar a:hover {
  transform: translateY(-3px) scale(1.05);
  background: rgba(255, 255, 255, 0.3);
}

.links-stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.link-button {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 18px 24px;
  background: rgba(255, 255, 255, 0.92);
  color: #0f172a;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.05rem;
  border-radius: 16px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.link-button:hover {
  background: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
}

.link-badge {
  position: absolute;
  right: 16px;
  font-size: 0.7rem;
  padding: 3px 8px;
  border-radius: 10px;
  background: #ef4444;
  color: #ffffff;
  font-weight: 800;
}

.footer-credits {
  margin-top: 48px;
  font-size: 0.85rem;
  opacity: 0.75;
}
