:root {
  /* Colors - Inspired by the neon/graffiti aesthetic */
  --color-bg: #0a0a0a;
  --color-surface: #121212;
  --color-primary: #ff0055; /* Hot Pink */
  --color-secondary: #00f2ff; /* Cyber Cyan */
  --color-accent: #7000ff; /* Electric Purple */
  --color-text: #ffffff;
  --color-text-dim: #a0a0a0;
  
  /* Spacing */
  --space-xs: 4px;
  --space-sm: 8px;
  --space-md: 16px;
  --space-lg: 24px;
  --space-xl: 48px;
  --space-2xl: 80px;
  
  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

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

body {
  font-family: 'Syncopate', sans-serif; /* Fallback to system if not loaded */
  background-color: var(--color-bg);
  color: var(--color-text);
  line-height: 1.5;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Typography */
h1, h2, h3 {
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 800;
}

/* Layout */
.container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 5vw, 4rem);
}

section {
  margin-top: var(--space-2xl);
  padding: var(--space-xl) 0;
  position: relative;
}

main > :first-child {
  margin-top: 0;
}

/* Navigation */
nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: var(--space-lg) 0;
  background: linear-gradient(to bottom, rgba(10,10,10,0.8), transparent);
  backdrop-filter: blur(8px);
}

.nav-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--color-primary);
  text-decoration: none;
  text-shadow: 0 0 10px rgba(255, 0, 85, 0.5);
}

.nav-links {
  display: flex;
  gap: var(--space-xl);
}

.nav-links a {
  color: var(--color-text);
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 700;
  transition: var(--transition-fast);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-secondary);
  transition: var(--transition-fast);
}

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

/* Hero Section - 3D Perspective */
.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 1000px;
  overflow: hidden;
  background: radial-gradient(circle at center, #1a1a1a 0%, #0a0a0a 100%);
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  transform-style: preserve-3d;
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0) rotateX(2deg) rotateY(-2deg); }
  50% { transform: translateY(-20px) rotateX(-2deg) rotateY(2deg); }
}

.hero-title {
  font-size: clamp(3rem, 12vw, 8rem);
  line-height: 0.9;
  margin-bottom: var(--space-md);
  color: transparent;
  -webkit-text-stroke: 1px var(--color-text);
  position: relative;
}

.hero-title span {
  display: block;
  color: var(--color-text);
  text-shadow: 0 0 30px var(--color-primary);
}

.hero-subtitle {
  font-size: 1rem;
  color: var(--color-secondary);
  text-transform: uppercase;
  letter-spacing: 0.5em;
}

/* 3D Elements Background */
.scene-3d {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.floating-can {
  position: absolute;
  width: 120px;
  height: 240px;
  background: #222;
  border-radius: 10px;
  box-shadow: 20px 20px 60px #000;
  opacity: 0.4;
  transform-style: preserve-3d;
}

.can-1 { top: 20%; left: 15%; transform: rotate(15deg) translateZ(50px); animation: canFloat1 8s infinite ease-in-out; }
.can-2 { bottom: 15%; right: 10%; transform: rotate(-25deg) translateZ(100px); animation: canFloat2 10s infinite ease-in-out; }

@keyframes canFloat1 {
  0%, 100% { transform: rotate(15deg) translateY(0); }
  50% { transform: rotate(25deg) translateY(-40px); }
}

@keyframes canFloat2 {
  0%, 100% { transform: rotate(-25deg) translateY(0); }
  50% { transform: rotate(-15deg) translateY(-30px); }
}

/* Portfolio Grid */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
  gap: var(--space-lg);
  margin-top: var(--space-xl);
}

.artwork-card {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  background: var(--color-surface);
  cursor: pointer;
  border: 1px solid rgba(255,255,255,0.05);
  transition: var(--transition-slow);
}

.artwork-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.5) contrast(1.2);
  transition: var(--transition-slow);
}

.artwork-info {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: var(--space-lg);
  background: linear-gradient(transparent, rgba(0,0,0,0.9));
  transform: translateY(100%);
  transition: var(--transition-slow);
}

.artwork-card:hover {
  transform: scale(0.98);
  border-color: var(--color-primary);
  box-shadow: 0 0 30px rgba(255, 0, 85, 0.2);
}

.artwork-card:hover img {
  filter: grayscale(0) contrast(1);
  transform: scale(1.1);
}

