*{
    box-sizing: border-box;
}
body{
    margin: 0;
}
header{
    background-color: palegreen;
    text-align: center;
    padding: 0;
    position: relative;
    height: 175px;
    overflow: visible;
}
header img{
    max-width: 500px;
    height: auto;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}
.header-info{
    position: absolute;
    top: 10px;
    right: 20px;
    text-align: right;
    font-size: 1rem;
    font-weight: 600;
    color: black;
}
main{
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
}
main h2{
    text-align: center;
    margin-bottom: 20px;
}
main figure{
    text-align: center;
    margin: 0 15px;
}
main img{
    width: 250px;
    height: auto;
    border-radius: 10px;
}
main figcaption{
    margin-top: 8px;
    font-size: 1rem;
    color: black;
    font-weight: 600;
}
.gallery{
    display: flex;
    gap: 20px;
    justify-content: center;
}
.hero{
    background-color: palegreen;
    text-align: center;
    padding: 40px 20px;
    margin-top: 20px;
    border-radius: 10px;
}
.hero p{
    margin-top: 10px;
    font-size: 1.2rem;
    color: black;
    font-weight: 600;
}
.opening-times{
    margin-top: 40px;
    text-align: center;
}
.opening-times table{
    margin: 0 auto;
    border-collapse: collapse;
    width: 300px;
    background: black;
    border-radius: 10px;
    overflow: hidden;
}
.opening-times caption{
    padding: 10px;
    font-weight: 700;
    background-color: palegreen;
}
.opening-times th,
.opening-times td {
    color: blanchedalmond;
    padding: 12px;
    border-bottom: 1px solid blanchedalmond;
}
.opening-times th{
    background-color: blanchedalmond;
    font-weight: 600;
}
.opening-times tr:last-child td {
    border-bottom: none;
}
.site-footer{
    background-color: palegreen;
    padding: 20px 10px;
    margin-top: 40px;
}
.footer-socials a{
    margin: 0 10px;
    font-weight: 600;
    color: black;
    text-decoration: none;
}
.footer-socials a:hover{
    text-decoration: underline;
}
.site-footer p{
    margin-top: 10px;
    font-weight: 700;
    color: black;
}
.social-icon{
    width: 30px;
    height: 30px;
    object-fit: contain;
    vertical-align: middle;
    margin: 0 8px;
}
.footer-content{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}
.footer-socials{
    display: flex;
    gap: 12px;
}
.footer-icon{
    width:30px;
    height: 30px;
    object-fit: contain;
}
@media screen and (max-width:600px){
    .gallery{
        flex-direction: column;
        align-items: center;
    }
    main img{
        width: 80%;
        max-width: 250px;
    }header{
        height: auto;
        padding: 20px 0;
        position: relative;
    }
    header img{
        max-width: 260px;
        position: static;
        transform: none;
        margin: 0 auto 10px;
        display: block;
    }
    .hero{
        padding: 20px 15px;
    }
    .opening-times table{
        width: 90%;
    }
    .header-info{
        position: static;
        text-align: center;
        margin-top: 10pxpx;
        font-size: 0.95rem;
        line-height: 1.3;
    }
    header{
        height: 260px;
    }

}