/* Andini Digital Workshop - custom styles on top of Tailwind CDN */

body { background-image: radial-gradient(circle at 20% 0%, rgba(34,211,238,0.08), transparent 40%),
                          radial-gradient(circle at 100% 20%, rgba(37,99,235,0.10), transparent 45%); }

.nav-link {
  color: #cbd5e1;
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0.5rem 0.9rem;
  border-radius: 0.5rem;
  transition: all .15s ease;
}
.nav-link:hover { color: #22d3ee; background: rgba(255,255,255,0.04); }

.nav-link-mobile {
  color: #e2e8f0;
  padding: 0.6rem 0.5rem;
  border-radius: 0.5rem;
  font-weight: 500;
}
.nav-link-mobile:hover { background: rgba(255,255,255,0.05); color: #22d3ee; }

.card-tech {
  background: linear-gradient(180deg, rgba(255,255,255,0.035), rgba(255,255,255,0.015));
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 1rem;
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.card-tech:hover {
  transform: translateY(-4px);
  border-color: rgba(34,211,238,0.4);
  box-shadow: 0 10px 30px -12px rgba(34,211,238,0.25);
}

.btn-primary {
  background: #22d3ee;
  color: #070b14;
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  border-radius: 0.65rem;
  transition: background .15s ease, transform .15s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.btn-primary:hover { background: #67e8f9; transform: translateY(-1px); }

.btn-outline {
  border: 1px solid rgba(255,255,255,0.15);
  color: #e2e8f0;
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  border-radius: 0.65rem;
  transition: border-color .15s ease, background .15s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.btn-outline:hover { border-color: #22d3ee; background: rgba(34,211,238,0.06); }

.form-input {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.12);
  color: #e2e8f0;
  border-radius: 0.6rem;
  padding: 0.7rem 0.9rem;
  font-size: 0.9rem;
  outline: none;
  transition: border-color .15s ease;
}
.form-input:focus { border-color: #22d3ee; }

::selection { background: #22d3ee; color: #070b14; }

code, .font-mono { font-family: 'Courier New', monospace; }

/* Brand name - header: bold embossed gold effect */
.brand-text-emboss {
  font-weight: 800;
  letter-spacing: 0.01em;
  color: #f3cb5a;
  text-shadow:
    0 1px 0 rgba(255, 246, 208, 0.55),
    0 -1px 1px rgba(0, 0, 0, 0.65),
    1px 2px 1px rgba(0, 0, 0, 0.5),
    0 2px 6px rgba(0, 0, 0, 0.35);
}

/* Brand name - footer: gold gradient with a moving light sweep */
.brand-text-shine {
  font-weight: 800;
  letter-spacing: 0.01em;
  background: linear-gradient(90deg, #b8862f 0%, #f3cb5a 25%, #fff6d0 50%, #f3cb5a 75%, #b8862f 100%);
  background-size: 250% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: brand-shine-sweep 3.5s linear infinite;
}

@keyframes brand-shine-sweep {
  0%   { background-position: 200% center; }
  100% { background-position: -50% center; }
}
