/* Styles for second site */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

* { font-family: 'Inter', sans-serif; }

.elegant-gradient { background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%); }

.text-gradient {
  background: linear-gradient(135deg, #1e293b 0%, #475569 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.minimal-card {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(226, 232, 240, 0.5);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
}

.hover-lift { transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); }
.hover-lift:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.elegant-button {
  background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.elegant-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transition: left 0.5s;
}
.elegant-button:hover::before { left: 100%; }
.elegant-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(30, 41, 59, 0.3);
}

.cv-download-button {
  background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
  position: relative;
  overflow: hidden;
}
.cv-download-button::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}
.cv-download-button:hover::after {
  width: 300px;
  height: 300px;
}

.minimal-nav {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(226, 232, 240, 0.3);
}
