/* ============================================
GLOBAL STYLES & VARIABLES
============================================ */
@import url("https://fonts.googleapis.com/css2?family=Karla:wght@300;400;600;700;800&display=swap");

:root {
  /* Color Palette */
  --background: 41 30% 94%;
  /* #F5F2EC */
  --foreground: 86 9% 29%;
  /* #505749 */
  --card: 41 50% 91%;
  /* slight cream tint of bg */
  --card-foreground: 86 9% 29%;
  --popover: 41 30% 94%;
  --popover-foreground: 86 9% 29%;
  --primary: 86 9% 29%;
  /* #505749 */
  --primary-foreground: 41 30% 96%;
  --secondary: 41 60% 91%;
  /* #FEF0D3 */
  --secondary-foreground: 86 9% 29%;
  --muted: 41 25% 88%;
  --muted-foreground: 86 9% 45%;
  --accent: 41 96% 91%;
  /* #FEF0D3 */
  --accent-foreground: 86 9% 29%;
  --highlight: 327 78% 47%;
  /* #D41A7D - Rose accent #E90083 used in Gustichef */
  --highlight-rgb: 233 0 131;
  --highlight-foreground: 41 30% 96%;
  --destructive: 0 60% 45%;
  --destructive-foreground: 41 30% 96%;
  --border: 86 8% 78%;
  --input: 86 8% 78%;
  --ring: 86 9% 29%;
  --radius: 0.75rem;

  /* Shadows */
  --shadow-soft: 0 18px 40px -24px hsl(86 15% 20% / 0.18);
  --shadow-card:
    0 1px 0 hsl(86 8% 78% / 0.6), 0 24px 60px -32px hsl(86 15% 20% / 0.22);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  border-color: hsl(var(--border));
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: hsl(var(--background));
  color: hsl(var(--foreground));
  font-family:
    "Karla",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

::selection {
  background-color: hsl(var(--highlight));
  color: hsl(var(--highlight-foreground));
}

#root {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* ============================================
   NAVIGATION
   ============================================ */

.navbar {
  position: sticky;
  top: 0;
  z-index: 40;
  background-color: hsl(var(--background) / 0.85);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid hsl(var(--border));
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 1rem 1.25rem;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .nav-container {
    padding: 1rem 2rem;
    gap: 2.5rem;
  }
}

.nav-logo {
  font-weight: 700;
  color: hsl(var(--foreground));
  font-size: 1.125rem;
  letter-spacing: -0.03em;
  text-decoration: none;
  transition: color 200ms;
  white-space: nowrap;
}

.nav-logo:hover {
  color: hsl(var(--highlight));
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .nav-links {
    gap: 2.5rem;
  }
}

.nav-link {
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-weight: 600;
  text-decoration: none;
  transition: color 200ms;
  color: hsl(var(--muted-foreground));
}

.nav-link:hover {
  color: hsl(var(--foreground));
}

.nav-link.active {
  color: hsl(var(--highlight));
}

.nav-logo img {
  width: 130px;
  object-fit: cover;
}

/* ============================================
   MAIN CONTENT & FLEX LAYOUT
   ============================================ */

.main-content {
  flex: 1;
  display: flex;
  flex-direction: column;
}

/* ============================================
   01. BIO SECTION
   ============================================ */

.bio-section {
  padding: 2rem 1.25rem;
}

@media (min-width: 768px) {
  .bio-section {
    padding: 3rem 2rem;
  }
}

.bio-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 768px) {
  .bio-container {
    flex-direction: row;
    gap: 3rem;
    align-items: flex-start;
  }
}

.bio-image {
  width: 100%;
  max-width: 100%;
  order: 1;
}

@media (min-width: 768px) {
  .bio-image {
    width: 32%;
    flex-shrink: 0;
    order: 1;
  }
}

.bio-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

.bio-content {
  flex: 1;
  order: 2;
  width: 100%;
}

@media (min-width: 768px) {
  .bio-content {
    order: 2;
  }
}

