:root {
    --basefontsize: 16px;
    --boxmodel: border-box;
    --color-body-text: #8b5102;
    --color-body: #e9d6bc;
    --color-border: #8b5102;
    --color-button-background: #8b5102;
    --color-button-font: #fff;
    --border-radius: 0.25rem;
    --font-family-headline: "Lalezar", system-ui;
    --font-family-default: "Roboto", sans-serif;
}

html {
    box-sizing: var(--borderbox);
    font-size: var(--basefontsize);
}
  
*, *:before, *:after {
    box-sizing: inherit;
}
  
body, h1, h2, h3, h4, h5, h6, p, ol, ul {
    margin: 0;
    padding: 0;
    font-weight: normal;
    color: var(--color-body-text);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-family-headline);
    font-weight: 400;
    font-style: normal;
    line-height: 1.3;
}
  
ol, ul {
    list-style: none;
}

p, ol, ul {
    font-family: var(--font-family-default);
    font-weight: 400;
    font-style: normal;
}

p {
    margin-bottom: 0.5rem;
    line-height: 1.5;
}
  
img {
    max-width: 100%;
    height: auto;
}

.backdrop {
    height: 100vh;
    width: 100vw;
    position: fixed;
    z-index: -1;
}

.backdrop__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.stage {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    margin: 0 auto;
    padding: clamp(1rem, 1vw + 0.8rem, 2rem);
    column-gap: clamp(1rem, 1vw + 0.8rem, 2rem);
    max-width: 80rem;   
}

.section {
    display: grid;
    grid-column: 1 / span 8;
    grid-template-columns: subgrid;
    margin: clamp(1.5rem, 1vw + 1.3rem, 2.5rem) 0;
    row-gap: 1.5rem;
    align-items: start;
}

.title {
    grid-column: 1 / span 8;
    text-align: center;
    font-size: clamp(2rem, 1vw + 1.8rem, 3rem);
}

.box {
    border: 1px solid var(--color-border);
    padding: 1rem;
    overflow: hidden;
    background: var(--color-body);
    border-radius: var(--border-radius);
}

.box--first {
    grid-column: 1 / span 8;
}

.box--second {
    grid-column: 1 / span 8;
}

.box--third,
.imageBox {
    grid-column: 1 / span 8;
}

.price__price {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
}

.price__info {
    display: block;
    font-size: 0.75rem;
    margin-bottom: clamp(1.5rem, 1vw + 1.3rem, 2.5rem);
}

a, a:hover {
    color: var(--color-body-text);
    text-decoration: underline;
}

.button {
    width: 50%;
    display: inline-block;
    padding: 0.75rem 1rem 0.5rem;
    color: var(--color-button-font);
    background-color: var(--color-button-background);
    font-family: var(--font-family-headline);
    font-size: 1.2941rem;
    font-weight: 400;
    font-style: normal;
    text-transform: uppercase;
    text-decoration: none;
    text-align: center;
    vertical-align: middle;
    white-space: nowrap;
    cursor: pointer;
    border-radius: var(--border-radius);
    transition: all 0.3s ease;
}

.button:hover {
    color: var(--color-button-background);
    background-color:  var(--color-button-font);
}



@media (min-width: 500px) {
    .box--first {
        grid-column: 1 / span 4;
    }

    .box--third,
    .imageBox {
    grid-column: 1 / span 5;
}
}

@media (min-width: 800px) {
    .box--first {
        grid-column: 1 / span 3;
    }

    .box--second {
        grid-column: 4 / span 4;
    }

    .box--third,
    .imageBox {
    grid-column: 1 / span 3;
}
}

@media (min-width: 1100px) {
    .box--first {
        grid-column: 1 / span 2;

    }
}
