@charset "UTF-8";
/*
 Theme Name: CNC Artisan Community
 Theme URI: https://CNC-Artisan.de
 Author: Manuel Gerl
 Description: Dark Technical Theme für CNC & 3D-Druck Community
 Version: 1.2
*/

/* =========================================
   GLOBAL / ROOT
   ========================================= */

:root {
  --bg: #151515;
  --bg-elevated: #1f1f1f;
  --accent: #ff8c1a;
  --accent-soft: #d47b19;
  --gold: #d4af37;
  --text: #f5f5f5;
  --muted: #aaaaaa;
  --border: #262626;
  --radius-lg: 18px;
  --shadow-soft: 0 18px 45px rgba(0, 0, 0, 0.6);
}

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

/* Zentrierter Container (für Hero, Footer, etc.) */

.container {
    max-width: 1600px;
    margin: 0 auto;
    padding-left: 32px;
    padding-right: 32px;
}

/* Body als Flex-Container für Sticky-Footer */

html,
body {
  height: 100%;
}

body {
  font-family: system-ui, sans-serif;

  /* dunkler Verlauf + leichtes Glow oben links */
  background:
    radial-gradient(
      circle at 10% 0%,
      rgba(255, 140, 26, 0.10) 0%,
      rgba(255, 140, 26, 0.00) 55%
    ),
    linear-gradient(
      to bottom,
      #050505 0%,
      #090909 30%,
      #111111 65%,
      #181818 100%
    );

  background-attachment: fixed;
  background-repeat: no-repeat;
  background-size: cover;

  color: var(--text);
  display: flex;
  flex-direction: column;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 0px 48px;
  flex: 1 0 auto;   /* füllt den Platz zwischen Header und Footer */
}

/* =========================================
   HEADER / BRAND / NAVIGATION
   ========================================= */

.site-header {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(8px);
  z-index: 10;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  margin-top: 10px;
}

/* Glow-Linie oben im Header */

.site-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(
    90deg,
    rgba(255, 140, 26, 0.0) 0%,
    rgba(255, 140, 26, 0.7) 50%,
    rgba(255, 140, 26, 0.0) 100%
  );
  box-shadow: 0 0 12px rgba(255, 140, 26, 0.6);
}

.site-header::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 8px;
  background: radial-gradient(circle, rgba(255,140,26,0.4), rgba(255,140,26,0) 70%);
  filter: blur(6px);
}

/* =========================================
   INNERER HEADER-CONTAINER
   ========================================= */

.header-inner {
  position: relative; /* Referenz für das schwebende Logo */
  max-width: 1600px;
  margin: 0 auto;
  padding: 18px clamp(20px, 4vw, 48px);
  padding-left: 180px; /* Platz für das Logo links */
  box-sizing: border-box;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
}

/* Schwebendes Logo über dem Header */

.logo-float {
  position: absolute;
  margin-left: -50px;
  margin-top: -40px;
  left: 0;
  top: 100%;
  transform: translateY(-50%);
  z-index: 10000;
}

/* Logo-Größe (Standard) */

.logo-img {
  height: 250px;
  width: auto;
  display: block;
}

/* Brand-Bereich links */

.brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  max-width: 55%;
}

/* Brand-Typo */

.brand-text .name {
  font-size: 2.5rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.tagline-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-text .tagline {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.divider {
  width: 1px;
  height: 18px;
  background: linear-gradient(to bottom, var(--accent), var(--gold));
  opacity: 0.8;
}

.slogan {
  color: var(--muted);
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  white-space: nowrap;
}

/* Navigation rechts */

.main-nav {
  display: flex;
  gap: 28px;
  margin-left: auto;
}

.main-nav a {
  color: var(--muted);
  font-size: 1.5rem;
  font-weight: 600;
  position: relative;
  text-decoration: none;
}

.main-nav a:hover {
  color: var(--text);
}

.main-nav a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--accent), var(--gold));
  transition: 0.2s;
}

.main-nav a:hover::after {
  width: 100%;
}

