/* Base CV styles — will be themed later */
:root {
  --bg: #fafafa;
  --text: #222;
  --accent: #b48c6e;
  --card-bg: #ffffff;
  --card-border: 2px solid var(--accent);
  --font-main: 'Georgia', serif;
  --font-accent: 'Montserrat', sans-serif;
}

body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-main);
}

.cv-wrapper {
  max-width: 900px;
  margin: 40px auto;
  padding: 20px;
  background: var(--card-bg);
  border: var(--card-border);
  border-radius: 12px;
}

h1, h2, h3 {
  font-family: var(--font-accent);
  margin-top: 0;
}

.section {
  margin-bottom: 24px;
}

.section-title {
  font-size: 1.4rem;
  font-weight: bold;
  margin-bottom: 12px;
  color: var(--accent);
}

ul {
  padding-left: 20px;
}

li {
  margin-bottom: 6px;
}

/* Contact info */
.contact {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.95rem;
}

.contact a {
  color: var(--accent);
  text-decoration: none;
}

/* Layouts */
.two-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

/* Simple fade for future theme transitions */
* {
  transition: all 0.3s ease;
}