:root {
  --bg: #f5efff;
  --text: #2c1b4d;
  --accent: #7d5abf;
  --card-bg: #ffffffcc;
  --border: rgba(125, 90, 191, 0.15);
  --shadow: rgba(125, 90, 191, 0.2);
}

body {
  margin: 0;
  font-family: 'Outfit', sans-serif;
  background: var(--bg);
  color: var(--text);
}

.background-glow {
  position: fixed;
  top: -100px;
  right: -80px;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, #dec9ff, transparent);
  opacity: 0.4;
  filter: blur(100px);
  z-index: -1;
}

header {
  padding: 3rem 1.5rem 2rem;
}

.info-bar {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 1rem;
}

.info-bar .left h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin: 0;
  color: var(--accent);
}

.info-bar .right {
  text-align: right;
  font-size: 0.95rem;
  color: #6a5a88;
  max-width: 300px;
}

.subtitle {
  text-align: center;
  margin-top: 2rem;
  color: #9c84c5;
  font-weight: 400;
  font-size: 1.1rem;
}

/* Project Grid */
.project-grid {
  display: grid;
  gap: 2rem;
  padding: 2rem;
  max-width: 1000px;
  margin: 0 auto;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.project-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2rem;
  font-size: 1.2rem;
  font-weight: 600;
  text-align: left;
  color: var(--text);
  box-shadow: 0 6px 20px var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  backdrop-filter: blur(10px);
  text-decoration: none;
}

.project-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 12px 32px rgba(125, 90, 191, 0.3);
}

.project-subtitle {
  display: block;
  font-size: 0.95rem;
  font-weight: 400;
  color: #5e4c81;
  margin-top: 0.4rem;
}

/* Footer */
.site-footer {
  text-align: center;
  padding: 4rem 2rem;
  color: #7e6b9e;
  font-size: 0.95rem;
  opacity: 0.8;
}

.site-footer .emoji-row {
  font-size: 1.5rem;
  margin-top: 0.6rem;
  letter-spacing: 0.4em;
}