.bio-logo {
  margin-bottom: 1.5rem;
  display: flex;
  justify-content: center;
}

@media (min-width: 768px) {
  .bio-logo {
    margin-bottom: 1.75rem;
    justify-content: flex-start;
  }
}

.bio-logo img {
  height: 70px;
  width: auto;
  object-fit: contain;
}

@media (min-width: 768px) {
  .bio-logo img {
    height: 100px;
  }
}

.bio-text {
  font-size: 1rem;
  line-height: 1.6;
  text-align: center;
  color: hsl(var(--muted-foreground));
}

@media (min-width: 768px) {
  .bio-text {
    font-size: 1.125rem;
    text-align: left;
  }
}

.bio-text p {
  margin-bottom: 1.25rem;
}

@media (min-width: 768px) {
  .bio-text p {
    margin-bottom: 1.5rem;
  }
}

.bio-text p:last-child {
  margin-bottom: 0;
}

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

@media (min-width: 768px) {
  .bio-actions {
    justify-content: flex-start;
  }
}

.cv-download {
  background-color: hsl(var(--foreground));
  color: hsl(var(--background));
  border-color: transparent;
}

.cv-download:hover {
  background-color: hsl(var(--foreground) / 0.9);
  opacity: 0.9;
}

.btn-icon {
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
}

/* ============================================
02. HOW I WORK SECTION
============================================ */

.how-i-work-section {
  padding: 2rem 1.25rem;
  background-color: hsl(var(--background));
}

@media (min-width: 768px) {
  .how-i-work-section {
    padding: 3rem 2rem;
  }
}

.how-i-work-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

@media (min-width: 768px) {
  .how-i-work-container {
    flex-direction: row;
    gap: 3rem;
    align-items: flex-start;
  }
}

.how-i-work-flowers {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 2rem;
  width: 100%;
}

@media (min-width: 768px) {
  .how-i-work-flowers {
    flex-direction: column;
    width: 100px;
    gap: 2 rem;
    flex-shrink: 0;
  }
}

.flower-decoration {
  width: auto;
  height: auto;
  object-fit: contain;
}

.flower-1 {
  width: 60px;
}

.flower-2 {
  width: 51px;
}

.flower-3 {
  width: 55px;
}

@media (min-width: 768px) {
  .flower-1 {
    width: 60px;
  }
  .flower-2 {
    width: 60px;
  }
  .flower-3 {
    width: 60px;
  }
}

.how-i-work-content {
  flex: 1;
  width: 100%;
}

.section-title {
  font-family: "Karla", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: hsl(var(--foreground));
  margin-bottom: 2rem;
  letter-spacing: -0.02em;
  line-height: 1.1;
  text-align: center;
}

@media (min-width: 768px) {
  .section-title {
    font-size: 2.75rem;
    margin-bottom: 2.5rem;
    text-align: left;
  }
}

.accordion-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.accordion-item {
  border-top: 1px solid hsl(var(--border) / 0.2);
  border-bottom: 1px solid hsl(var(--border) / 0.2);
  margin-bottom: -1px;
}

.accordion-item:last-child {
  margin-bottom: 0;
}

.accordion-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1rem;
  cursor: pointer;
  user-select: none;
  gap: 1rem;
  transition: background-color 200ms;
}

@media (min-width: 768px) {
  .accordion-header {
    padding: 1.5rem 1.5rem;
  }
}

.accordion-header:hover {
  background-color: hsl(var(--card) / 0.5);
}

.accordion-title {
  font-family: "Karla", sans-serif;
  font-size: 1rem;
  color: hsl(var(--foreground) / 0.75);
  line-height: 1.6;
}

@media (min-width: 768px) {
  .accordion-title {
    font-size: 1rem;
    color: hsl(var(--muted-foreground));
  }
}

.accordion-icon {
  font-size: 1.5rem;
  color: hsl(var(--foreground) / 0.4);
  flex-shrink: 0;
  font-weight: 300;
  transition: color 200ms;
}

