/* Page Banner */
#Page-Banner {
    position: relative;
    width: 100lvw;
    height: 45lvh;
}

#Page-Banner img {
    position: absolute;
    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: {{ image_position }};
}

#Page-Banner::after {
    content: "Cafe";
    position: absolute;

    top: 0;
    left: 0;

    height: 100%;
    width: 100%;

    background-color: #000000; 
    opacity: 0.4;
}

#Page-Banner-Text {
    display: flex;
    justify-content: center;
    align-items: center;

    height: 100%;
}

#Page-Banner-Text > * {
    font-size: clamp(3.5rem, 5vw, 8rem);
    text-align: center;
    z-index: 1;
}


/* Page Body */
#Page-Body-Container {
    display: flex;
    justify-content: center;
    align-items: center;
}

#Page-Body {
    width: clamp(25rem, 75vw, 77rem);
}

@media only screen and (max-width: 56rem) {
    #Page-Body {
        width: 95%;
    }
}

/* Page Body's First Header */
#Page-Body h2:first-of-type {
    margin-top: 1rem;
}

#Image-Container {
    margin-top: 1rem;

    display: flex;
    flex-direction: column;
    align-items: center;
}

#Image-Container img {
    border-radius: 10px;
    width: 100%;
    height: auto;
}

/* Mission Statement */
#Mission-Statement {
    text-align: center;
    line-height: 2.5rem;

    font-style: italic;
    font-size: 1.7rem;

    margin-top: 1.5rem;
}

#Painting-Copyright {
    text-align: center;
}

#Page-Body h1 {
    color: black;
}

p:not(#Painting-Copyright) {
    margin-bottom: 2rem;
}

table{
    width: 100%;
    border-collapse: collapse;
    margin-top: 0.75rem;
    margin-bottom: 2rem;
}

table th,
table td {
    border: 1px solid #ddd; /* Add borders to cells */
    padding: 8px;
}

table th {
    background-color: var(--green);
    color: white;
    font-weight: bold;
    text-align: left;
}

table td:first-child {
    width: 50%; /* Adjust first column width as needed */
}

p + ul {
    margin-top: -1.5rem;
    margin-bottom: 2rem;
    list-style-position: inside;
}

li {
    margin-bottom: 0.5rem;
}

/* CTA Button */
#CTA-Container {
    width: 100%;
    text-align: center;
}

#CTA-Container button {
    margin-top: 1rem;

    padding: 1rem 2rem;
    background-color: #38642A;

    font-size: 1.25rem;
    font-weight: bold;

    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}