.artwork-card:hover .artwork-info {
  transform: translateY(0);
}

.artwork-title {
  font-size: 1.2rem;
  margin-bottom: var(--space-xs);
}

.artwork-category {
  font-size: 0.7rem;
  color: var(--color-secondary);
  text-transform: uppercase;
}

/* Sections */
.section-header {
  margin-bottom: var(--space-xl);
}

.section-tag {
  color: var(--color-primary);
  font-size: 0.8rem;
  margin-bottom: var(--space-sm);
  display: block;
}

.section-title {
  font-size: 3rem;
}

/* About Section */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--space-2xl);
  align-items: center;
}

.about-visual {
  position: relative;
  height: 600px;
  background: var(--color-surface);
  border-radius: 4px;
  overflow: hidden;
}

.about-visual .placeholder-image {
  width: 100%;
  height: 100%;
}

.hero-actions {
  margin-top: 2rem;
  display: flex;
  gap: 1rem;
  justify-content: center;
}

.about-visual-container {
  height: 100%;
  width: 100%;
  background: linear-gradient(45deg, #121212, #252525);
}

.about-visual-icon {
  color: var(--color-primary);
  opacity: 0.3;
}

.tool-list {
  margin-top: 3rem;
}

.tool-list-grid {
  display: flex;
  gap: 2rem;
  font-size: 0.8rem;
}

.contact-section {
  background: var(--color-surface);
  padding: var(--space-2xl) 0;
}

.contact-container {
  text-align: center;
}

.contact-title {
  font-size: 4rem;
}

.contact-description {
  max-width: 600px;
  margin: 2rem auto;
  color: var(--color-text-dim);
}

.copyright-bar {
  margin-top: 4rem;
  font-size: 0.7rem;
  color: #333;
  text-align: center;
}

.footer-description {
  color: var(--color-text-dim);
  font-size: 0.8rem;
  letter-spacing: 1px;
}

.about-text {
  font-size: 1.2rem;
  color: var(--color-text-dim);
}

.about-text p {
  margin-bottom: var(--space-lg);
}

.highlight {
  color: var(--color-text);
  font-weight: 700;
}

/* Footer */
footer {
  margin-top: var(--space-2xl);
  padding: var(--space-2xl) 0 var(--space-xl);
  border-top: 1px solid rgba(255,255,255,0.1);
  background: #050505;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: var(--space-xl);
}

.footer-logo {
  font-size: 2rem;
  font-weight: 900;
  color: var(--color-primary);
  margin-bottom: var(--space-md);
}

.footer-links h4 {
  margin-bottom: var(--space-lg);
  color: var(--color-secondary);
  font-size: 0.8rem;
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: var(--space-sm);
}

.footer-links a {
  color: var(--color-text-dim);
  text-decoration: none;
  font-size: 0.9rem;
  transition: var(--transition-fast);
}

.footer-links a:hover {
  color: var(--color-text);
}

.contact-cta {
  font-size: 3rem;
  text-decoration: none;
  color: var(--color-text);
  display: inline-block;
  margin-top: var(--space-lg);
  transition: var(--transition-fast);
}

.contact-cta:hover {
  color: var(--color-secondary);
  transform: skewX(-10deg);
}

/* Utilities */
body { font-family: 'Space Grotesk', sans-serif; }
h1, h2, h3, .logo, .btn, .nav-links a { font-family: 'Syncopate', sans-serif; }

.btn {
  display: inline-block;
  padding: 1rem 2.5rem;
  background: var(--color-primary);
  color: white;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  border: none;
  cursor: pointer;
  transition: var(--transition-fast);
  margin-top: var(--space-lg);
}

.btn-small {
  padding: 0.5rem 1.5rem;
  margin-top: 0;
}

.btn-outline {
  background: transparent;
  border: 1px solid white;
}

.btn:hover {
  background: white;
  color: black;
  box-shadow: 0 0 20px rgba(255,255,255,0.4);
}

.placeholder-image {
  background: #1a1a1a;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.placeholder-image::after {
  content: attr(data-label);
  color: rgba(255,255,255,0.1);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
}

/* Responsive */
@media (max-width: 1024px) {
  .about-split {
    grid-template-columns: 1fr;
  }
  .hero-title { font-size: 5rem; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .footer-content { grid-template-columns: 1fr; }
}