.accordion-item:hover .accordion-icon {
  color: hsl(var(--foreground) / 0.7);
}

.accordion-item.active {
  background-color: hsl(var(--card) / 0.3);
}

.accordion-item.active .accordion-title {
  color: hsl(var(--foreground));
  font-weight: 600;
}

.accordion-item.active .accordion-icon {
  color: hsl(var(--highlight));
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: all 300ms ease-out;
  padding: 0 1rem;
  font-size: 1rem;
  line-height: 1.6;
  color: hsl(var(--foreground) / 0.8);
}

.accordion-item.active .accordion-content {
  max-height: 500px;
  padding: 0 1rem 1.5rem;
}

/* ============================================
   03. EXPERIENCE SECTION
   ============================================ */

.experience-section {
  padding: 3rem 1.25rem;
  background-color: hsl(var(--background));
}

@media (min-width: 768px) {
  .experience-section {
    padding: 5rem 2rem;
  }
}

.experience-section > .section-title {
  text-align: center;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .experience-section > .section-title {
    text-align: left;
    margin-bottom: 4rem;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
  }
}

.experience-container {
  max-width: 1400px;
  margin: 0 auto;
}

.experience-timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
}

@media (min-width: 768px) {
  .experience-timeline {
    border-left: 1px solid hsl(var(--border) / 0.3);
    padding-left: 3rem;
    margin-left: 1rem;
  }
}

.experience-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 2.5rem 0;
  border-bottom: 1px solid hsl(var(--border) / 0.2);
  gap: 1.5rem;
  position: relative;
}

.experience-item:last-child {
  border-bottom: none;
}

@media (min-width: 768px) {
  .experience-item {
    flex-direction: row;
    align-items: flex-start;
    text-align: left;
    padding: 3rem 0;
    gap: 4rem;
    border-bottom: 1px solid hsl(var(--border) / 0.2);
  }

  .experience-item::before {
    content: "";
    position: absolute;
    left: -3.35rem;
    top: 3.25rem;
    width: 0.625rem;
    height: 0.625rem;
    border-radius: 50%;
    background-color: hsl(var(--highlight));
    border: 2px solid hsl(var(--background));
    z-index: 10;
  }
}

.experience-date {
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-weight: 600;
  color: hsl(var(--muted-foreground));
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .experience-date {
    width: 180px;
    font-size: 0.6875rem;
    padding-top: 0.5rem;
  }
}

.experience-details {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  width: 100%;
}

@media (min-width: 768px) {
  .experience-details {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2rem;
  }
}

.experience-job h3 {
  font-family: "Karla", sans-serif;
  font-size: 1.25rem;
  font-weight: 400;
  color: hsl(var(--foreground));
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

@media (min-width: 768px) {
  .experience-job h3 {
    font-size: 1.5rem;
  }
}

.experience-job p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: hsl(var(--foreground) / 0.8);
}

@media (min-width: 768px) {
  .experience-job p {
    font-size: 1.05rem;
  }
}

.experience-location {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: hsl(var(--foreground) / 0.6);
  font-size: 0.875rem;
  font-weight: 500;
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .experience-location {
    justify-content: flex-end;
    font-size: 0.95rem;
    padding-top: 0.25rem;
  }
}

.location-icon {
  width: 1rem;
  height: 1rem;
  opacity: 0.7;
  color: inherit;
}

.experience-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem;
  margin-top: 1.5rem;
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-weight: 600;
  color: rgb(var(--highlight-rgb));
  text-decoration: none;
  transition: color 200ms;
}

.experience-cta:hover {
  color: hsl(var(--foreground));
}

.cta-arrow {
  display: inline-block;
  transition: transform 200ms;
}

.experience-cta:hover .cta-arrow {
  transform: translateX(2px);
}

@media (min-width: 768px) {
  .experience-cta {
    width: 100%;
    justify-content: flex-end;
  }
}

/* ============================================
   04. SKILLS SECTION
   ============================================ */

