/** Home Hero Section */
.home-hero {
    background-image: url("/images/sbeer/bar 1.jpg");
    background-size: cover;
    background-position: top center;
    height: 400px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
}
.home-hero h1 {
    font-size: 55px;
    font-weight: 600;
    color: white;
    width: 90%;
    margin: auto;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}
/** Home Beers Section */
.home-beers-container h2 {
    text-align: center;
    font-size: 2rem;
    margin-block: 2rem 3rem;
}
.home-beers-container h2 span {
    font-size: 2rem;
}
.home-beers-container {
    overflow: hidden;
    /* white-space: nowrap; */
    position: relative;
    width: 100%;
    margin: auto;
    color: #000000;
    padding: 10px 0;
    background: linear-gradient(90deg, #f7e3b0 0%, #f9f1e6 50%, #f7e3b0 100%);
    color: #222;
}
.home-beers-container .home-beers {
    display: flex;
    gap: 6rem;
    margin-bottom: 3rem;
}
.home-beers-container .beer-item {
    font-size: 1.6rem;
    font-weight: bold;
    white-space: nowrap;
    display: flex;
}
.home-beers-container .beer-item:last-child span:last-child {
    margin-right: 8rem;
}
.home-beers-container .beer-item img {
    height: 2rem;
    width: auto;
    margin-right: 1rem;
}
.home-beers-container .beer-item p {
    margin-bottom: 0;
}
/** Home Introduction Section */
.home-introduction-container {
    margin: 5rem 1.6rem 2rem 1.6rem;
}
.home-introduction-container .home-introduction figure {
    margin: 4rem 0;
    text-align: center;
}
.home-introduction-container .home-introduction figure img {
    border-radius: 10px;
    width: 80%;
    max-width: 400px;
}

.home-introduction-container .home-introduction ul {
    padding-inline-start: 1.5rem;
    margin-block: 1.5rem 1rem;
}
.home-introduction-container .home-introduction ul li {
    margin-bottom: 1.5rem;
}
/* Extra small devices (phones, 768px and up)
@media only screen and (min-width: 768px) {
}

/* Small devices (tablets, 992px and up) */
@media only screen and (min-width: 992px) {
    .home-hero h1 {
        font-size: 68px;
    }
    .home-beers-container h2 {
        font-size: 2.4rem;
    }
    .home-beers-container h2 span {
        font-size: 2.4rem;
    }
    .home-introduction-container {
        width: 80%;
        max-width: 1600px;
        margin: 5rem auto 2rem auto;
    }
    .home-introduction-container .home-introduction {
        display: grid;
        grid-template-columns: repeat(6, 1fr);
        grid-template-rows: repeat(2, auto);
        grid-column-gap: 3rem;
        grid-row-gap: 2rem;
    }
    .home-introduction-container .home-introduction > div:first-child {
        grid-area: 1 / 1 / 2 / 5;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    .home-introduction-container .home-introduction > figure:nth-child(2) {
        grid-area: 1 / 5 / 2 / 7;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: flex-end;
    }
    .home-introduction-container .home-introduction > div:nth-child(3) {
        grid-area: 2 / 3 / 3 / 7;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    .home-introduction-container .home-introduction > figure:nth-child(4) {
        grid-area: 2 / 1 / 3 / 3;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    .home-introduction-container .home-introduction figure {
        margin-block: 0;
    }
    .home-introduction-container .home-introduction figure img {
        max-width: 900px;
    }
}
/* Medium devices (Laptop, 1280px and up)
@media only screen and (min-width: 1280px) {
}

/* Large devices (Monitors, 1440px and up) */
@media only screen and (min-width: 1440px) {
    .home-introduction-container .home-introduction {
        column-gap: 5rem;
        row-gap: 5rem;
    }
}
