/* GLOBAL */
body {
    background: #FFF4C9;
    font-family: Arial, Helvetica, sans-serif;
    margin: 0;
}



#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;
}

/* HEADER */
.header {
    text-align: center;
    padding: 20px;
}

    .header h1 {
        color: #ED9121;
        font-size: 50px;
        margin-bottom: 10px;
      }

.areas-box {
    background: rgba(0, 0, 0, 0.25); /* transparent dark overlay */
    padding: 20px 25px;
    border-radius: 12px;
    margin: 30px auto;
    max-width: 800px;
    color: #fff; /* keeps text readable */
    text-align: center;
    backdrop-filter: blur(2px); /* optional: gives a premium frosted look */
}

/* INTRO SECTION */
.intro {
    text-align: center;
    padding: 0 20px;
    font-size: 1.1rem;
    line-height: 1.6;
}

.highlight-phone {
    font-weight: bold;
    color: #E56717;
}

.privacy-note {
    margin-top: 10px;
    font-size: 0.95rem;
}

/* FORM SECTION */
.form-section {
    display: flex;
    justify-content: center;
    padding: 20px;
}

.contact-form {
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.15);
    width: 100%;
    max-width: 500px;
}

    .contact-form label {
        font-weight: bold;
        margin-top: 15px;
        display: block;
    }

    .contact-form input,
    .contact-form textarea {
        width: 100%;
        padding: 10px;
        margin-top: 5px;
        border-radius: 6px;
        border: 1px solid #ccc;
        font-size: 1rem;
    }

        .contact-form input:focus,
        .contact-form textarea:focus {
            outline: none;
            border-color: #EFB261;
            box-shadow: 0 0 5px rgba(239, 178, 97, 0.5);
        }

.required-note {
    font-size: 0.9rem;
    margin-bottom: 10px;
}

/* SUBMIT BUTTON */
.submit-btn {
    margin-top: 20px;
    width: 100%;
    padding: 12px;
    background-color: #EFB261;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 18px;
    cursor: pointer;
    transition: 0.3s ease;
}

    .submit-btn:hover {
        background-color: #E56717;
        transform: scale(1.03);
    }

/* Invalid field styling */
.invalid {
    border-color: red !important;
    background: #ffe6e6;
}

/* 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;
    }
}
    
}

.review-carousel {
    max-width: 600px;
    margin: 40px auto;
    position: relative;
    text-align: center;
}

.graphic-only .review {
    display: none;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.graphic-only .review.active {
    display: block;
    opacity: 1;
}

.graphic-only img {
    width: 70%;
    max-width: 350px;
    height: auto;
    border-radius: 8px;
    margin: 0 auto;
    display: block;
  }


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

.carousel-controls button {
    background: #333;
    color: #fff;
    border: none;
    padding: 8px 14px;
    margin: 0 5px;
    cursor: pointer;
    border-radius: 4px;
    font-size: 18px;
    display: inline-block;
}
