@font-face {
  font-family: "Gilroy";
  src: url("./assets/fonts/Gilroy-Light.otf") format("opentype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Gilroy";
  src: url("./assets/fonts/Gilroy-regular.otf") format("opentype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Gilroy";
  src: url("./assets/fonts/Gilroy-Medium.otf") format("opentype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Gilroy";
  src: url("./assets/fonts/Gilroy-Bold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Gilroy";
  src: url("./assets/fonts/Gilroy-ExtraBold.otf") format("opentype");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Gilroy";
  src: url("./assets/fonts/Gilroy-Black.otf") format("opentype");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --theme-font: "Gilroy", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --theme-primary: #ffcf11;
  --theme-primary-hover: #ffd944;
  --theme-text: #222222;
  --theme-muted: #5f6368;
  --theme-surface: #ffffff;
  --theme-bg: #fff9e3;
  --theme-bg-accent: #fff3c2;
  --theme-border: #f1e2a1;
  --theme-button-text: #1a1a1a;
  --theme-button-border: #e6bb00;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  min-height: 100%;
  font-family: var(--theme-font);
  color: var(--theme-text);
  background: radial-gradient(circle at top, var(--theme-bg-accent) 0%, var(--theme-bg) 40%, #fffdf6 100%);
}

main {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
}

.card {
  width: 100%;
  max-width: 640px;
  background: var(--theme-surface);
  border: 1px solid var(--theme-border);
  border-radius: 20px;
  padding: 40px 28px;
  text-align: center;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
}

.logo {
  width: min(220px, 56vw);
  height: auto;
  margin: 0 auto 24px;
  display: block;
}


h1 {
  margin: 0 0 14px;
  font-size: clamp(1.6rem, 2.5vw, 2.1rem);
  line-height: 1.2;
}

p {
  margin: 0;
  color: var(--theme-muted);
  font-size: 1rem;
  line-height: 1.6;
}

.resume {
  margin-top: 10px;
  color: var(--theme-text);
  font-weight: 600;
}

.cta {
  margin-top: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 700;
  background: var(--theme-primary);
  color: var(--theme-button-text);
  padding: 14px 20px;
  border-radius: 12px;
  border: 1px solid var(--theme-button-border);
  transition: transform 120ms ease, box-shadow 120ms ease, background 120ms ease;
}

.cta:hover {
  transform: translateY(-1px);
  background: var(--theme-primary-hover);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.12);
}

.cta:focus-visible {
  outline: 3px solid #3b82f6;
  outline-offset: 2px;
}

.small {
  margin-top: 14px;
  font-size: 0.9rem;
  color: #7a7a7a;
}
