@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/7.0.1/css/all.min.css');

:root {
  /* Палітра Warm & Trust: #34495E (Dark Blue-Gray), #E67E22 (Orange), #F1C40F (Yellow), #ECF0F1 (Light Gray) */
  --primary-color: #34495E;
  --secondary-color: #E67E22;
  --accent-color: #F1C40F;
  --light-color: #ECF0F1;
  --dark-color: #2C3E50;
  --gradient-primary: linear-gradient(135deg, #34495E 0%, #2C3E50 100%);
  --background-color: #FAFAFA;
  --text-color: #333333;
  --border-color: rgba(52, 73, 94, 0.15);
  --shadow-color: rgba(52, 73, 94, 0.1);
  --highlight-color: #F1C40F;
  --main-font: 'Lora', serif;
  --alt-font: 'Work Sans', sans-serif;
}

html {
    scroll-behavior: smooth;
}

.hover-color:hover {
    color: var(--highlight-color) !important;
    transition: color 0.3s ease;
}

/* Neumorphism Light classes */
.neumo {
    background: #FFFFFF;
    box-shadow: 6px 6px 12px var(--shadow-color), -6px -6px 12px #ffffff;
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.neumo:hover {
    transform: translateY(-3px);
    box-shadow: 10px 10px 20px var(--shadow-color), -10px -10px 20px #ffffff;
}

/* Menu Toggle Hack for no-JS */
#menu-check:checked ~ nav {
    display: flex !important;
    position: absolute;
    top: 74px; /* match header height */
    left: 0;
    width: 100%;
    background-color: var(--primary-color);
    flex-direction: column;
    text-align: center;
    padding-bottom: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

#menu-check:checked ~ nav ul {
    width: 100%;
}

#menu-check:checked ~ nav li {
    margin: 10px 0 !important;
}

/* FAQ Details Animation */
details summary::-webkit-details-marker {
  display: none;
}

details summary {
    list-style: none;
}

details[open] summary ~ * {
  animation: slideDown .4s ease-in-out;
}

@keyframes slideDown {
  0%    {opacity: 0; transform: translateY(-10px);}
  100%  {opacity: 1; transform: translateY(0);}
}