/* @import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap'); */

@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("./fonts/InterVariable.woff2") format("woff2");
}
@font-face {
  font-family: "Inter";
  font-style: italic;
  font-weight: 100 900;
  font-display: swap;
  src: url("./fonts/InterVariable-Italic.woff2") format("woff2");
}

:root {
  /* Primary & Secondary Colors */
  --color-primary: #8b5cf6ff;                  /* Medium Slate Blue */
  --color-secondary-1: #e56b6fff;              /* Light Coral */
  --color-secondary-2: #d17b88ff;              /* Old Rose */

  /* Backgrounds */
  --bg-dark: #1b1d1eff;
  --bg-dark-secondary: #2a2d2fff;              /* Slightly lighter dark */
  --bg-light: #f8f1ffff;                       /* Lavender Mist */
  --bg-light-secondary: rgb(239, 225, 253);    /* Lavender Mist */

  /* Neutrals */
  --fg-light: #f8f1ffff;
  --fg-muted: #9a9a9aff;
  --border-light: rgba(255, 255, 255, 0.08);

  /* Layout */
  --spacing-small: 1rem;
  --spacing-medium: 2rem;
  --spacing-large: 4rem;
  --container-max-width: 1200px;
  --border-radius: 1rem;
}

/* ---------- BASE ---------- */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter", sans-serif;
  background-color: var(--bg-dark);
  color: var(--fg-light);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ---------- TYPOGRAPHY (semantic) ---------- */
h1 {
  font-size: clamp(3rem, 5vw, 4rem);
  font-weight: 900; /* bolder hero */
  line-height: 1.1;
  margin-bottom: var(--spacing-medium);
}

h2 {
  font-size: clamp(1.8rem, 3vw, 2.2rem);
  font-weight: 700;
  margin-bottom: var(--spacing-small);
}

h3 {
  font-size: clamp(1.4rem, 2vw, 1.6rem);
  font-weight: 600;
  margin-bottom: var(--spacing-small);
}

p {
  font-size: 1rem;
  line-height: 1.5;
  color: var(--fg-light);
}

span.accent {
  color: var(--color-primary);
  font-weight: 700;
}

.gradient_accent {
    background: linear-gradient(
        to right,
        var(--color-primary) 20%,
        var(--color-secondary-1) 40%,
        var(--color-secondary-2) 60%,
        var(--color-primary) 80%
    );
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 500% auto;
    animation: textShine 3s ease-in-out infinite;

    font-weight: bolder;
}
@keyframes textShine {
    0% {
        background-position: 0% 50%;
    }
    100% {
        background-position: 100% 50%;
    }
}

/* ---------- IMAGES ---------- */
img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: var(--border-radius);
}



/* Footer styles */
footer {
    color: var(--fg-muted) !important;
    text-align: center;
    padding: 20px 0;
}

footer p {
    margin: 0 20px 0 0;
    text-align: center;
}



/* ---------- BASIC BUTTON ---------- */
.basic-button {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;

  padding: 0.45rem 0.75rem;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.02em;

  color: var(--fg-muted);
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 999px;

  cursor: pointer;
  transition: background 0.25s ease, border-color 0.25s ease,
    transform 0.2s ease, color 0.25s ease;
}

.basic-button span {
  transition: transform 0.25s ease;
}

.basic-button:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.45);
  color: var(--fg-light);
}

.basic-button:hover span {
  transform: translateX(3px);
}

.basic-button:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 3px;
}

@media (max-width: 768px) {
  .basic-button {
    align-self: center;
  }
}