@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap");

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

body {
  transition: background-color 0.3s ease, color 0.3s ease;
}

body.dark {
  background-color: #0a0a0a;
  color: #e4e4e7;
}

body.light {
  background-color: #ffffff;
  color: #1a1a1a;
}

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

.glow-card {
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

body.dark .glow-card {
  background: rgba(30, 30, 30, 0.5);
  border-color: rgba(255, 255, 255, 0.1);
}

body.light .glow-card {
  background: rgba(255, 255, 255, 0.8);
  border-color: rgba(0, 0, 0, 0.1);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.glow-card:hover {
  border-color: rgba(236, 72, 153, 0.5);
  box-shadow: 0 0 20px rgba(236, 72, 153, 0.2);
  transform: translateY(-2px);
}

.tech-chip {
  background: linear-gradient(
    135deg,
    rgba(236, 72, 153, 0.2) 0%,
    rgba(59, 130, 246, 0.2) 100%
  );
  border: 1px solid rgba(236, 72, 153, 0.3);
  transition: all 0.3s ease;
}

.tech-chip:hover {
  background: linear-gradient(
    135deg,
    rgba(236, 72, 153, 0.3) 0%,
    rgba(59, 130, 246, 0.3) 100%
  );
  transform: scale(1.05);
}

.nav-link {
  position: relative;
  transition: all 0.3s ease;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #ec4899, #3b82f6);
  transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.section-title {
  position: relative;
  display: inline-block;
}

.section-title::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #ec4899, #3b82f6);
}

.motto-card {
  background: linear-gradient(
    135deg,
    rgba(236, 72, 153, 0.1) 0%,
    rgba(59, 130, 246, 0.1) 100%
  );
  border-left: 3px solid #ec4899;
}

.contact-link {
  transition: all 0.3s ease;
}

.contact-link:hover {
  color: #ec4899;
  transform: translateX(5px);
}

body.light .contact-link {
  color: #666;
}

body.dark .contact-link {
  color: #9ca3af;
}

@media (max-width: 768px) {
  .sidebar {
    position: relative !important;
    height: auto !important;
  }
}

.scroll-smooth {
  scroll-behavior: smooth;
}

.timeline-dot {
  background: linear-gradient(135deg, #ec4899, #3b82f6);
}

.page {
  display: none;
}

.page.active {
  display: block;
}

.btn-primary {
  background: linear-gradient(135deg, #ec4899, #3b82f6);
  color: white;
  padding: 10px 20px;
  border-radius: 8px;
  transition: all 0.3s ease;
  display: inline-block;
  text-decoration: none;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(236, 72, 153, 0.4);
}

.back-btn {
  transition: all 0.3s ease;
}

.back-btn:hover {
  transform: translateX(-5px);
}

body.light .text-gray-300 {
  color: #4b5563 !important;
}

body.light .text-gray-400 {
  color: #6b7280 !important;
}

body.light .text-gray-500 {
  color: #9ca3af !important;
}

body.light .border-gray-800 {
  border-color: #e5e7eb !important;
}
