/* Base styles */
body {
  background-color: black;
  font-family: 'Cascadia Mono', monospace;
  padding-left: 150px;
  padding-right: 150px;
  color: #e0e0e0;
  font-size: 14px;
  /* Reduce from default 16px */
  line-height: 1.4;
}


p {
  line-height: 1.1;
}

h2 {
  font-size: 1.2rem;
  /* matches your current h5 size */
  font-weight: 600;
  color: aquamarine;
  /* add any other h5 styles you have */
}

h3 {
  font-size: 1rem;
  /* matches your current h6 size */
  font-weight: 500;
  margin: 0;
  /* add any other h6 styles you have */
}

/* Typography */
h1,
h5 {
  color: aquamarine;
  font-weight: bolder;
}

.tagline {
  color: #666;
}

/* Card sections */
.card-section {
  border: 1px solid #333;
  border-radius: 8px;
  padding: 10px;
  margin-bottom: 10px;
}

/* About section */
.luffy-img {
  width: 90px;
  height: 90px;
  position: absolute;
  top: -70px;
  left: 0;
}

.about-text {
  color: #bbb;
}

/* Experience section */
.exp {
  padding: 5px 0;
  /* border-bottom: 1px solid #333; */
  transition: padding-left 0.2s ease;
}

.exp h6 {
  color: aquamarine;
}

.exp:hover {
  padding-left: 8px;
  border-left: 2px solid aquamarine;
}

.exp:last-child {
  border-bottom: none;
}

.exp-trigger {
  cursor: pointer;
}

.exp-title {
  color: #fff;
  margin-bottom: 0;
}

.exp-role {
  color: #888;
}

.exp-date {
  color: aquamarine;
}

.exp-location {
  color: #666;
}

.exp-content {
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease;
  position: absolute;
  z-index: 50;
  background-color: #111;
  color: white;
  border: 1px solid aquamarine;
  border-radius: 6px;
  width: 500px;
  padding: 15px;
}

/* ticker part */

.ticker-container {
  width: 100%;
  overflow: hidden;
}

.ticker {
  display: flex;
  gap: 50px;
  white-space: nowrap;
}

.ticker-item {
  color: white;
  font-size: 16px;
  flex-shrink: 0;
}

@keyframes scroll {
  0% {
    transform: translateX(100%);
  }

  100% {
    transform: translateX(-100%);
  }
}

/* umm links */

.alink {
  /* transition: all 2s ease; */
  color: #aaa;
}

.alink.twinkle {
  color: aquamarine;
  text-shadow: 0 0 10px aquamarine;
}

/* Tech boxes */
.techbox {
  display: inline-block;
  background-color: rgba(255, 255, 255, 0.1);
  color: aquamarine;
  padding: 3px 8px;
  border-radius: 3px;
  border: 1px solid rgba(127, 255, 212, 0.3);
  margin: 2px;
  font-size: 0.85rem;
  transition: all 0.2s ease;
}

.techbox:hover {
  background-color: aquamarine;
  color: black;
}

/* Project cards */
.project-card {
  /* border: 1px solid #333; */
  border-radius: 6px;
  padding: 5px 0;
  height: 100%;
  transition: border-color 0.2s ease;
}

.project-card:hover {
  border-color: aquamarine;
}

.project-title {
  color: #fff;
  margin-bottom: 4px;
}

.project-title:hover {
  cursor: pointer;
  text-decoration: underline;
  color: aquamarine;
}

.project-content {
  display: flex;
  align-items: center;
}

.project-desc {
  color: #888;
  font-size: 0.85rem;
  margin-bottom: 0;
}

.project-tag {
  font-size: 0.75rem;
  padding: 2px 6px;
  background: rgba(127, 255, 212, 0.1);
  border-radius: 3px;
  color: aquamarine;
  margin-right: 4px;
}

/* Hobby pills */
.hobby-pill {
  display: inline-block;
  border: 1px solid #444;
  border-radius: 15px;
  padding: 5px 12px;
  margin: 4px;
  font-size: 0.85rem;
  color: #aaa;
  transition: all 0.2s ease;
}

.hobby-pill:hover {
  border-color: aquamarine;
  color: aquamarine;
}

/* Links */
a {
  color: #aaa;
  font-weight: bolder;
  /* text-decoration: none; */
  transition: color 0.2s ease;
}

a:hover {
  color: aquamarine;
}

li:hover {
  color: aquamarine;
}

/* Tech image popup */
.tech-image {
  display: none;
  position: absolute;
  bottom: 10px;
  right: 10px;
  width: 80px;
  height: 80px;
  object-fit: contain;
}

/* Education */
.edu-content {
  color: #bbb;
}

.edu-school {
  color: #888;
}

.edu-year {
  color: #666;
}

/* Footer */
footer {
  text-align: center;
  padding: 30px 0;
  margin-top: 20px;
  color: #444;
  font-size: 0.8rem;
}