/* Reset */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
  }
  
  body {
	font-family: 'Inter', sans-serif;
	background: linear-gradient(135deg, #fce4ec, #f8bbd0, #fff1f7);
	color: #1a1a1a;
	padding: 2rem;
	line-height: 1.8;
	font-size: 16px;
	background-attachment: fixed;
  }
  body::before {
	content: '';
	position: fixed;
	inset: 0;
	background: radial-gradient(circle at top left, rgba(255,255,255,0.25), transparent 70%);
	z-index: -1;
  }
  
  /* Typography */
  h1 {
	font-family: "ivymode", sans-serif;
	font-weight: 400;
	font-style: normal;
	color: #ee5ca0;
	text-align: center;
	margin-bottom: 0.5rem;
  }
  
  h2 {
	font-family: "ivymode", sans-serif;
	font-weight: 400;
	font-style: normal;
	color: #ee5ca0;
	text-align: center;
	margin-bottom: 2rem;
  }
  
  section h2 {
	color: #ee5ca0;
	font-size: 1.4rem;
	text-transform: uppercase;
	letter-spacing: 0.05em;
  }
  
  /* Container */
  main {
	max-width: 950px;
	margin: 0 auto;
  }
  
  /* Project Section */
  .project-list,
  .workshops {
	font-family: "ivymode", sans-serif;
	font-weight: 400;
	font-style: normal;
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
	margin-bottom: 1rem;
  }
  
  .project-dropdown {
	font-family: "ivymode", sans-serif;
	font-weight: 400;
	font-style: normal;
	background: transparent;
	border: 1px solid #f7a9ce; /* soft pastel pink outline */
	border-radius: 14px;
	padding: 0.8rem 1rem;
	transition: border-color 0.3s ease, background-color 0.3s ease;
  }
  
  .project-dropdown:hover {
	background-color: rgba(255, 240, 247, 0.3); /* light pink glow on hover */
	border-color: #d12b8f;
	transform: none; /* remove lift effect */
	box-shadow: none; /* no shadow */
  }
  
  .project-dropdown summary {
	font-size: 1.1rem;
	padding: 0.2rem 0;
	margin: 0;
	color: #ee5ca0;
  }  
  
  .project-dropdown[open] summary {
	color: #d12b8f;
  }
  
  .project-dropdown ul {
	list-style: none;
	padding-left: 1rem;
	margin-top: 0.6rem;
  }
  
  .project-dropdown li {
	margin: 0.5rem 0;
  }
  
  .project-dropdown a {
	text-decoration: none;
	color: #ffffff;
	font-size: 1rem;
	transition: all 0.2s ease;
	border-bottom: 1px solid transparent;
  }
  
  .project-dropdown a:hover {
	color: #d12b8f;
	border-bottom: 1px solid #d12b8f;
  }
  
  /* Workshop Styles */
  .workshops ul {
	list-style: none;
	padding: 0;
  }
  
  .workshops li {
	margin-bottom: 1rem;
  }
  
  .workshops a {
	display: block;
	padding: 0.6rem 1rem;
	border: 1px solid #f7a9ce;
	border-radius: 14px;
	text-align: left;
	background: transparent;
	color: #ee5ca0;
	transition: all 0.2s ease;
	text-decoration: none;
  }
  
  .workshops a:hover {
	background-color: rgba(255, 240, 247, 0.3);
	color: #d12b8f;
	border-color: #d12b8f;
  }   
  
  /* Optional Extras */
  section:not(:first-of-type) {
	border-top: 1px solid #eee;
	padding-top: 2rem;
  }
  
  /* Subtle sparkle effect (optional for hover) */
  .project-dropdown:hover::after {
	content: '✨';
	float: right;
	font-size: 1.2rem;
	opacity: 0.3;
  }
  
  
  
  
  
  
  