/*
  Iconic Woman Linktree - Button Style Kit
  Copy this file into other projects to reuse the CTA styling 1:1.
  Variables cover only the fonts and colors referenced by the buttons.
*/

:root {
  --color-bg: #ffffff;
  --color-black: #000000;
  --color-accent: #c41e3a;
  --font-base: "Montserrat", "Helvetica Neue", Arial, sans-serif;
}

.cta-group {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.cta {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 14px 20px;
  font-family: var(--font-base);
  font-weight: 500;
  font-size: 1rem;
  border-radius: 6px;
  border: 2px solid transparent;
  transition: transform 180ms ease, box-shadow 180ms ease;
  min-height: 54px;
  text-align: center;
  text-decoration: none;
}

.cta:focus-visible {
  outline: 3px solid var(--color-accent);
  outline-offset: 3px;
}

.cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}

.cta--filled {
  background: var(--color-black);
  color: var(--color-bg);
}

.cta--outline {
  border-color: var(--color-black);
  color: var(--color-black);
  background: transparent;
}

.cta--accent {
  background: linear-gradient(135deg, #c41e3a 0%, #7d0f23 100%);
  color: var(--color-bg);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: none;
  box-shadow: 0 18px 30px rgba(196, 30, 58, 0.35);
  position: relative;
  overflow: hidden;
}

.cta--accent::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.22), transparent 60%);
  opacity: 0.7;
  pointer-events: none;
}

.cta--accent:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 35px rgba(196, 30, 58, 0.4);
}

.cta--review {
  background: var(--color-black);
  color: var(--color-bg);
  border-radius: 8px;
  font-weight: 600;
  padding-inline: 32px;
  margin-top: 12px;
}
