@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/7.0.1/css/all.min.css');

:root {
  --primary-color: #5E1675;
  --secondary-color: #3B0E4A;
  --accent-color: #FFEB00;
  --light-color: #F8F9FA;
  --dark-color: #0A0A14;
  --background-color: #0F1021;
  --gradient-primary: linear-gradient(135deg, #5E1675 0%, #1ABC9C 100%);
  --hover-color: #7A1D98;
  --text-color: #A0A5B5;
  --border-color: rgba(94, 22, 117, 0.3);
  --divider-color: rgba(255, 235, 0, 0.1);
  --shadow-color: rgba(0, 0, 0, 0.6);
  --highlight-color: #1ABC9C;
  --main-font: 'Playfair Display', serif;
  --alt-font: 'Poppins', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

details > summary {
    list-style: none;
}
details > summary::-webkit-details-marker {
    display: none;
}
details > summary::after {
    content: '\f067'; /* FontAwesome plus */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    float: right;
    color: var(--primary-color);
}
details[open] > summary::after {
    content: '\f068'; /* FontAwesome minus */
}