/* theme.css — LSR Dark Theme */
html {
  scroll-behavior: smooth;
}

/* Root Colors */
:root {
  --bg-dark: #0b1020;
  --bg-panel: #121833;
  --text-muted: #8892b0;
  --text-light: #e6e9f5;
  --brand-primary: #7c5cff;
  --brand-secondary: #00d4ff;
  --accent-green: #00c896;
  --accent-amber: #f4b400;
  --accent-red: #e63946;
}

/* Reset */
body {
  margin: 0;
  font-family: 'Arial', sans-serif;
  background: var(--bg-dark);
  color: var(--text-light);
}

/* Header */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 30px;
  background: rgba(18, 24, 51, 0.85);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(124, 92, 255, 0.2);
}
header img {
  height: 50px;
}
nav a {
  color: var(--text-light);
  margin: 0 12px;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.2s;
}
nav a:hover {
  color: var(--brand-primary);
}

/* Section */
section {
  padding: 50px 20px;
}

/* Contact */
.contact-container {
  text-align: center;
  padding: 50px 20px;
  background: linear-gradient(180deg, var(--bg-dark), var(--bg-panel));
}

.contact-container h1 {
  font-size: 2.5rem;
  margin-bottom: 40px;
  color: var(--brand-secondary);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  max-width: 1100px;
  margin: auto;
}

.contact-card {
  background: var(--bg-panel);
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
  transition: transform 0.2s, box-shadow 0.2s;
}
.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 25px rgba(0,0,0,0.5);
}
.contact-card i {
  font-size: 30px;
  color: var(--brand-primary);
  margin-bottom: 15px;
}
.contact-card h3 {
  margin: 10px 0 5px;
  font-size: 1.2rem;
  color: var(--brand-secondary);
}
.contact-card p, .contact-card a {
  margin: 0;
  color: var(--text-muted);
  text-decoration: none;
}
.contact-card a:hover {
  color: var(--brand-primary);
}

/* Footer */
footer {
  text-align: center;
  background: var(--bg-panel);
  color: var(--text-muted);
  padding: 20px;
  margin-top: 40px;
  border-top: 1px solid rgba(124, 92, 255, 0.2);
}