/* Aktiver Menüpunkt (per .nav-active aus PHP) */

.main-nav a.nav-active {
  color: var(--accent);
}

.main-nav a.nav-active::after {
  width: 100%;
}

/* ADMIN BAR FIX (WP-Toolbar oben) */

body.admin-bar .site-header {
  top: 32px;
}

@media (max-width: 782px) {
  body.admin-bar .site-header {
    top: 46px;
  }
}

/* Responsive Header */

@media (max-width: 820px) {
  .header-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .brand {
    max-width: 100%;
  }

  .logo-img {
    height: 56px;
  }

  .main-nav {
    flex-wrap: wrap;
    gap: 16px;
  }

  .main-nav a {
    font-size: 0.9rem;
  }
}

/* =========================================
   HERO SECTION (Startseite)
   ========================================= */

/* Äußere Hero-Section – volle Breite, nur vertikale Abstände */

.hero {
  padding-top: 140px; /* kannst du anpassen: 120–180px wirkt stylish */
}

/* Innerer Inhalt – begrenzt auf 1600px, 2-Spalten-Grid */
.hero-inner {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 40px;
  align-items: center;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 10px;
  line-height: 1.15;
}

.hero .highlight {
  color: var(--accent);
}

.hero .hero-subtitle {
  max-width: 520px;
  color: var(--muted);
}

/* Hero-Card rechts */

.hero-card {
  background: var(--bg-elevated);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  padding: 22px 26px;
  box-shadow: 0 0 28px rgba(0,0,0,0.45);
  position: relative;
  overflow: hidden;
}

/* Glow-Linie oben (wie Header) */

.hero-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 3px;
  width: 100%;
  background: linear-gradient(
    90deg,
    rgba(255, 140, 26, 0.0) 0%,
    rgba(255, 140, 26, 0.7) 50%,
    rgba(255, 140, 26, 0.0) 100%
  );
  box-shadow: 0 0 12px rgba(255, 140, 26, 0.50);
}

/* Box-Titel */

.hero-card-label {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--accent-soft);
  margin-bottom: 10px;
}

/* Listenelemente */

.hero-card-list {
  font-size: 1rem;
  color: var(--muted);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* =========================================
   HIGHLIGHT POST (Startseite)
   ========================================= */

.highlight-post {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 32px;
  background: var(--bg-elevated);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  padding: 24px;
  overflow: hidden;
  margin-bottom: 40px;
  transition:
    transform .25s ease-out,
    box-shadow .35s ease-out,
    border-color .25s ease-out;
}

.highlight-post:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 140, 26, .7);
  box-shadow: 0 18px 45px rgba(0,0,0,.60);
}

/* =========================================
   FULL CARD CLICK OVERLAY (Startseite + Archive)
   ========================================= */

.highlight-post,
.blog-grid .post,
.ca-post-card {
  position: relative;
}

.card-link-overlay {
  position: absolute;
  inset: 0;              /* top:0; right:0; bottom:0; left:0; */
  z-index: 5;
  display: block;
  text-indent: -9999px;  /* kein sichtbarer Text */
  cursor: pointer;
}

/* Highlight-Post Bild */

.highlight-thumb {
  width: 100%;
  height: 260px;
  border-radius: 14px;
  overflow: hidden;
}

.highlight-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease-out, filter .35s ease-out;
}

.highlight-post:hover .highlight-thumb img {
  transform: scale(1.05);
  filter: brightness(1.08);
}

/* Highlight-Post Content */

