/* Vellora Draws - Main CSS */
/* Y2K Post-Tech Theme - Base Styles */

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

:root {
  --primary-color: #00ffff;
  --secondary-color: #ff00ff;
  --accent-color: #ffff00;
  --bg-primary: #000033;
  --bg-secondary: #001122;
  --text-light: #ffffff;
  --text-dark: #ccccff;
  --border-glow: rgba(0, 255, 255, 0.5);
  --shadow-neon: 0 0 20px rgba(0, 255, 255, 0.3);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Orbitron', 'Arial', sans-serif;
  background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
  color: var(--text-light);
  line-height: 1.6;
  min-height: 100vh;
  position: relative;
}

body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(circle at 20% 80%, rgba(0, 255, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255, 0, 255, 0.1) 0%, transparent 50%);
  pointer-events: none;
  z-index: -1;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  margin-bottom: 1rem;
  text-shadow: 0 0 10px currentColor;
}

h1 {
  font-size: 2.5rem;
  background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

h2 {
  font-size: 2rem;
  color: var(--primary-color);
}

h3 {
  font-size: 1.5rem;
  color: var(--accent-color);
}

p {
  margin-bottom: 1rem;
  color: var(--text-dark);
}

/* Layout Structure */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

header {
  background: rgba(0, 20, 40, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 2px solid var(--border-glow);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow-neon);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.logo {
  font-size: 1.8rem;
  font-weight: bold;
  color: var(--primary-color);
  text-decoration: none;
  text-shadow: 0 0 15px currentColor;
}

.logo:hover {
  color: var(--secondary-color);
  transition: color 0.3s ease;
}

/* Navigation */
nav ul {
  display: flex;
  list-style: none;
  gap: 2rem;
}

nav a {
  color: var(--text-light);
  text-decoration: none;
  font-weight: 500;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

nav a::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
  transition: left 0.5s;
}

nav a:hover::before {
  left: 100%;
}

nav a:hover {
  background: rgba(0, 255, 255, 0.1);
  box-shadow: 0 0 15px var(--border-glow);
  transform: translateY(-2px);
}

nav a:focus {
  outline: 2px solid var(--accent-color);
  outline-offset: 2px;
}

/* Main Content */
main {
  flex: 1;
  padding: 2rem 0;
}

/* Footer */
footer {
  background: rgba(0, 10, 20, 0.9);
  border-top: 2px solid var(--border-glow);
  padding: 2rem 0;
  margin-top: 4rem;
  position: relative;
}

.footer-content {
  text-align: center;
  font-size: 0.9rem;
  color: var(--text-dark);
  line-height: 1.8;
}

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

.footer-content a:hover {
  color: var(--accent-color);
  text-shadow: 0 0 5px currentColor;
}

.footer-content a:focus {
  outline: 2px solid var(--accent-color);
  outline-offset: 2px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .header-content {
    flex-direction: column;
    gap: 1rem;
  }
  
  nav ul {
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
  }
  
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.5rem;
  }
  
  .container {
    padding: 0 15px;
  }
}

@media (max-width: 480px) {
  nav ul {
    flex-direction: column;
    gap: 0.5rem;
  }
  
  nav a {
    display: block;
    text-align: center;
    min-width: 120px;
  }
  
  h1 {
    font-size: 1.8rem;
  }
}