
@import url('https://fonts.googleapis.com/css2?family=Share+Tech+Mono&display=swap');

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-family: 'Share Tech Mono', monospace;
  overflow-y: auto;
}

/* Make the body a flex column to push footer down */
body {
  background-color: #fff;
  color: #222;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  padding-top: 80px; /* navbar height */
}

/* Main content should take all remaining space */
.main-content {
  flex: 1;
  display: flex;
  justify-content: center;
  padding: 5vw;
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.6);
  border-bottom: 1px solid #ccc;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 2rem;
  z-index: 999;
}

.navbar-brand {
  font-weight: bold;
  font-size: 1.2rem;
  color: #222;
}

.navbar-menu {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}

.navbar-menu a {
  text-decoration: none;
  color: #222;
  font-weight: 500;
  transition: color 0.2s;
}

.navbar-menu a:hover {
  color: #4285f4;
}


.container {
  max-width: 1000px;
  width: 100%;
  text-align: center;
}

.profile-img {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #4285f4;
  box-shadow: 0 0 20px rgba(66, 133, 244, 0.6);
}

.profile-caption {
  margin-top: 0.75rem;
  font-size: 1rem;
  color: #555;
}

.glitch {
  font-size: 2rem;
  color: #4285f4;
  margin-top: 1.5rem;
}

h2 {
  font-size: 1.4rem;
  color: #f4b400;
  margin: 1rem 0;
}

.static-text {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.keywords {
  font-weight: bold;
  color: #14b8a6;
  border-right: 2px solid #14b8a6;
  white-space: nowrap;
  overflow: hidden;
  display: inline-block;
  width: 12ch;
  min-height: 1.5em;
  vertical-align: bottom;
  animation: blinkCursor 0.8s steps(40, end) infinite;
}

@keyframes blinkCursor {
  from { border-right-color: black; }
  to { border-right-color: transparent; }
}

.buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.5rem;
}

.btn {
  padding: 10px 16px;
  border-radius: 10px;
  text-decoration: none;
  font-size: 0.9rem;
  color: #fff;
  min-width: 120px;
  text-align: center;
}

.btn.blue { background-color: #4285f4; }
.btn.green { background-color: #0f9d58; }
.btn.yellow { background-color: #f4b400; color: #000; }
.btn.red { background-color: #db4437; }

.social-icons {
  margin-top: 2rem;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.social-icons a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 38px;
  height: 38px;
  border: 2px solid #222;
  border-radius: 30%;
  font-size: 20px;
  color: #222;
  transition: 0.3s ease;
}

.social-icons a:hover {
  background-color: #222;
  color: white;
}

@media (min-width: 768px) {
  .glitch { font-size: 2.5rem; }
  .static-text { font-size: 1.2rem; }
}

footer {
  text-align: center;
  font-size: 0.9rem;
  color: #666;
  background-color: #f9f9f9;
  padding: 15px 10px;
  border-top: 1px solid #ddd;
  margin-top: auto;
}

@media (max-width: 600px) {
  footer {
    font-size: 0.8rem;
  }
}
