/*
Theme Name: KiwiPlate
Theme URI:
Author: Alsacréations
Author URI: https://www.alsacreations.fr/
Description: Starter thème par Alsacréations
Version: 2.0.0
*/

body {
    background: #eee;
    background: url(/themes/KiwiPlate/assets/citiz-logo.png) no-repeat;
    background-position: 95% 5%;
    background-size: 100px;
    padding: 3rem;
    min-height: 100vh;
}

/* - */

summary {
    cursor: pointer;
    font-weight: bold;
    color: #444;
}

summary::marker {
    color: #51c1b6;
}

details {
    margin: 1rem 0;
    padding: 0.5rem 0;
    border-bottom: 1px solid #eee;
}

details p {
    line-height: 1.5;
}

details[open] summary ~ * {
    animation: sweep .25s ease-in-out;
}
  
@keyframes sweep {
    0%    {opacity: 0; margin-left: -10px}
    100%  {opacity: 1; margin-left: 0px}
}

.faq-pages h3 {
    margin-top: 3rem;
}

.page- article {
    margin-top: 4rem;
}

/* - */

a {
    color: dodgerblue;
}

.nav-list {
    display: flex;
    gap: 3rem;
    list-style: none;
    background-color: #eee;
    padding: 1rem;
    border-radius: 0.5rem;
}

.breadcrumb-items {
    list-style: none;
    display: flex;
    gap: 1rem;
    border-bottom: 1px solid #ddd;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    padding-left: 1.5rem;
}

.breadcrumb-items .breadcrumb-item:not(:last-child)::after {
    content: '❯';
    color: #ccc;
    margin-left: 1rem;
}

footer {
    margin-top: 4rem;
    color: #ccc;
}