body {
    padding: 0;
    margin: 0;
    overflow-x: hidden; /* Prevent horizontal scrolling */
}

.complete {
    background-color: #f0f0f0;
    padding-bottom: 100px;
}

.banner img {
    width: 100%;
    height: auto;
}

.banner-mobile img {
    display: none;
}

.pagething {
    padding-top: 20px;
    margin-bottom: 0;
}

.pagething h1 {
    font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    font-size: 2.5rem;
    padding-left: 60px;
    font-weight: 400;
    text-align: left;
    position: relative; /* Ensure the h1 is positioned */
    color: rgb(59, 59, 59);
}

.pagething h1::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px; /* Adjust this value to create more or less space */
    height: 3px; /* Thickness of the underline */
    width: 40%; /* Full width of the h1 element */
    background-color: #494949; /* Color of the underline */
    border-radius: 10px; /* Optional: Rounded corners */
}

.opening-times {
    max-width: 600px;
    margin: 50px auto;
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(1, 1, 1, 0.1);
}

.day {
    margin-bottom: 20px;
}

.day h2 {
    font-size: 1.2rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 5px;
}

.day p {
    font-size: 1rem;
    color: #666;
    margin: 0;
}

.insta {
    margin-top: 20px;
    text-align: center;
}

.insta p {
    font-size: 2rem;
    color: #505050;
    margin-bottom: 30px;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social-icons i {
    font-size: 2rem;
    color: #333;
    cursor: pointer;
    transition: color 0.3s ease;
}

.social-icons i:hover {
    color: #4267B2; /* Facebook blue */
}

/* Page Content Styles */
.pagething {
    padding: 20px;
}

.pagething h1 {
    text-align: left;
    font-size: 2rem; /* Adjust font size */
    margin-bottom: 20px;
    padding-left: 5%;
}

.opening-times {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.day {
    margin: 10px 0;
    text-align: center;
}

.day h2 {
    font-size: 1.2rem; /* Adjust font size */
    margin-bottom: 5px;
}

.day p {
    font-size: 1rem;
}

@media (max-width: 800px) {
    .pagething h1 {
        font-size: 1.8rem;
    }

    .day h2 {
        font-size: 1.1rem;
    }

    .day p {
        font-size: 0.9rem;
    }
}

@media (max-width: 400px) {
    .pagething h1 {
        font-size: 1.5rem;
    }

    .day h2 {
        font-size: 1rem;
    }

    .day p {
        font-size: 0.8rem;
    }
}

@media (max-width: 800px) {
    .insta p {
        font-size: 1.3rem;
    }

    .social-icons a {
        font-size: 1.3rem;
    }
}

@media (max-width: 400px) {
    .insta p {
        font-size: 1rem;
    }

    .social-icons a {
        font-size: 1.1rem;
    }
}

@media (max-width: 600px) {

    .banner img {
        display: none;
    }

    .banner-mobile img {
        display: block;
        width: 100%;
        height: auto;
    }
}

@media (min-width: 2000px) {
    .banner img {
        height: 900px;
    }
    .pagething {
        padding: 20px;
    }
    
    .pagething h1 {
        text-align: center;
        font-size: 5rem; /* Adjust font size */
        margin-bottom: 20px;
        padding: 0;
        text-align: left;
    }
    
    .opening-times {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .day {
        margin: 10px 0;
        text-align: center;
    }
    
    .day h2 {
        font-size: 3rem; /* Adjust font size */
        margin-bottom: 10px;
    }
    
    .day p {
        font-size: 2rem;
    }
}