.highlight-content {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.highlight-content h3 {
  font-size: 1.8rem;
  line-height: 1.1;
  color: var(--text);
}

.highlight-content .excerpt {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.55;
}

.highlight-content .readmore {
  margin-top: auto;
  font-weight: 600;
  color: var(--accent);
  transition: color .2s ease-out;
}

.highlight-content .readmore:hover {
  color: var(--gold);
}

/* =========================================
   BLOG GRID KARTEN (Startseite)
   ========================================= */

.blog-index {
  margin-top: 24px;
}

.blog-pagination {
  margin-top: 32px;
  text-align: center;
}

.blog-pagination .page-numbers {
  display: inline-block;
  margin: 0 4px;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid var(--border);
  font-size: 0.85rem;
  color: var(--muted);
}

.blog-pagination .page-numbers.current {
  background: linear-gradient(135deg, var(--accent), var(--gold));
  color: #111;
  border-color: transparent;
}

.blog-pagination .page-numbers:hover {
  border-color: rgba(255, 140, 26, 0.7);
  color: var(--text);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

/* Karten im Blog-Grid */

.blog-grid .post {
  background: var(--bg-elevated);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  overflow: hidden;
  display: flex;
  flex-direction: row;
  min-height: 200px;
  transition:
    transform 0.18s ease-out,
    box-shadow 0.25s ease-out,
    border-color 0.25s ease-out,
    background 0.25s ease-out;
}

.blog-grid .post:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 140, 26, 0.8);
  box-shadow: 0 16px 45px rgba(0, 0, 0, 0.7);
  background: linear-gradient(
    145deg,
    #1e1e1e 0%,
    #181818 40%,
    #101010 100%
  );
}

/* Thumbnail / Bild links */

.post-thumb {
  flex: 0 0 420px;
  height: 280px;
  overflow: hidden;
  border-radius: 14px;
}

.post-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.post:hover .post-thumb img {
  transform: scale(1.06);
  filter: brightness(1.15);
}

/* Karten-Body rechts */

.post-body {
  padding: 16px 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.post h3 {
  font-size: 1.1rem;
  color: var(--text);
  transition: color 0.2s ease-out;
}

.post:hover h3 {
  color: var(--accent);
}

.post p {
  font-size: 0.88rem;
  color: var(--muted);
  flex: 1;
}

/* Karten-Footer */

.post-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 8px;
  font-size: 0.8rem;
  color: var(--muted);
}

/* Read-More-Link */

.post .link {
  color: var(--accent);
  font-weight: 600;
  transition: color 0.2s ease-out;
}

.post:hover .link {
  color: var(--gold);
}

/* =========================================
   BLOG CATEGORY BADGES
   ========================================= */

.post-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 6px;
}

.post-category {
  display: inline-flex;
  align-items: center;
  padding: 3px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 140, 26, 0.65);
  background: rgba(255, 140, 26, 0.08);
  color: var(--accent);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

/* =========================================
   SECTION TITLE (Blog Überschrift)
   ========================================= */

.section-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 200px;
  margin-bottom: 12px;
}

.section-title h2 {
  font-size: 1.3rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.section-title h2 span {
  color: var(--accent);
}

/* =========================================
   FOOTER
   ========================================= */

footer {
  margin-top: 48px;
  padding: 24px 32px;
  border-top: 1px solid var(--border);
  color: var(--muted);
  font-size: 0.85rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-shrink: 0;
}

footer .footer-links {
  display: flex;
  gap: 18px;
}

footer .footer-links a {
  color: var(--muted);
  transition: color 0.2s ease-out;
}

footer .footer-links a:hover {
  color: var(--gold);
}

footer .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 50px;
}

/* =========================================
   CONTENT / TYPOGRAFIE (Blog-Artikel, Seiten)
   ========================================= */

.content-page {
  max-width: 900px;           /* Breite der Textspalte */
  margin: 0 auto;
  padding: 140px 32px 64px;   /* Abstand zum Header + Seitenrand + unten */
}

.content-header {
  margin-bottom: 20px;
}

.content-header h1 {
  font-size: 2.2rem;
  margin-bottom: 1rem;
}

.content-meta {
  font-size: 0.85rem;
  color: var(--muted);
}

.content-thumb {
  margin: 20px 0 24px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
}

.content-thumb img,
.content-hero-image {
  width: 100%;
  height: 360px;
  object-fit: cover;
  display: block;
}

/* Fließtext */

.content-body {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text);
}

