/* MMVI — LinkStack theme matching mmvi-music.com.
   Amiri serif, white bg, deep indigo (#200da2) accents, gray buttons.
   Keeps LinkStack's default alignment; only overrides colors + font. */

:root {
  --font-family: 'Amiri', 'Times New Roman', Georgia, serif;
  --font-size: 16px;

  --background-color: #ffffff;

  --image-border-color: #200da2;
  --image-border-px: 2px;
  --image-width: 108px;
  --image-height: 108px;

  --title-color: #000000;
  --description-color: #5b5b5b;

  --svg-color: #200da2;

  --menu-background-color: #ffffff;
  --menu-text-color: #200da2;
  --menu-active-text-color: #0d0060;

  --button-background-color: #f2f2f2;
  --button-text-color: #000000;
  --button-text-hover-color: #ffffff;

  --textarea-background-color: #f7fafc;
  --textarea-text-color: #000000;
  --textarea-link-text-color: #200da2;

  --footer-background-color: #ffffff;
  --footer-text-color: #5b5b5b;
  --footer-link-text-color: #200da2;

  --mmvi-accent: #200da2;
  --mmvi-accent-dark: #0d0060;
  --mmvi-line: #e9e9e9;
  --mmvi-radius: 10px;
}

::selection      { background: #200da2; color: #fff; }
::-moz-selection { background: #200da2; color: #fff; }

html { font-size: 100%; }

/* Prevent horizontal overflow on mobile: every element sizes including its
   padding + border, and the root elements never scroll horizontally. */
*, *::before, *::after { box-sizing: border-box; }
html, body { max-width: 100vw; overflow-x: hidden; }

body {
  min-height: 100vh;
  font-family: var(--font-family) !important;
  background-color: var(--background-color);
  color: var(--title-color);
  font-size: var(--font-size);
  line-height: 1.5;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin: 0;
}

.background {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: -1;
}

/* --- Layout container --- */
.container {
  position: relative;
  width: 100%;
  max-width: 500px;
  padding: 0 16px;
  text-align: center;
  margin: 0 auto;
  box-sizing: border-box;
}
.column, .columns { width: 100%; float: none; box-sizing: border-box; }
.spacing { padding: 22px 8px 12px; }

/* --- Avatar --- */
img[alt="profile-picture"],
.profile-image,
.image-holder img {
  border: var(--image-border-px) solid var(--image-border-color);
  border-radius: 50%;
  width: var(--image-width);
  height: var(--image-height);
  object-fit: cover;
}

/* --- Typography --- */
h1 {
  color: var(--title-color);
  font-family: var(--font-family);
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.005em;
  margin: .6rem 0 .3rem;
  line-height: 1.2;
  text-transform: none;
}
p {
  color: var(--description-color);
  font-family: var(--font-family);
  font-size: .95rem;
  line-height: 1.5;
  font-weight: 400;
  letter-spacing: 0;
  margin: 0 auto .5rem;
  max-width: 40ch;
}
hr {
  border: 0;
  border-top: 1px solid var(--mmvi-line);
  margin: 1.2rem auto;
  max-width: 60px;
}

/* --- Anchor styling --- */
a { color: var(--mmvi-accent); text-decoration: none; }
a:hover { color: var(--mmvi-accent-dark); }

/* --- Social icons (inline SVG in the row above/below buttons) --- */
.social-icon,
.social-icon svg,
.social-icons a svg { color: var(--svg-color) !important; fill: var(--svg-color) !important; }
.social-icon:hover,
.social-icon:hover svg,
.social-icons a:hover svg { color: var(--mmvi-accent-dark) !important; fill: var(--mmvi-accent-dark) !important; }

/* --- Share icon (share.button.css forces white) --- */
.share-icon,
.share-icon * { color: var(--mmvi-accent) !important; fill: var(--mmvi-accent) !important; }
.share-icon:hover,
.share-icon:hover * { color: var(--mmvi-accent-dark) !important; fill: var(--mmvi-accent-dark) !important; }

/* --- Credit footer --- */
.credit-txt { font-weight: 600; font-size: 12px; text-decoration: none; }
.credit-icon { display: none; right: 5px; }
.credit-footer {
  position: relative;
  right: 15px;
  color: var(--footer-text-color) !important;
  opacity: .5;
  transition: opacity .18s;
}
.credit-footer:hover { opacity: 1; text-shadow: none; }

/* --- Hidden scrollbars --- */
* { -ms-overflow-style: none; scrollbar-width: none; }
*::-webkit-scrollbar { display: none; }

/* --- Mobile --- */
@media (max-width: 480px) {
  :root {
    --font-size: 15px;
    --image-width: 92px;
    --image-height: 92px;
  }
  .container { padding: 0 14px; max-width: 100%; }
  .spacing { padding: 14px 4px 6px; }
  h1 { font-size: 1.35rem; margin: .4rem 0 .2rem; }
  p  { font-size: .9rem; margin-bottom: .3rem; }
}
