/* ============================================
   SIMPLE BLACK & WHITE THEME
   ============================================ */

/* CSS Variables */
:root {
  /* Text */
  --text-primary: #ffffff;
  --text-secondary: rgba(255, 255, 255, 0.8);
  
  /* Fonts */
  --font-main: 'Space Grotesk', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: 'JetBrains Mono', 'Fira Code', monospace;
}

/* Reset & Base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
}

body {
  font-family: var(--font-main);
  background: #000000;
  color: var(--text-primary);
  min-height: 100vh;
  overflow-x: hidden;
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  position: relative;
}

.container {
  max-width: 800px;
  width: 100%;
  position: relative;
}

/* Floating shapes - hidden */
.floating-shapes {
  display: none;
}

/* ============================================
   CONTENT AREA
   ============================================ */

.content {
  position: relative;
  text-align: center;
}

/* Greeting */
.greeting {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.wave {
  display: inline-block;
}

.hi {
  color: var(--text-secondary);
  font-weight: 400;
}

/* Name */
.name {
  font-size: clamp(2.5rem, 8vw, 5rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
  position: relative;
  display: inline-block;
}

.name-text {
  color: var(--text-primary);
}

.cursor-blink {
  display: none;
}

/* Typing effect */
.typing-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
  font-family: var(--font-mono);
  font-size: 1.25rem;
}

.typing-label {
  color: var(--text-primary);
  font-weight: 500;
}

.typing-text {
  color: var(--text-secondary);
  min-width: 1ch;
}

.typing-cursor {
  display: none;
}

/* Status card */
.status-card {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 100px;
  margin-bottom: 2.5rem;
}

.status-dot {
  width: 10px;
  height: 10px;
  background: var(--text-primary);
  border-radius: 50%;
}

.status-text {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

/* ============================================
   SOCIAL LINKS
   ============================================ */

.social-links {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.social-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 12px;
  color: var(--text-primary);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
}

.social-btn svg {
  flex-shrink: 0;
}

.btn-label {
  color: var(--text-primary);
}

/* ============================================
   DOWNLOAD BUTTON
   ============================================ */

.download-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 12px;
  color: white;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
}

.btn-shine {
  display: none;
}

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

.footer {
  position: absolute;
  bottom: -4rem;
  left: 0;
  width: 100%;
  text-align: center;
  padding: 1rem;
  color: var(--text-secondary);
  font-size: 0.85rem;
}

.heart {
  color: var(--text-primary);
  display: inline-block;
}

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

@media (max-width: 768px) {
  .hero {
    padding: 1.5rem;
  }
  
  .greeting {
    font-size: 1.25rem;
  }
  
  .typing-wrapper {
    font-size: 1rem;
  }
  
  .social-links {
    gap: 0.75rem;
  }
  
  .social-btn {
    padding: 0.75rem 1.25rem;
    font-size: 0.9rem;
  }
  
  .download-btn {
    padding: 0.875rem 1.75rem;
  }
}

@media (max-width: 480px) {
  .social-links {
    flex-direction: column;
    align-items: center;
  }
  
  .social-btn {
    width: 100%;
    max-width: 200px;
    justify-content: center;
  }
  
  .status-card {
    padding: 0.875rem 1.25rem;
  }
}

/* Focus styles */
a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--text-primary);
  outline-offset: 3px;
}

/* Selection */
::selection {
  background: var(--text-primary);
  color: #000000;
}
