:root {
    --du-primary: #7b1e2b; /* wine */
    --du-accent: #d4a017; /* warm gold */
    --du-cream: #fff7ef;
}

* {
    box-sizing: border-box
}

body {
    font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    background: radial-gradient(1200px 600px at -10% -10%, rgba(212,160,23,.15), transparent 60%), radial-gradient(1200px 600px at 110% 10%, rgba(123,30,43,.10), transparent 60%), var(--du-cream);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, .navbar-brand {
    font-family: "Playfair Display", Georgia, serif;
    letter-spacing: .2px;
}

.navbar {
    background: linear-gradient(90deg, var(--du-primary), #51151e);
}

.btn-primary {
    background-color: var(--du-primary);
    border-color: var(--du-primary);
}

.btn-success {
    background-color: var(--du-accent);
    border-color: var(--du-accent);
    color: #2b1b00;
}

.card-hover {
    transition: transform .16s ease, box-shadow .16s ease;
}

    .card-hover:hover {
        transform: translateY(-2px) scale(1.01);
        box-shadow: 0 .75rem 1.5rem rgba(0,0,0,.15);
    }

.fade-in-up {
    animation: fadeInUp .35s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.list-group-item {
    border: 0;
    background: #fff;
}

.badge.bg-secondary {
    background-color: #6c757d !important;
}

.copyright {
    text-align: center;
}

.copyright {
    color: #333; /* Adjust text color */
}

    .copyright a {
        color: #007bff; /* Link color */
        text-decoration: none; /* No underline */
        font-weight: bold;
        font-size: 1rem;
    }

        .copyright a:hover {
            text-decoration: none; /* Underline on hover */
            color: #0056b3; /* Darker hover color */
        }

#heart {
    width: 1rem; /* Adjust size */
    height: 1rem;
    margin: 0 5px; /* Add spacing around the heart */
    animation: beat 0.5s infinite alternate;
    transform-origin: center;
}

@keyframes beat {
    to {
        transform: scale(1.2);
    }
}

.asianFont {
    font-family: 'Moorish Nonary', sans-serif;
    font-size: 1rem;
}

html, body {
    height: 100%;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main {
    flex: 1; /* pushes footer down */
}

.copyright {
    text-align: center;
    padding: 1rem 0;
    color: #333;
    background: transparent;
}

.accordion-button {
    background: #fff;
}

    .accordion-button:not(.collapsed) {
        color: #2b1b00;
        background: #fff7ef;
    }

.accordion-item {
    border-radius: .5rem;
    overflow: hidden;
}

.page-logs {
    background: #fdf5ef;
}

    .page-logs .card {
        border-radius: 0.75rem;
    }

    .page-logs .add-log-entry textarea {
        resize: vertical;
    }

.accordion-button {
    font-weight: 600;
    color: #222;
}

.accordion-body ul li:last-child {
    border-bottom: none;
}
