/* Porsche-inspired theme layer (subtle, modern, clean) */

:root{
  --accent: #d5001c;          /* Porsche-ish red accent */
  --link: #0b57d0;            /* crisp link blue */
  --head: #ececf1;
  --btn: #111111;
  --btnText: #ffffff;

  --radius: 14px;
}

/* Headings: tighter and more "brand-like" */
h1, h2, h3{
  letter-spacing: -0.02em;
}

.page-title{
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.page-title .mark{
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--accent);
  display: inline-block;
}

/* Focus states */
input:focus, select:focus{
  outline: none;
  border-color: rgba(213,0,28,0.45);
  box-shadow: 0 0 0 3px rgba(213,0,28,0.14);
}

/* Buttons: subtle premium hover */
.btn-primary:hover{ filter: brightness(1.05); }
.btn-danger:hover{ filter: brightness(1.03); }

/* Cards: slightly more premium depth */
.card{
  box-shadow: 0 6px 18px rgba(0,0,0,0.07);
}