.skills-section {
  padding: 3rem 1.25rem;
  background-color: hsl(var(--background));
  border-top: 1px solid hsl(var(--border) / 0.3);
  border-bottom: 1px solid hsl(var(--border) / 0.3);
}

@media (min-width: 768px) {
  .skills-section {
    padding: 5rem 2rem;
  }
}

.skills-container {
  max-width: 1400px;
  margin: 0 auto;
}

.skills-layout {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

@media (min-width: 1024px) {
  .skills-layout {
    flex-direction: row;
    align-items: center;
    gap: 4rem;
  }
}

/* Left Column: Navigation */
.skills-navigation {
  flex-shrink: 0;
}

@media (min-width: 1024px) {
  .skills-navigation {
    width: 300px;
    padding-top: 5rem; /* Align with display content */
  }
}

.skills-tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  font-size: 0.6875rem;
  gap: 0.5rem;
  width: 100%;
}

@media (min-width: 1024px) {
  .skills-tabs {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2rem;
  }
}

.skills-tab {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 0.25rem;
  border: none;
  background: none;
  font-family: "Karla", sans-serif;
  font-size: 0.5875rem;
  letter-spacing: 0.22em;
  gap: 0.5rem;
  text-transform: uppercase;
  font-weight: 600;
  color: hsl(var(--muted-foreground));
  font-family: "Karla", sans-serif;
  cursor: pointer;
  transition: all 300ms ease;
  border-radius: 100px;
  white-space: nowrap;
}

@media (min-width: 640px) {
  .skills-tab {
    font-size: 0.95rem;
    padding: 0.85rem 0.5rem;
  }
}

@media (min-width: 1024px) {
  .skills-tab {
    justify-content: flex-start;
    font-size: 0.6875rem;
    font-weight: 700;
    padding: 0;
    border-radius: 0;
    gap: 1rem;
  }
}

.skills-tab:hover {
  color: rgb(var(--highlight-rgb) / 0.7);
}

.skills-tab.active {
  background-color: rgb(var(--highlight-rgb));
  color: white;
  font-weight: 700;
}

@media (min-width: 1024px) {
  .skills-tab.active {
    background-color: transparent;
    color: rgb(var(--highlight-rgb));
  }
}

.active-arrow {
  display: none;
}

@media (min-width: 1024px) {
  .active-arrow {
    display: block;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 300ms ease;
    font-weight: 800;
    font-size: 1.75rem;
    color: rgb(var(--highlight-rgb));
  }

  .skills-tab.active .active-arrow {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Right Column: Display */
.skills-display {
  flex: 1;
  min-width: 0;
}

.skills-display .section-title {
  text-align: center;
  margin-bottom: 2.5rem;
}

@media (min-width: 1024px) {
  .skills-display .section-title {
    text-align: left;
    margin-bottom: 3.5rem;
  }
}

.skills-content {
  position: relative;
  min-height: 400px;
}

.skills-panel {
  display: none;
  opacity: 0;
  transition: opacity 500ms ease;
}

.skills-panel.active {
  display: block;
  opacity: 1;
  animation: fadeIn 500ms ease forwards;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.skills-split-container {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .skills-split-container {
    flex-direction: row;
    align-items: center;
    gap: 3rem;
  }
}

.skills-list {
  flex: 1;
  width: 100%;
}

.skills-list ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding: 0;
  margin: 0;
}

.skills-list li {
  font-family: "Karla", sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: hsl(var(--foreground) / 0.85);
  position: relative;
  padding-left: 0;
  text-align: center;
  letter-spacing: -0.01em;
}

@media (min-width: 1024px) {
  .skills-list li {
    font-size: 1.125rem;
    text-align: left;
  }
}

.skills-image-split {
  flex: 1.5;
  width: 100%;
  border-radius: var(--radius);
  overflow: hidden;
  background-color: hsl(var(--card));
  box-shadow: var(--shadow-soft);
}

.skills-image-split img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.skills-image-full {
  width: 100%;
  border-radius: var(--radius);
  overflow: hidden;
  background-color: hsl(var(--card));
  box-shadow: var(--shadow-soft);
}

.skills-image-full img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.skills-icons-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
  gap: 2rem;
  justify-content: center;
  align-content: start;
  padding: 1rem;
  justify-items: center;
  align-items: center;
}

@media (min-width: 640px) {
  .skills-icons-grid {
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 3.5rem;
  }
}

.skills-icons-grid img {
  width: 50%;
  max-width: 70px;
  height: auto;
  object-fit: contain;
  transition: transform 300ms ease;
  filter: grayscale(0.2);
}

.skills-icons-grid img:hover {
  transform: scale(1.1);
  filter: grayscale(0);
}

/* ============================================
   05. CONTACT SECTION
   ============================================ */

.contact-section {
  padding: 3rem 1.25rem;
  background: linear-gradient(
    90deg,
    hsl(var(--background)) 0%,
    hsl(41 30% 92%) 100%
  );
}

@media (min-width: 768px) {
  .contact-section {
    padding: 5rem 2rem;
  }
}

.contact-title {
  font-family: "Karla", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: hsl(var(--foreground));
  margin-bottom: 2rem;
  letter-spacing: -0.02em;
  line-height: 1.1;
  text-align: center;
}

@media (min-width: 768px) {
  .contact-title {
    font-size: 2.75rem;
    margin-bottom: 3.5rem;
    text-align: left;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
  }
}

.contact-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .contact-container {
    gap: 2rem;
  }
}

