@font-face {
  font-family: "URWGothic";
  src: url("../fonts/URWGothic-Book.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "Lora";
  src: url("../fonts/Lora-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}

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

h1, h2, h3, h4, h5, h6 {
    font-family: "URWGothic", sans-serif;
}


body {
    color: #231f20;
    background-color: #a40404;
    font-family: "Roboto", sans-serif;
    line-height: 1.25;
}

.site-grid {
    display: grid;
    min-height: 100vh;
    grid-template-columns: 200px minmax(0, 1fr);
    grid-template-rows: 200px minmax(0, 1fr);
}

.site-grid-tile {
    min-width: 0;
    min-height: 0;
    box-sizing: border-box;
}

.site-grid-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #a40404;
    width: 200px;
    height: 200px;
}

.site-banner-image {
    width: 225px;
    height: 225px;
    display: block;
    margin: 0;
    overflow: visible;
    position: relative;
    z-index: 10;
    top: 20px;
    left: 20px;
}

.site-grid-top-right {
    background-color: #a40404;
    min-height: 200px;
    padding: 2em 2em 2em 4em;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 1rem;
}

.column_1 {
    flex: 1 1 auto;
    min-width: 0;
}

.column_2 {
    flex: 0 0 auto;
}

.site-grid-tile.site-grid-top-right h1 {
    font-size: 3em;
    line-height: 1;
    text-shadow:
        0 0 4px rgba(223, 156, 62, 0.9),
        0 0 10px rgba(223, 156, 62, 0.6),
        0 0 18px rgba(223, 156, 62, 0.3);
}
.site-grid-tile.site-grid-top-right h4 {
    font-size: 1.5em;
    line-height: 1;
    text-shadow:
        0 0 4px rgba(223, 156, 62, 0.9),
        0 0 10px rgba(223, 156, 62, 0.6),
        0 0 18px rgba(223, 156, 62, 0.3);
}

.site-grid-left-column {
    background-color: #a40404;
    max-width: 200px;
}

.site-grid-main {
    background-color: #E8C6BF;
    padding: 4em;
    border-top-left-radius: 24px;
    border-bottom-left-radius: 24px;
}

.menu {
    font-family: "Lora", serif;
    margin: 3em 1em 8px 1em;
    padding: 1em;
}

.menu a {
    text-shadow: #c1c1c1 4px 4px 8px;
}

.menu ul {
    list-style-type: none;
    padding: 8px;
    margin: 8px;
    background-color: white;
    border-radius: 12px;
}

.menu li {
    margin: 8px;
}

.user-menu,
.user-menu a
{
    font-family: "Lora", serif;
    color: #fff;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.6);
}

footer {
    padding: 1em;
    text-align: center;
}

button,
input[type="submit"],
input[type="button"] {
    font-family: "URWGothic", sans-serif;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: #fff;
    background: linear-gradient(135deg, #a40404, #c55218);
    border: 1px solid rgba(223, 156, 62, 0.75);
    border-radius: 999px;
    padding: 0.75em 1.6em;
    cursor: pointer;
    box-shadow:
        0 4px 10px rgba(35, 31, 32, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.25);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
    transition:
        transform 0.15s ease,
        box-shadow 0.15s ease,
        background 0.15s ease;
}

button:hover,
input[type="submit"]:hover,
input[type="button"]:hover {
    background: linear-gradient(135deg, #bf0808, #df9c3e);
    transform: translateY(-1px);
    box-shadow:
        0 6px 14px rgba(35, 31, 32, 0.3),
        0 0 12px rgba(223, 156, 62, 0.45),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

button:active,
input[type="submit"]:active,
input[type="button"]:active {
    transform: translateY(1px);
    box-shadow:
        0 2px 6px rgba(35, 31, 32, 0.25),
        inset 0 2px 4px rgba(0, 0, 0, 0.2);
}

button:focus-visible,
input[type="submit"]:focus-visible,
input[type="button"]:focus-visible {
    outline: 3px solid rgba(223, 156, 62, 0.65);
    outline-offset: 3px;
}

button:disabled,
input[type="submit"]:disabled,
input[type="button"]:disabled {
    opacity: 0.55;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

input[type="text"],
input[type="email"],
input[type="password"],
input[type="search"],
input[type="url"],
input[type="tel"],
input[type="number"],
textarea,
select {
    width: 100%;
    max-width: 420px;
    box-sizing: border-box;
    font-family: "Lora", serif;
    font-size: 1rem;
    color: #231f20;
    background-color: #fff8f4;
    border: 1px solid rgba(164, 4, 4, 0.35);
    border-radius: 14px;
    padding: 0.85em 1em;
    box-shadow:
        0 3px 8px rgba(35, 31, 32, 0.12),
        inset 0 1px 2px rgba(35, 31, 32, 0.08);
    transition:
        border-color 0.15s ease,
        box-shadow 0.15s ease,
        background-color 0.15s ease;
}

input[type="text"]::placeholder,
input[type="email"]::placeholder,
input[type="password"]::placeholder,
input[type="search"]::placeholder,
input[type="url"]::placeholder,
input[type="tel"]::placeholder,
input[type="number"]::placeholder,
textarea::placeholder {
    color: rgba(35, 31, 32, 0.55);
}

input[type="text"]:hover,
input[type="email"]:hover,
input[type="password"]:hover,
input[type="search"]:hover,
input[type="url"]:hover,
input[type="tel"]:hover,
input[type="number"]:hover,
textarea:hover,
select:hover {
    border-color: rgba(164, 4, 4, 0.6);
    background-color: #fffdfb;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
input[type="url"]:focus,
input[type="tel"]:focus,
input[type="number"]:focus,
textarea:focus,
select:focus {
    outline: none;
    border-color: #df9c3e;
    background-color: #fff;
    box-shadow:
        0 0 0 3px rgba(223, 156, 62, 0.28),
        0 4px 12px rgba(35, 31, 32, 0.16),
        inset 0 1px 2px rgba(35, 31, 32, 0.08);
}

input[type="text"]:disabled,
input[type="email"]:disabled,
input[type="password"]:disabled,
input[type="search"]:disabled,
input[type="url"]:disabled,
input[type="tel"]:disabled,
input[type="number"]:disabled,
textarea:disabled,
select:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    background-color: #eee;
}

textarea {
    min-height: 8rem;
    resize: vertical;
}

.account-menu {
    max-width: 420px;
    margin: 0 0 2rem;
    padding: 1.25rem;
    font-family: "Lora", serif;
    color: #231f20;
    background: linear-gradient(145deg, #fff8f4, #f4d6cc);
    border: 1px solid rgba(164, 4, 4, 0.18);
    border-radius: 20px;
    box-shadow:
        0 10px 24px rgba(35, 31, 32, 0.16),
        inset 0 1px 0 rgba(255, 255, 255, 0.65);
}

.account-menu strong {
    display: block;
    margin-bottom: 0.9rem;
    font-family: "URWGothic", sans-serif;
    font-size: 1.15rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #a40404;
}

.account-menu ul {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.account-menu li {
    margin: 0;
}

.account-menu a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 2.5rem;
    padding: 0.65rem 1.15rem;
    color: #fff;
    background: linear-gradient(135deg, #a40404, #c55218);
    border: 1px solid rgba(223, 156, 62, 0.75);
    border-radius: 999px;
    font-family: "URWGothic", sans-serif;
    font-weight: 600;
    letter-spacing: 0.03em;
    text-decoration: none;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
    box-shadow:
        0 4px 10px rgba(35, 31, 32, 0.22),
        inset 0 1px 0 rgba(255, 255, 255, 0.25);
    transition:
        transform 0.15s ease,
        box-shadow 0.15s ease,
        background 0.15s ease;
}

.account-menu a:hover {
    background: linear-gradient(135deg, #bf0808, #df9c3e);
    transform: translateY(-1px);
    box-shadow:
        0 6px 14px rgba(35, 31, 32, 0.28),
        0 0 12px rgba(223, 156, 62, 0.42),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.account-menu a:active {
    transform: translateY(1px);
    box-shadow:
        0 2px 6px rgba(35, 31, 32, 0.22),
        inset 0 2px 4px rgba(0, 0, 0, 0.18);
}

.account-menu a:focus-visible {
    outline: 3px solid rgba(223, 156, 62, 0.65);
    outline-offset: 3px;
}