/*

eKamria custom edits

********************************************************************/

 :root {
            /* Core Brand Colors - from logo */
            --primary-teal: #5dcad1;
            --deep-teal: #3a9d93;
            --accent-yellow: #F3CD74;
            --warm-gold: #E8B43A;
            --light-cream: #FFF9E6;
            --warm-beige: #F5F0E8;
            --charcoal: #2b3d4f;
            --dark-navy: #1d3552;
            --white: #ffffff;
            
            /* Clean Design Variables */
            --text-primary: #1a1a1a;
            --text-secondary: #4a4a4a;
            --border-light: #e5e5e5;
            --border-medium: #cccccc;
            --shadow-crisp: 0 2px 8px rgba(0, 0, 0, 0.08);
            --shadow-hover: 0 4px 16px rgba(0, 0, 0, 0.12);
        }

        body {
            font-family: 'Work Sans', sans-serif;
            color: var(--text-primary);
            line-height: 1.6;
            background: var(--white);
            overflow-x: hidden;
        }

        /* Bold Typography System */
        h1, h2, h3 {
            font-family: 'Oswald', sans-serif;
            font-weight: 700;
            letter-spacing: -0.02em;
            line-height: 1.1;
            margin-top: 2.5rem;
            margin-bottom: 1.5rem;
            color: var(--dark-navy);
        }

        h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); }
        h2 { font-size: clamp(2rem, 4vw, 3rem); }
        h3 { font-size: clamp(1.5rem, 3vw, 2rem); }



/*   Accordian
===================================================================*/
summary {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  background-color: var(--primary);
  color: var(--white);
  padding: .75rem 1rem;
  border-radius: .375rem;
}

summary span {
  flex: 1;
  text-align: left;
}

details {
  margin-bottom: 0.5rem;
}

details[open] summary {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

summary::after {
  content: "+";
  font-weight: bold;
}

details[open] summary::after {
  content: "–";
}

summary::-webkit-details-marker {
  display: none;
}

summary {
  list-style: none;
}