.contact-item {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: center;
  text-align: center;
  border-top: 1px solid hsl(var(--border) / 0.3);
  padding: 2.5rem 1rem;
}

.contact-item:last-child {
  border-bottom: 1px solid hsl(var(--border) / 0.3);
}

@media (min-width: 768px) {
  .contact-item {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 2rem 0;
    gap: 2rem;
    text-align: left;
    border-bottom: none;
  }

  .contact-item:last-child {
    border-bottom: none;
  }
}

.contact-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

@media (min-width: 768px) {
  .contact-info {
    flex-direction: row;
  }
}

.contact-icon {
  width: 1.5rem;
  height: 1.5rem;
  object-fit: contain;
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .contact-icon {
    width: 1.8rem;
    height: 1.8rem;
  }
}

.contact-info span {
  font-family: "Karla", sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: hsl(var(--foreground) / 0.85);
  text-align: center;
}

@media (min-width: 768px) {
  .contact-info span {
    font-size: 1rem;
  }
}

.contact-button {
  margin-top: 1.5rem;
  align-self: center;
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: hsl(var(--muted-foreground));
  border: 1px solid hsl(var(--border));
  border-radius: 9999px;
  background-color: transparent;
  padding: 0.625rem 1.25rem;
  cursor: pointer;
  transition: all 300ms ease;
  font-family: inherit;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  gap: 0.5rem;
}

.contact-button:hover {
  background-color: hsl(var(--card) / 0.3);
  color: rgb(var(--highlight-rgb));
  border-color: rgb(var(--highlight-rgb) / 0.3);
}

@media (min-width: 768px) {
  .contact-button {
    padding: 0.85rem 2.5rem;
    font-size: 0.6875rem;
    align-self: flex-start;
  }
}

.contact-button:hover {
  background-color: hsl(var(--accent));
}

/* ============================================
 FOOTER
 ============================================ */

.footer {
  background-color: hsl(var(--background));
  border-top: 1px solid hsl(var(--border));
  margin-top: auto;
}

.footer-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

@media (min-width: 640px) {
  .footer-container {
    padding: 1.25rem 2rem;
    flex-direction: row;
  }
}

.footer-label {
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-weight: 600;
  color: hsl(var(--muted-foreground));
}

.footer-links {
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-weight: 600;
}

.footer-link {
  color: hsl(var(--muted-foreground));
  text-decoration: none;
  transition: color 200ms;
}

.footer-link:hover {
  color: hsl(var(--foreground));
}

.footer-separator {
  margin: 0 0.5rem;
  color: hsl(var(--muted-foreground));
}
