/*******************************************************
*
Theme Name:
Theme URI:
Description:
Version:       1.0
Author:        André Schünemann
License:       none (public domain)
Tags:          Base
*
*******************************************************/

/*
 * General styles
 */

html,
body {
    min-height: 100%;
    margin: 0;
}

#navbar {
    position: sticky;
    top: 0;
    z-index: 300;
}

header {
    grid-area: header;
}

main {
    grid-area: main;
}

footer {
    grid-area: footer;
}

/* Lists */
ul {
    padding-inline-start: 0;
}


body {
    background-color: #F9F9F7;
    color: #1f2937;
    font-family: 'Inter', sans-serif;
}

h1,
h2,
h3 {
    font-family: 'Inter', serif;
    color: #4A5D45;
}

/* Custom Components */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 4px;
    /* Styleguide */
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-primary {
    background-color: #A63A35;
    color: #ffffff;
    border: 1px solid transparent;
}

.btn-primary:hover {
    background-color: #8c2f2b;
    transform: translateY(-2px);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

/* Zick-Zack Trenner */
.divider-zigzag {
    height: 20px;
    width: 100%;
    background:
        linear-gradient(-45deg, #4A5D45 10px, transparent 0),
        linear-gradient(45deg, #4A5D45 10px, transparent 0);
    background-size: 20px 20px;
}

/* Utility für Focus (Barrierefreiheit) */
input:focus {
    outline: 2px dashed #A63A35;
    outline-offset: 2px;
    border-color: #A63A35;
}