/* components.css - Component styles */

/* Header */
header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: linear-gradient(145deg, rgba(14, 10, 31, 0.95), rgba(26, 15, 46, 0.98));
  backdrop-filter: blur(20px);
  transition: all 0.3s ease;
  width: 100%;
  box-sizing: border-box;
  border-bottom: 1px solid rgba(138, 43, 226, 0.3);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 2rem;
  width: 100%;
  max-width: none;
  margin: 0;
}

.logo {
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, #c084fc, #a855f7, #7e22ce);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 0 40px rgba(168, 85, 247, 0.3);
  margin-left: 0;
  padding-left: 0;
  transition: all 0.3s ease;
  cursor: pointer;
}

.logo:hover {
  text-shadow: 0 0 60px rgba(168, 85, 247, 0.5);
  transform: scale(1.05);
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  margin-right: 0;
  padding-right: 0;
}

.nav-links a {
  color: #e9d5ff;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
}

.nav-links a:hover {
  color: #d8b4fe;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #a855f7, #d8b4fe);
  transition: width 0.3s ease;
}

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

/* Discord Button in Hero Section */
.btn-discord-hero {
  background: linear-gradient(135deg, #5865f2, #4752c4);
  color: white;
  border: none;
  padding: 0.9rem 2rem;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 10px 25px -5px rgba(88, 101, 242, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-decoration: none;
  display: inline-block;
}

.btn-discord-hero:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 30px -8px rgba(88, 101, 242, 0.4);
  background: linear-gradient(135deg, #7289da, #5865f2);
}

/* Theme Switcher Button */
.theme-switcher-btn {
  background: linear-gradient(135deg, #8b5cf6, #7c3aed);
  color: white;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(124, 58, 237, 0.3);
  margin-left: 1rem;
  font-size: 1.2rem;
}

.theme-switcher-btn:hover {
  transform: scale(1.1) rotate(15deg);
  box-shadow: 0 8px 20px rgba(124, 58, 237, 0.5);
  background: linear-gradient(135deg, #a78bfa, #8b5cf6);
}

/* Hero Section */
.hero {
  padding: 5rem 0 4rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-badge {
  display: inline-block;
  padding: 0.4rem 1rem;
  background: rgba(138, 43, 226, 0.15);
  border: 1px solid rgba(168, 85, 247, 0.3);
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 500;
  color: #d8b4fe;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(10px);
}

.hero h1 {
  font-size: 3.8rem;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, #ffffff, #e9d5ff, #c084fc);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-description {
  font-size: 1.15rem;
  color: #cbd5e1;
  margin-bottom: 2.5rem;
  max-width: 90%;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
}

.btn-primary {
  background: linear-gradient(135deg, #8b5cf6, #7c3aed);
  color: white;
  border: none;
  padding: 0.9rem 2rem;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 10px 25px -5px rgba(124, 58, 237, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-decoration: none;
  display: inline-block;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 30px -8px rgba(124, 58, 237, 0.4);
  background: linear-gradient(135deg, #a78bfa, #8b5cf6);
}

.btn-secondary {
  background: transparent;
  color: #e9d5ff;
  border: 1px solid rgba(168, 85, 247, 0.4);
  padding: 0.9rem 2rem;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  text-decoration: none;
  display: inline-block;
}

.btn-secondary:hover {
  background: rgba(138, 43, 226, 0.1);
  border-color: #a855f7;
  color: #f3e8ff;
}

.hero-visual {
  background: linear-gradient(145deg, rgba(88, 28, 135, 0.2), rgba(138, 43, 226, 0.05));
  border-radius: 32px;
  padding: 2.5rem;
  backdrop-filter: blur(20px);
  border: 1px solid rgba(168, 85, 247, 0.2);
  box-shadow: 0 30px 50px -20px rgba(0, 0, 0, 0.5);
}

.visual-placeholder {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.visual-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: rgba(30, 10, 50, 0.4);
  border-radius: 16px;
  border: 1px solid rgba(138, 43, 226, 0.15);
}

.visual-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #7e22ce, #a855f7);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.visual-content {
  flex: 1;
}

.visual-content .label {
  color: #cbd5e1;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.visual-content .value {
  font-weight: 600;
  color: #f3e8ff;
}

.progress-bar {
  width: 100%;
  height: 6px;
  background: rgba(138, 43, 226, 0.2);
  border-radius: 10px;
  margin-top: 0.5rem;
}

.progress-fill {
  width: 75%;
  height: 6px;
  background: linear-gradient(90deg, #a855f7, #d8b4fe);
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(168, 85, 247, 0.6);
}

/* Features Section */
.features {
  padding: 4rem 0;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #ffffff, #d8b4fe);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.section-subtitle {
  color: #94a3b8;
  margin-bottom: 3rem;
  font-size: 1.1rem;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.feature-card {
  background: linear-gradient(145deg, rgba(30, 15, 50, 0.5), rgba(20, 10, 35, 0.3));
  backdrop-filter: blur(20px);
  padding: 2rem;
  border-radius: 24px;
  border: 1px solid rgba(168, 85, 247, 0.15);
  transition: all 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-8px);
  border-color: rgba(168, 85, 247, 0.4);
  box-shadow: 0 25px 35px -15px rgba(124, 58, 237, 0.2);
  background: linear-gradient(145deg, rgba(40, 20, 60, 0.6), rgba(25, 12, 40, 0.4));
}

.feature-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #6b21a8, #a855f7);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 15px 20px -10px rgba(107, 33, 168, 0.4);
}

.feature-card h3 {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 0.8rem;
  color: #f3e8ff;
}

.feature-card p {
  color: #a1a1aa;
  font-size: 0.95rem;
}

/* Portfolio / Work Section */
.portfolio {
  padding: 4rem 0;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.portfolio-item {
  background: linear-gradient(145deg, #1e0f2e, #150b20);
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(138, 43, 226, 0.2);
  transition: all 0.3s ease;
}

.portfolio-item:hover {
  transform: scale(1.02);
  border-color: #a855f7;
  box-shadow: 0 20px 40px -15px #6b21a8;
}

.portfolio-image {
  height: 200px;
  background: linear-gradient(45deg, #4c1d95, #7e22ce, #a855f7);
  position: relative;
  overflow: hidden;
}

.portfolio-image::after {
  content: 'VERAS';
  position: absolute;
  bottom: 20px;
  left: 20px;
  color: white;
  font-weight: 700;
  font-size: 1.5rem;
  opacity: 0.8;
}

.portfolio-content {
  padding: 1.5rem;
}

.portfolio-content h4 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #f3e8ff;
}

.portfolio-content p {
  color: #a1a1aa;
  font-size: 0.9rem;
}

.tag {
  display: inline-block;
  padding: 0.3rem 0.9rem;
  background: rgba(138, 43, 226, 0.2);
  border-radius: 100px;
  font-size: 0.75rem;
  color: #d8b4fe;
  margin-top: 1rem;
  border: 1px solid rgba(168, 85, 247, 0.2);
}

/* Contact / CTA Section */
.contact {
  padding: 5rem 0;
  text-align: center;
}

.contact-box {
  background: linear-gradient(145deg, rgba(88, 28, 135, 0.25), rgba(30, 10, 50, 0.4));
  backdrop-filter: blur(20px);
  max-width: 800px;
  margin: 0 auto;
  padding: 3.5rem;
  border-radius: 40px;
  border: 1px solid rgba(168, 85, 247, 0.25);
}

.contact-box h2 {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #ffffff, #e9d5ff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.contact-box p {
  color: #cbd5e1;
  margin-bottom: 2.5rem;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2rem;
}

.social-link {
  width: 50px;
  height: 50px;
  background: rgba(138, 43, 226, 0.1);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #d8b4fe;
  font-size: 1.5rem;
  transition: all 0.3s ease;
  border: 1px solid rgba(168, 85, 247, 0.2);
  text-decoration: none;
}

.social-link:hover {
  background: #7e22ce;
  color: white;
  transform: translateY(-3px);
  border-color: #c084fc;
}

/* Footer */
footer {
  padding: 2rem 0;
  border-top: 1px solid rgba(138, 43, 226, 0.15);
  color: #94a3b8;
  text-align: center;
  font-size: 0.9rem;
}

/* Animated dots for Coming Soon */
.dots {
  display: inline-block;
  width: 30px;
  text-align: left;
}

.dots::after {
  content: ".";
  animation: dotsAnimation 1.5s infinite;
}

@keyframes dotsAnimation {
  0%, 20% {
    content: ".";
  }
  40% {
    content: "..";
  }
  60%, 100% {
    content: "...";
  }
}

/* Ensure portfolio images update with theme */
.portfolio-image {
  transition: background 0.8s ease !important;
}
