* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--cream);
    color: var(--text);
    font-family: Georgia, "Times New Roman", serif;
}

/* ===========================
   Schriftarten
=========================== */

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

:root {
    --heading-font: "Berkshire Swash", Georgia, serif;
}

/* ===========================
   Überschriften
=========================== */

h1,
h2,
h3,
.subpage-hero h1,
.history-page-hero h1,
.opening-page-hero h1,
.contact-hero h1,
.legal-hero h1,
.hero-content h1 {
    font-family: var(--heading-font) !important;
    font-weight: 400;
    letter-spacing: 0;
    line-height: 1.15;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    width: min(1280px, 92%);
    margin: auto;
}

main {
    background: var(--cream);
}

.section-kicker {
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 18px;
    text-align: center;
}

.btn {
    display: inline-block;
    padding: 18px 34px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 18px;
    font-weight: 700;
    transition: .3s;
}

.btn-primary {
    border: 2px solid var(--primary);
    color: var(--primary);
}

.btn-primary:hover {
    background: var(--accent);
    color: var(--white);
}

.btn-secondary,
.btn-outline-dark {
    border: 2px solid var(--primary);
    color: var(--primary);
}

.btn-secondary:hover,
.btn-outline-dark:hover {
    background: var(--primary);
    color: var(--white);
}
