/**
 * Theme Name: mrt
 * Author: xmoex
 * Description: Minimal block-based WordPress theme
 * Version: 0.1
 * Requires at least: 6.1
 * Text Domain: mrt
 */

:root {
    --bg-dark: #714B4B;
    --txt-light: #f3ede5
}

html, body {
    height: 100%;
    margin: 0 !important;

    font-family: "Poppins", sans-serif;
    font-style: normal;
    font-weight: 400;
    letter-spacing: -.02em;
    line-height: 1.2em;
}

h1, h2, h3, h4, h5, h6 {
    font-family: "Manrope", sans-serif;
    font-style: normal;
    font-weight: 500;
    letter-spacing: 0;
    line-height: 1.5em;
}

dt, dd {
    margin-bottom: 16px;
}


.wp-site-blocks {
    min-height: 100%;
    display: flex;
    flex-direction: column;
}

main {
    flex: 1; /* takes up all remaining space */
}

footer {
    background: var(--bg-dark);
    color: var(--txt-light);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding: 1rem 2rem;
}

/* Left side takes up all available space */
.footer-left {
    flex: 1;
}

/* Right side stays compact and aligned right */
.footer-right {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    flex-shrink: 0;
}
