body {
    margin: 0;
    padding: 0;
    font-family: Arial, Helvetica, sans-serif;
    /* Background */
    background-image: url("../images/BackgroundImage.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat; /* Prevent tiling */
    background-attachment: fixed; /* Smooth scrolling effect */
}

/* FOOTER */
.footer-info-box {
    background-color: rgba(255,255,255,0.85);
    border: none;
    padding: 20px;
    border-radius: 10px;
    max-width: 600px;
    margin: 20px auto;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

/* Flex layout for side-by-side sections */
.info-flex {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

/* Make both columns consistent */
.footer-opening-hours p,
.footer-contact-details p {
    margin: 5px 0;
    font-size: 16px;
    color: #250000;
}

/* Links underneath */
.info-links {
    margin-top: 20px;
    text-align: center;
}

.info-link {
    display: inline-block;
    margin: 5px 10px;
    padding: 8px 14px;
    background-color: #D97A2B;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: bold;
}

.info-link:hover {
    background-color: #b96522;
}

/* Mobile-friendly stacking */
@media (max-width: 600px) {
    .info-flex {
        flex-direction: column;
        text-align: center;
    }
}

#backToTop {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #333;
    color: #fff;
    padding: 10px 16px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 9999;
}

#backToTop.show {
    opacity: 1;
    pointer-events: auto;
}

/* Modern Header Styling */
.header {
    text-align: center;
    padding: 40px 20px;
    background: transparent;
}

.header h1,
.header h2 {
    color: #EFB261;
    margin: 0;
    padding: 0;
    line-height: 1.2;
    text-shadow: 0 2px 6px rgba(0,0,0,0.45);
    background: rgba(0, 0, 0, 0.35);
    padding: 20px 30px;
    border-radius: 12px;
    max-width: 800px;
    margin: 0 auto;
}

/* h1 – strong, bold, modern */
.header h1 {
    font-size: 50px;
    font-weight: 700;
    margin-bottom: 10px;
}

/* h2 – lighter, elegant subtitle */
.header h2 {
    font-size: 1.4rem;
    font-weight: 500;
    margin-top: 5px;
    margin-bottom: 20px;
}

    .header {
    padding: 20px 10px;
    text-align: center;
}

.header-inner {
    text-align: center;
}

.logo {
    width: 40vw;
    max-width: 165px;
    height: auto;
}

/* MOBILE NAVIGATION */
@media (max-width: 600px) {
    .nav-btn {
        width: 100%;
        max-width: 300px;
        margin: 10px auto;
        display: block;
    }
}

.center-wrapper {
    display: flex;
    justify-content: center;   /* centre horizontally */
    align-items: center;       /* centre vertically */
    min-height: 50vh;         /* fill the screen height */
    width: 100%;
    padding: 20px;            /* prevents edge-to-edge on mobile */
    box-sizing: border-box;
}

.info-box {
    background: rgba(255,255,255,0.85);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.15);
    max-width: 700px;
    width: 100%;
    text-align: left;
}

    /* Button Hover (if used elsewhere) */
    .button:hover {
        opacity: 0.5;
    }

/* FAQ Box Wrapper */
.faq-container {
    max-width: 800px;
    margin: 40px auto;
    padding: 25px 20px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

/* FAQ Title */
.faq-title {
    text-align: center;
    color: #ED9121;
    margin-bottom: 25px;
    font-size: 2rem;
}

/* FAQ Item Wrapper */
.faq-item {
    border-bottom: 1px solid #ddd;
    padding: 0;
}

/* FAQ Question Button */
.faq-question {
    width: 100%;
    background: none;
    border: none;
    text-align: left;
    padding: 15px 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    color: #333;
    position: relative;
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: #ED9121;
}

/* Plus/Minus Icon */
.faq-question::after {
    content: "+";
    position: absolute;
    right: 10px;
    font-size: 1.4rem;
    transition: transform 0.3s ease;
}

.faq-question.active::after {
    content: "-";
}

/* FAQ Answer Panel */
.faq-answer {
    display: none; /* hidden by default */
    padding: 0 10px 15px;
}

.faq-answer p {
    margin: 0;
    color: #555;
    line-height: 1.5;
}

/* When JS toggles .open */
.faq-answer.open {
    display: block;
}