@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css');

:root {
  /* Colors based on list: #16A085, #27AE60, #2C3E50, #BDC3C7 */
  --primary-color: #16A085;
  --secondary-color: #2C3E50;
  --accent-color: #27AE60;
  --light-color: #F8FAFC;
  --dark-color: #1E293B;
  --gradient-primary: linear-gradient(135deg, #16A085 0%, #2C3E50 100%);
  --hover-color: #1ABC9C;
  --background-color: #0F172A;
  --text-color: #E2E8F0;
  --border-color: rgba(22, 160, 133, 0.3);
  --divider-color: rgba(189, 195, 199, 0.1);
  --shadow-color: rgba(0, 0, 0, 0.5);
  --highlight-color: #E74C3C; /* Complementary */
  
  /* Fonts: Lora and Open Sans */
  --main-font: 'Lora', serif;
  --alt-font: 'Open Sans', sans-serif;
}

html {
    scroll-behavior: smooth;
}

/* No JS Menu */
#menu-toggle:checked ~ nav {
    display: flex !important;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: var(--dark-color);
    padding: 2rem;
    z-index: 50;
    border-bottom: 2px solid var(--primary-color);
}

#menu-toggle:checked ~ nav ul {
    flex-direction: column;
    align-items: center;
}

/* FAQ Details animation */
details > summary {
    list-style: none;
    outline: none;
}
details > summary::-webkit-details-marker {
    display: none;
}
details[open] summary ~ * {
    animation: fadein .4s ease-in-out;
}
@keyframes fadein {
    0%    {opacity: 0;}
    100%  {opacity: 1;}
}