
:root {
  --bg: #0e0e0e;
  --surface: #1a0f11;
  --text: #eaeaea;
  --text-light: #a3a3a3;
  --accent: #c03955;
  --accent-hover: #ff4f71;
  --divider: #2a1e21;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Helvetica Neue', sans-serif;
  line-height: 1.6;
  margin: 0;
  padding: 0;
  cursor: none;
}
body, * {
  cursor: none !important;
}


nav {
  display: flex;
  justify-content: center;
  gap: 2rem;
  padding: 1rem 0;
  background-color: var(--surface);
  border-bottom: 1px solid var(--divider);
  position: sticky;
  top: 0;
  z-index: 10;
}

nav a {
  text-decoration: none;
  color: var(--accent);
  font-weight: bold;
  transition: color 0.3s, text-shadow 0.3s;
}

nav a:hover {
  color: var(--accent-hover);
  text-shadow: 0 0 8px var(--accent-hover);
}

main.centered {
  max-width: 700px;
  margin: 1rem auto;
  text-align: center;
  padding: 0 1rem;
}
.custom-cursor {
  position: fixed;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--accent);
  pointer-events: none;
  mix-blend-mode: screen;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 8px var(--accent), 0 0 16px var(--accent);
  z-index: 9999;

  opacity: 0;               /* 🔹 Start invisible */
  transition: opacity 0.2s ease;
}
body.cursor-active .custom-cursor {
  opacity: 1;               /* 🔹 Fade in when ready */
}



.portrait {
  width: 240px;
  height: 240px;
  border-radius: 50%;
  object-fit: cover;
  transform: rotateY(12deg) rotateX(4deg);
  box-shadow:
    0 15px 30px rgba(255, 79, 113, 0.15),
    -10px 10px 20px rgba(255, 79, 113, 0.1);
  transition: transform 0.6s ease, box-shadow 0.6s ease;
}

.portrait:hover {
  box-shadow: 0 0 20px rgba(255, 79, 113, 0.4);
}

.now {
  margin-top: 2rem;
  font-size: 1rem;
  color: var(--text-light);
}

.blog-coming-soon {
  margin-top: 4rem;
  background: var(--surface);
  padding: 2rem;
  border-radius: 12px;
  border-left: 4px solid var(--accent);
  box-shadow: 0 0 12px rgba(255, 79, 113, 0.15);
  text-align: center;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}
.blog-coming-soon p {
  font-size: 1.2rem;
  color: var(--accent);
}
.blog-coming-soon .note {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-top: 0.5rem;
}

/*.coming-soon h2 {
  color: var(--accent);
  text-shadow: 0 0 4px rgba(255, 79, 113, 0.3);
}*/

a {
  color: var(--accent);
  text-decoration: none;
  transition: color 0.3s ease, text-shadow 0.3s ease;
}

/*a:hover {
  color: var(--accent-hover);
  text-shadow: 0 0 8px var(--accent-hover);
}*/
a:hover {
  color: var(--accent-hover);
  text-shadow: 0 0 6px var(--accent-hover);
}

.tag-filter {
  margin: 2rem 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
}

.tag-btn {
  background: none;
  border: 1px solid var(--accent);
  color: var(--accent);
  padding: 0.3rem 0.7rem;
  margin: 0.3rem;
  border-radius: 6px;
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

.tag-btn:hover {
  background-color: rgba(255, 79, 113, 0.1);
}

.tag-btn.active {
  background-color: var(--accent);
  color: var(--bg);
  box-shadow: 0 0 6px rgba(255, 79, 113, 0.4);
}


.post-preview {
  background-color: var(--surface);
  padding: 1.5rem;
  margin-bottom: 2rem;
  border-left: 4px solid var(--accent);
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(255, 79, 113, 0.08);
  transition: box-shadow 0.3s ease;
}

.post-preview:hover {
  box-shadow: 0 0 16px rgba(255, 79, 113, 0.2);
}

.meta {
  font-size: 0.9rem;
  color: var(--text-light);
}
.collab-invite {
  margin-top: 2.5rem;
  background: var(--surface);
  padding: 1.25rem 1.5rem;  /* reduced from 2rem */
  border-radius: 12px;
  border-left: 4px solid var(--accent);
  box-shadow: 0 0 12px rgba(255, 79, 113, 0.1);
  text-align: center;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.collab-invite h2 {
  color: var(--accent);
  margin-bottom: 1rem;  /* tightened spacing */
}

.collab-invite p {
  font-size: 1rem;  /* slightly smaller */
  color: var(--text-light);
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;  /* reduces line spacing */
}

.collab-invite a {
  color: var(--accent);
  text-decoration: none;
}

.collab-invite a:hover {
  color: var(--accent-hover);
  text-shadow: 0 0 6px var(--accent-hover);
}

.about-section {
  margin-top: 2.5rem;
  text-align: left;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.about-section h2 {
  color: var(--accent);
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.about-section ul {
  list-style: square;
  padding-left: 1.5rem;
  color: var(--text-light);
}

.about-section p {
  color: var(--text-light);
  font-size: 1.05rem;
}

.cv-button {
  display: inline-block;
  padding: 0.5rem 1.2rem;
  font-size: 0.9rem;
  color: var(--bg);
  background-color: var(--accent);
  border-radius: 8px;
  text-decoration: none;
  margin-top: 1rem;
  box-shadow: 0 0 8px rgba(255, 79, 113, 0.2);
  transition: all 0.2s ease;
}

.cv-button:hover {
  background-color: var(--accent-hover);
  box-shadow: 0 0 12px rgba(255, 79, 113, 0.4);
}



