/*
* Brands & Buttons Styles
* Modernized for Dark Theme
*/

/* Logo
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.my-logo {
  border-radius: 50%;
  width: 120px;
  height: 120px;
  object-fit: cover;
  border: 4px solid #2c2c2c;
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
  margin-bottom: 1.5rem;
  transition: transform 0.3s ease;
}

.my-logo:hover {
  transform: scale(1.05);
  border-color: #4dabf7;
}

/* Buttons Base
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.button,
button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 400px;
  height: 54px;
  padding: 0 24px;
  margin: 0 auto 16px auto;

  font-size: 1.6rem;
  font-weight: 600;
  line-height: 54px;
  letter-spacing: 0.5px;
  text-decoration: none;
  text-transform: none;

  background-color: #2c2c2c;
  color: #ffffff;
  border: 1px solid transparent;
  border-radius: 12px;

  cursor: pointer;
  box-sizing: border-box;
  transition: all 0.25s cubic-bezier(0.08, 0.59, 0.29, 0.99);
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.button:hover,
button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0,0,0,0.2);
  filter: brightness(110%);
  color: #ffffff;
}

.button:active,
button:active {
  transform: translateY(1px);
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

/* Icons
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.icon {
  width: 24px;
  height: 24px;
  margin-right: 12px;
  vertical-align: middle;
  flex-shrink: 0;
}

/* Brand Specific Styles
–––––––––––––––––––––––––––––––––––––––––––––––––– */

/* Default / Generic */
.button.button-default {
  background-color: #2c2c2c;
  border: 1px solid #444;
}
.button.button-default:hover {
  border-color: #666;
  background-color: #363636;
}

/* Apple Music */
.button.button-apple-music {
  background-color: #fa243c; /* Apple Music Red/Pink */
  color: #ffffff;
}

/* Buy Me a Coffee (Ko-fi) */
.button.button-kofi {
  background-color: #29abe0;
  color: #ffffff;
}
.button.button-kofi .icon {
  width: auto;
  height: 24px;
}

/* Discord */
.button.button-discord {
  background-color: #5865f2;
}

/* Github */
.button.button-github {
  background-color: #24292e;
}

/* Instagram */
.button.button-instagram {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

/* LinkedIn */
.button.button-linked {
  background-color: #0077b5;
}

/* Web / Personal Site */
.button.button-web {
  background-color: #4dabf7;
  color: #ffffff;
}

/* Hardcover */
.button.button-hardcover {
  background-color: #1a1a1a;
  border: 1px solid #333;
}

/* Email */
.button.button-email {
  background-color: #2c2c2c;
  border: 1px solid #444;
}

/* PGP Key */
.button.button-pgp {
  background-color: #2c2c2c;
  border: 1px solid #444;
  font-family: monospace;
}
