@font-face {
    font-family: 'Shakespeare First Folio';
    src: url('../fonts/ShakespeareFirstFolio.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    overflow-x: hidden;
    font-family: 'Shakespeare First Folio', serif;
    line-height: 1.8;
    background-color: #fdf6e3;
    color: #3b2f2f;
    font-size: 1.1rem;
}

.grid {
    display: grid;
    gap: 1rem;
}

.item1 {
    max-width: 100vw;
    margin-left: 0;
    overflow-x: hidden;
    grid-area: item1;
}

.item2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.item3 {
    margin: 5px;
}

.item3 img {
    width: 100%;
    object-fit: cover;
    border-radius: 6px;
    border: 1px solid #ccc;
}

.item4 {
    padding: 15px;
    background-color: #be9c6c;
}

.item4 p {
    margin-bottom: 1rem;
}

.item5 {
    margin: 5px;
    text-align: center;
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 6px;
    border: 1px solid #ccc;
}

.item5 iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.item6 {
    background-color: #d7c3a7;
}

.item6 ul {
    padding-left: 1.5rem;
    list-style-type: disc;
}

.item6 li {
    margin-bottom: 0.25rem;
    line-height: 2.5;
}

.item7 {
    text-align: center;
    padding: 10px;
    background-color: #3b2f2f;
}

.item7 p {
    color: #a08760;
}

.banner {
    display: flex;
    width: 100%;
    background-color: #a08760;
    padding: 0.5rem;
    gap: 0.7rem;
    justify-content: center;
    flex-wrap: nowrap;
}

.banner img {
    width: 250px;
    height: 250px;
    object-fit: cover;
    border: 1px solid #8b6f47;
    border-radius: 3px;
    flex-shrink: 0;
}

@media (min-width: 768px) {
    .grid {
        grid-template-areas:
            "item1 item1"
            "item2 item2"
            "item3 item4"
            "item5 item6"
            "item7 item7";
        grid-template-columns: 1fr 2fr;
        align-items: stretch;
    }

    .item2 {
        grid-area: item2;
    }

    .item3 {
        grid-area: item3;
        display: flex;
        flex-direction: column;
        gap: 1rem;
        height: 100%;
    }

    .item3 img {
        flex: 1;
    }

    .item4 {
        grid-area: item4;
    }

    .item5 {
        grid-area: item5;
    }

    .item6 {
        grid-area: item6;
    }

    .item7 {
        grid-area: item7;
    }
}

@media screen and (max-width: 767px) {
    .grid {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        grid-template-columns: 1fr;
    }

    .banner {
        flex-wrap: nowrap;
    }

    .banner img {
        width: 25%;
    }

    .item1 {
        order: 1;
    }

    .item2 {
        order: 2;
    }

    .item3 {
        order: 3;
        width: 90%;
        margin: 0 auto;
    }

    .item5 {
        order: 4;
    }

    .item4 {
        order: 5;
    }

    .item6 {
        order: 6;
    }

    .item7 {
        order: 7;
    }
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Shakespeare First Folio', serif;
    color: #5a3e1b;
    text-shadow: 1px 1px 0 #e3d9b0;
    margin-bottom: 0.5rem;
}

p,
li,
span,
a,
div {
    font-family: 'Shakespeare First Folio', serif;
    color: #3b2f2f;
}

a {
    color: #8b6f47;
    text-decoration: underline;
    transition: color 0.3s ease;
}

a:hover,
a:focus {
    color: #5a3e1b;
}

blockquote {
    border-left: 4px solid #8b6f47;
    margin-left: 0;
    margin-right: 0;
    padding-left: 1rem;
    font-style: italic;
    color: #6f5a3e;
    background-color: #f9f5e3;
    border-radius: 3px;
}