/* General reset */
body {
  margin: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: linear-gradient(135deg, #ff4d94, #d62d6e, #822659, #2b2b2b);
  background-attachment: fixed;
  color: #f2f2f2;
  line-height: 1.6;
}

/* Section borders like original */
.section {
  border: 2px solid #ff4d94;
  margin: 20px auto;
  padding: 20px;
  max-width: 1000px;
  background: rgba(30, 20, 30, 0.9);
  border-radius: 12px;
}

/* ----- Header with Nav Bar ----- */
header.section {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

header h1 {
  margin: 0;
  font-size: 1.8em;
  color: white;
}

/* Nav bar fixed buttons */
nav {
  display: flex;
  gap: 12px;
}

nav a {
  text-decoration: none;
  padding: 8px 16px;
  border-radius: 25px;
  font-weight: bold;
  color: white;
  background: linear-gradient(135deg, #ff4d94, #cc2952);
  transition: all 0.3s ease;
  box-shadow: 0px 3px 6px rgba(0,0,0,0.4);
}

nav a:hover {
  background: linear-gradient(135deg, #ff99b3, #ff335f);
  transform: translateY(-2px);
}

/* ----- Main content layout ----- */
.main-content {
  display: flex;
  gap: 30px;
  align-items: flex-start;
}

.main-content img {
  max-width: 250px;
  border-radius: 10px;
  border: 3px solid #ff4d94;
}

/* ----- Info Section ----- */
.info h2 {
  margin-top: 0;
  color: #ff4d94;
}

.info h3 {
  color: #ff99b3;
}

/* ----- Music Note Bullets ----- */
ul.notes {
  list-style: none;
  padding-left: 0;
}

ul.notes li {
  position: relative;
  padding-left: 1.5em;
  margin-bottom: 8px;
  color: #f5d6e0;
}

ul.notes li::before {
  content: "♪";
  position: absolute;
  left: 0;
  top: 0;
  color: #ff4d94;
  font-weight: bold;
}
/* Portfolio lists */
.portfolio-list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
}

.portfolio-list li {
  background: rgba(40, 20, 40, 0.8); /* Teto-themed box */
  margin: 10px 0;
  padding: 12px;
  border: 2px solid #ff4d94;
  border-radius: 10px;
  transition: transform 0.2s ease, background 0.3s;
}

.portfolio-list li:hover {
  background: rgba(60, 20, 60, 0.9);
  transform: translateX(5px);
}

.portfolio-list a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
}

.portfolio-list a:hover {
  color: #ffd6eb;
}
/* bullet points */
.music-list {
  list-style: none; /* remove default bullets */
  padding-left: 1.2em; /* space for custom bullet */
}

.music-list li {
  position: relative;
  margin-bottom: 0.5em;
}

.music-list li::before {
  content: "\266B"; /* Unicode for music note ♪ is \266B */
  position: absolute;
  left: -1.2em;
  color: #000; /* bullet color */
  font-size: 1.2em; /* adjust size */
}
.profile-card {
  position: relative;
   padding: 20px;
  min-height: 300px;
}

.profile-text {
  grid-area: text;
}

.profile-image {
  position: absolute;
  bottom: 20px;
  right: 20px;
  width: 150px;
  border-radius: 10px;
  border: 3px solid #ff4d94;
}