.content-body p {
  margin-bottom: 1.1em;
  color: var(--muted);
}

/* Überschriften im Text */

.content-body h2 {
  font-size: 1.6rem;
  margin: 1.6em 0 0.4em;
}

.content-body h3 {
  font-size: 1.3rem;
  margin: 1.4em 0 0.4em;
}

/* Listen */

.content-body ul,
.content-body ol {
  margin: 0 0 1.1em 1.4em;
}

.content-body li {
  margin-bottom: 0.4em;
}

/* Zitate */

.content-body blockquote {
  margin: 1.4em 0;
  padding: 12px 18px;
  border-left: 3px solid var(--accent);
  background: rgba(255, 255, 255, 0.02);
  color: var(--muted);
  font-style: italic;
}

/* Code / Inline-Code */

.content-body code {
  font-family: "Fira Code", Consolas, monospace;
  font-size: 0.95em;
  background: #111;
  padding: 2px 4px;
  border-radius: 4px;
  border: 1px solid #333;
}

/* Bilder im Content */

.content-body img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
}

/* Tabellen */

.content-body table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.4em 0;
  font-size: 0.95rem;
}

.content-body th,
.content-body td {
  padding: 8px 10px;
  border: 1px solid var(--border);
}

.content-body th {
  background: #202020;
  font-weight: 600;
}

/* =========================================
   CNC ARTISAN – ARCHIV & SINGLE LAYOUT
   ========================================= */

.ca-main {
  max-width: 1600px;
  margin: 0 auto;
  padding: 2rem 1.5rem 4rem;
}

/* Hero klein oben auf Archivseiten */

.ca-hero-small {
  padding: 2.5rem 0 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.ca-hero-small-inner {
  max-width: 900px;
}

.ca-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.8rem;
  opacity: 0.7;
  margin-bottom: 0.4rem;
}

.ca-hero-small-title {
  font-size: clamp(1.8rem, 2.3vw, 2.3rem);
  margin: 0 0 0.5rem;
}

.ca-hero-small-subtitle {
  margin: 0;
  max-width: 40rem;
  opacity: 0.8;
}

/* Grid für Beitragskarten im Archiv */

.ca-archive-grid-wrapper {
  padding-top: 2rem;
}

.ca-archive-grid {
  display: grid;
  gap: 1.8rem;
}

@media (min-width: 768px) {
  .ca-archive-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* Beitragskarte (Archive) */

.ca-post-card {
  background: rgba(0, 0, 0, 0.25);
  border-radius: 1rem;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition:
    transform 0.15s ease,
    box-shadow 0.15s ease,
    border-color 0.15s ease;
}

.ca-post-card-link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.ca-post-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.4);
  border-color: rgba(255, 255, 255, 0.18);
}

