:root {
  --bg-light: #f8f9f7;
  --bg-dark: #262e3b;
  --text-light: #262e3b;
  --text-dark: #f8f9f7;
  --link: #b18b87;
  --link-accent: #db7965;
}

:root.dark {
  --bg: var(--bg-dark);
  --text: var(--text-dark);
  --link-accent: #cc4250;
}

:root {
  --bg: var(--bg-light);
  --text: var(--text-light);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 24px;
  font-family: 'Red Hat Display', sans-serif;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  transition: color 0.4s, background 0.4s;
}

a {
  color: var(--link);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.4s;
}

a:hover {
  color: var(--text);
}

.page {
  max-width: 1920px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  min-height: calc(100vh - 48px);
}

/* Dark mode toggle - fixed to bottom right */
.dark-mode-toggle {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--link-accent);
  padding: 0;
  display: flex;
  z-index: 1000;
}

.dark-mode-toggle:hover {
  color: var(--text);
}

.main {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.content {
  max-width: 600px;
  width: 100%;
}

.profile-photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 2rem;
}

.profile-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.content p {
  line-height: 1.8;
  margin: 0 0 1.5rem 0;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  list-style: none;
  padding: 0;
  margin: 2rem 0 0 0;
}

.social-links a {
  display: flex;
  align-items: center;
  color: var(--link);
  transition: color 0.4s;
}

.social-links a:hover {
  color: var(--text);
}

.social-links svg {
  width: 24px;
  height: 24px;
}

.footer {
  text-align: center;
  padding: 2rem 0;
  font-size: 0.9rem;
  color: var(--link);
}
