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

:root {
  --bg-primary: #0a0010;
  --bg-secondary: #0f0018;
  --bg-card: #120020;
  --text-primary: #e2e2e2;
  --text-secondary: rgba(226, 226, 226, 0.7);
  --text-muted: rgba(226, 226, 226, 0.5);
  --pink-darkest: #8e004e;
  --pink-darker: #a2006c;
  --pink-dark: #b3007f;
  --pink-primary: #d5008e;
  --pink-light: #f500a3;
  --fuchsia-dark: #ff007f;
  --fuchsia-primary: #ff3385;
  --border-color: rgba(255, 51, 133, 0.3);
  --glow-color: rgba(255, 51, 133, 0.5);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

section {
  padding: 100px 0;
  position: relative;
}

h1, h2, h3, h4, h5, h6 {
  margin-bottom: 20px;
  font-weight: 700;
}

p {
  margin-bottom: 15px;
}

a {
  text-decoration: none;
  color: var(--text-primary);
  transition: all 0.3s ease;
}

/* Background Effects */
.matrix-canvas,
.particles-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
}

.matrix-canvas {
  opacity: 0.2;
}

.particles-canvas {
  opacity: 0.3;
}

.gradient-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, transparent 0%, var(--bg-primary) 70%);
  z-index: -1;
  pointer-events: none;
}

/* Navigation */
.main-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  backdrop-filter: blur(10px);
  background-color: rgba(10, 0, 16, 0.8);
  border-bottom: 1px solid var(--border-color);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  max-width: 1400px;
  margin: 0 auto;
}

.logo {
  font-size: 24px;
  font-weight: 700;
  background: linear-gradient(to right, #ff3385, #d5008e);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 30px;
  align-items: center;
}

.nav-links li a {
  position: relative;
}

.nav-links li a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(to right, var(--pink-primary), var(--fuchsia-primary));
  transition: width 0.3s ease;
}

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

.resume-btn {
  padding: 8px 16px;
  background: linear-gradient(to right, var(--pink-primary), var(--fuchsia-primary));
  border-radius: 6px;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.resume-btn::before {
  content: '';
  position: absolute;
  top: 1px;
  left: 1px;
  right: 1px;
  bottom: 1px;
  background-color: var(--bg-secondary);
  border-radius: 5px;
  z-index: -1;
  transition: all 0.3s ease;
}

.resume-btn:hover::before {
  background-color: transparent;
}

.menu-toggle {
  display: none;
  font-size: 24px;
  cursor: pointer;
}

.mobile-menu {
  position: fixed;
  top: 70px;
  left: 0;
  width: 100%;
  background-color: rgba(10, 0, 16, 0.95);
  backdrop-filter: blur(10px);
  z-index: 999;
  transform: translateY(-100%);
  transition: transform 0.3s ease;
  border-bottom: 1px solid var(--border-color);
}

.mobile-menu.active {
  transform: translateY(0);
}

.mobile-menu ul {
  list-style: none;
  padding: 20px;
}

.mobile-menu li {
  margin-bottom: 15px;
}

.mobile-menu a {
  display: block;
  padding: 10px 0;
  border-bottom: 1px solid var(--border-color);
}

.mobile-resume-btn {
  display: inline-block;
  margin-top: 10px;
  padding: 10px 20px;
  background: linear-gradient(to right, var(--pink-primary), var(--fuchsia-primary));
  border-radius: 6px;
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: 70px;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

.animated-text {
  font-size: 72px;
  font-weight: 700;
  background: linear-gradient(to right, #ff3385, #d5008e);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  opacity: 0;
  animation: fadeIn 1s forwards 0.5s;
}

.subtitle {
  font-size: 24px;
  font-weight: 300;
  margin-bottom: 30px;
  opacity: 0;
  animation: fadeIn 1s forwards 1s;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Terminal */
.terminal-container {
  max-width: 600px;
  margin: 30px auto;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  overflow: hidden;
  background-color: var(--bg-card);
  opacity: 0;
  animation: fadeIn 1s forwards 1.5s;
}

.terminal-header {
  display: flex;
  align-items: center;
  padding: 10px 15px;
  background-color: rgba(255, 51, 133, 0.2);
  border-bottom: 1px solid var(--border-color);
}

.terminal-buttons {
  display: flex;
  gap: 6px;
}

.terminal-btn {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.terminal-btn.red {
  background-color: #ff5f56;
}

.terminal-btn.yellow {
  background-color: #ffbd2e;
}

.terminal-btn.green {
  background-color: #27c93f;
}

.terminal-title {
  flex-grow: 1;
  text-align: center;
  font-size: 12px;
  color: var(--text-muted);
}

.terminal-body {
  padding: 15px;
  font-family: monospace;
  font-size: 14px;
  min-height: 60px;
}

.terminal-prompt {
  color: #27c93f;
  margin-right: 8px;
}

.terminal-cursor {
  display: inline-block;
  width: 8px;
  height: 16px;
  background-color: var(--text-primary);
  margin-left: 2px;
  animation: blink 1s infinite;
}

@keyframes blink {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
}

/* Buttons */
.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
  opacity: 0;
  animation: fadeIn 1s forwards 2s;
}

.glow-button {
  position: relative;
  padding: 12px 24px;
  border-radius: 6px;
  font-weight: 500;
  overflow: hidden;
  transition: all 0.3s ease;
  z-index: 1;
}

.glow-button::before {
  content: '';
  position: absolute;
  top: 2px;
  left: 2px;
  right: 2px;
  bottom: 2px;
  background: linear-gradient(to right, var(--pink-primary), var(--fuchsia-primary));
  border-radius: 6px;
  z-index: -1;
}

.glow-button:hover::before {
  background: transparent;
}

.glow-button:hover {
  box-shadow: 0 0 15px 5px var(--pink-primary);
}