.ca-post-card-thumb {
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.ca-post-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ca-post-card-thumb-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  opacity: 0.8;
  background: radial-gradient(circle at top, #4b9fff 0, #111 55%);
}

.ca-post-card-body {
  padding: 1.1rem 1.2rem 1.3rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.ca-post-card-meta {
  font-size: 0.8rem;
  opacity: 0.8;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.ca-post-card-title {
  font-size: 1.15rem;
  margin: 0;
  line-height: 1.25;
}

.ca-post-card-title a {
  text-decoration: none;
}

.ca-post-card-title a:hover {
  text-decoration: underline;
}

.ca-post-card-excerpt {
  font-size: 0.95rem;
  opacity: 0.9;
  margin: 0 0 0.4rem;
}

/* Buttonstil wiederverwenden */

.ca-post-card-button {
  align-self: flex-start;
  margin-top: auto;
  padding: 0.55rem 1.1rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  font-size: 0.9rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.ca-post-card-button::after {
  content: "›";
  font-size: 0.85em;
  transform: translateY(1px);
}

.ca-post-card-button--ghost {
  background: transparent;
}

/* Single-Ansicht */

.ca-main--single {
  max-width: 1600px;
  margin: 0 auto;
  padding: 140px 32px 40px;
}

.ca-single-header {
  padding-top: 2.5rem;
  padding-bottom: 1.5rem;
}

.ca-single-title {
  font-size: clamp(2.4rem, 3vw, 3rem);
  margin-bottom: 1rem;
  color: #e57407;
}

.ca-single-meta {
  font-size: 0.9rem;
  opacity: 0.8;
  display: flex;
  gap: 0.35rem;
  align-items: center;
}

.ca-single-featured {
  margin-top: 1.5rem;
  border-radius: 1.2rem;
  overflow: hidden;
}

.ca-single-featured img {
  width: 100%;
  display: block;
  object-fit: cover;
}

.ca-single-content {
  margin-top: 1.8rem;
}

.ca-single-content p {
  line-height: 1.7;
  margin-bottom: 1.1rem;
}

.ca-single-footer {
  margin-top: 2.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 1.5rem;
}

.post {
  position: relative;
}

.post-link {
  display: flex;
  flex-direction: row;
  color: inherit;
  text-decoration: none;
  width: 100%;
  height: 100%;
}

.post-link:hover .post-title {
  color: var(--accent);
}

/* Pagination unten (Archive) */

.ca-pagination {
  margin-top: 2rem;
  text-align: center;
}

.ca-pagination .page-numbers {
  display: inline-block;
  margin: 0 0.25rem;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  font-size: 0.9rem;
}

.ca-pagination .page-numbers.current {
  background: rgba(255, 255, 255, 0.15);
}

/* =========================================
   RESPONSIVE
   ========================================= */

@media (max-width: 820px) {
  .hero {
    grid-template-columns: 1fr;
    padding-top: 24px;
  }

  .highlight-post {
    grid-template-columns: 1fr;
  }

  .blog-grid {
    grid-template-columns: 1fr;
  }
}

/* =========================================
   BLOG BREITE ANPASSEN (Wrapper)
   ========================================= */

.blog-wrapper {
  max-width: 1600px !important;
  margin: 0 auto !important;
  padding: 0 32px;
  width: 100%;
  box-sizing: border-box;
}

/* Kontaktformular CNC Artisan */

.ca-contact {
  margin-top: 1rem;
}

.ca-contact-success,
.ca-contact-errors {
  border-radius: 12px;
  padding: 12px 16px;
  margin-bottom: 16px;
  font-size: 0.95rem;
}

.ca-contact-success {
  background: rgba(46, 204, 113, 0.08);
  border: 1px solid rgba(46, 204, 113, 0.5);
  color: #a8e6b5;
}

.ca-contact-errors {
  background: rgba(192, 57, 43, 0.08);
  border: 1px solid rgba(192, 57, 43, 0.7);
  color: #f4b0a7;
}

.ca-contact-errors ul {
  margin: 0;
  padding-left: 18px;
}

.ca-contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.ca-field label {
  display: block;
  margin-bottom: 0.25rem;
  font-size: 0.95rem;
  opacity: 0.9;
}

.ca-field input,
.ca-field textarea {
  width: 100%;
  padding: 0.6rem 0.8rem;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: #0f0f0f;
  color: var(--text);
  font: inherit;
}

.ca-field input:focus,
.ca-field textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 1px rgba(255, 140, 26, 0.45);
}

.ca-field-privacy label {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.85rem;
  color: var(--muted);
}

.ca-field-privacy label span {
  line-height: 1.5;
}

.ca-field-privacy input[type="checkbox"] {
  margin-top: 0.1rem;
}

/* Button im CNC-Look */
.ca-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.5rem;
  border-radius: 999px;
  border: none;
  background: linear-gradient(135deg, var(--accent), var(--gold));
  color: #111;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.7);
  transition: transform 0.15s ease-out, filter 0.2s ease-out, box-shadow 0.2s ease-out;
}

.ca-button:hover {
  filter: brightness(1.05);
  transform: translateY(-1px);
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.85);
}

.ca-button:active {
  transform: translateY(0);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.7);
}