/* =========================================================
   1. CONTACT CIRCLE
========================================================= */


.contact-circle {
  /* Size */
  width: clamp(120px, 18vw, 180px);
  aspect-ratio: 1 / 1;

  /* Makes it a circle */
  border-radius: 50%;

  /* Center text */
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;

  /* Style */
  background:  #7025ff;
  color: #fff36a;


  font-family: Arial, sans-serif;
  font-size: clamp(0.95rem, 1.4vw, 1.15rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;

  box-shadow: 0 12px 24px rgba(83, 19, 223, 0.28);
  border: 3px solid rgba(255, 255, 255, 0.18);

  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.contact-circle:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 16px 30px rgba(83, 19, 223, 0.38);
  filter: brightness(1.05);
}

.contact-circle:active {
  transform: translateY(0) scale(0.98);
}

.contact-circle:focus-visible {
  outline: 3px solid #fff36a;
  outline-offset: 6px;
}

/* =========================================================
   2. READ CIRCLE
========================================================= */

#read-circle {
  display: grid;

  padding: 1rem 1.75rem;

  
  background-color: #40346f;
  color: white;

  border-radius: 999px;
  border: 3px solid #ffe27a;

  font-size: 1.1rem;
  font-weight: 800;
  text-align: center;

  cursor: pointer;
  list-style: none;

  box-shadow: 0 8px 18px rgba(64, 52, 111, 0.25);
  transition: 0.2s ease;
}

#read-circle:hover {
  background-color: #5c1df2;
  transform: translateY(-2px);
}

#read-circle:active {
  transform: translateY(1px);
}

#read-circle::-webkit-details-marker {
  display: none;
}

#read-circle::marker {
  content: "";
}

details[open] #read-circle {
  background-color: crimson;
  font-size: 0;
}

details[open] #read-circle::after {
  content: "Read Less";
  font-size: 1.1rem;
}




