* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Palanquin', sans-serif;
}


body {
  height: 100%;
  overflow-y: auto;
  flex: 1;
  display: flex;
  flex-direction: column;
}

html {
  height: 100%;
  overflow-y: auto;
}

header {
    background-color: #e76c1f;
    width: 100%;
}

footer {
    background-color: #e76c1f;
    width: 100%;
    box-shadow: 0 -4px 8px 0 #00000040;
    border-top-left-radius: 25%;
    border-top-right-radius: 25%;
}
.pizza,.burger,.salad{
    display: flex;
    justify-content: center;
    background: black;
    align-items: center;
    width: 1920px;
}
.header_container {
    height: 128px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding-inline: 10px;
    padding-right: 52px;
    padding-left: 32px;
}

.footer_container {
    height: 128px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding-inline: 10px;
}

.footer_links {
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-link-button {
    border: none;
    background: transparent;
    color: beige;
    font-size: 22px;
    font-family: 'Palanquin', sans-serif;
    padding: 6px 12px;
    cursor: pointer;
}

.footer-link-button:hover {
    text-decoration: underline;
}

.cookie-banner {
    position: fixed;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    width: min(960px, calc(100% - 24px));
    background-color: #272727;
    color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 10px 25px #00000066;
    padding: 14px 18px;
    display: none;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    z-index: 2500;
}

.cookie-banner p {
    color: #ffffff;
    text-align: left;
    font-size: 16px;
    line-height: 1.4;
}

.cookie-banner-actions {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.cookie-btn {
    border: none;
    border-radius: 8px;
    padding: 10px 12px;
    font-size: 15px;
    font-family: 'Palanquin', sans-serif;
    cursor: pointer;
}

.cookie-btn-primary {
    background-color: #067d35;
    color: #ffffff;
}

.cookie-btn-primary:hover {
    background-color: #045d28;
}

.cookie-btn-secondary {
    background-color: #444444;
    color: #ffffff;
}

.cookie-btn-secondary:hover {
    background-color: #5a5a5a;
}

.legal-dialog {
    border: none;
    border-radius: 12px;
    width: min(560px, calc(100% - 28px));
    padding: 0;
    box-shadow: 0 12px 30px #00000066;
    max-height: calc(100vh - 24px);
    margin: auto;
}

.legal-dialog::backdrop {
    background-color: #00000080;
}

.legal-dialog-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #e76c1f;
    padding: 12px 16px;
}

.legal-dialog-header h3 {
    color: #ffffff;
}

.legal-close {
    border: none;
    background: transparent;
    color: #ffffff;
    font-size: 24px;
    cursor: pointer;
}

.legal-dialog-content {
    padding: 18px;
    overflow: auto;
}

.legal-dialog-content p {
    text-align: left;
    font-size: 18px;
    margin-bottom: 12px;
}

.cookie-option {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 18px;
    margin-bottom: 10px;
}

.cookie-dialog-actions {
    display: flex;
    justify-content: flex-end;
    margin-top: 12px;
}

p {
    font-size: 20px;
    line-height: 24px;
    color: #000000;
    text-align: center;
    font-family: 'Palanquin', sans-serif;
}

a {
    font-size: 24px;
    text-decoration: none;
    color: beige;
    font-family: 'Palanquin', sans-serif;
    padding-right: 32px;
    padding-left: 32px;
}

b {
    font-weight: bold;
    font-size: 24px;
    color: #e76c1f;
    text-shadow: #c7c7c7 1px 1px 2px;
    width: 42px;
}

.BurgerHausplusRezension b {
    font-size: 28px;
    width: 100%;
    text-align: center;
}

h1 {
    font-size: 64px;
    margin-bottom: 16px;
    color: #000000;
    font-weight: bold;
    background: linear-gradient(to right, #e76c1f 58%, rgb(0, 0, 0) 50%);
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center;
    font-family: 'Palanquin', sans-serif;
}

h2 {
    color: #ffffff;
    text-align: center;
    font-family: Palanquin;
    font-weight: 700;
    font-size: 54px;
    line-height: 120%;
}

h3 {
    font-size: 24px;
    color: #e76c1f; 
    font-weight: bold;
    font-family: 'Palanquin', sans-serif;
}