/*
 Theme Name:   Astra Child
 Theme URI:    https://zimmerspa.co.il/astra-child
 Description:  Astra Child Theme for Zimmerspa
 Author:       Fatma Rabinovich
 Author URI:   https://zimmerspa.co.il
 Template:     astra
 Version:      1.0.0
 Text Domain:  astra-child
*/



/* -----------------------------------------------------------
   GLOBAL PAGE RESET — clean typography & RTL
----------------------------------------------------------- */
body.single-business {
    direction: rtl;
    text-align: right;
    font-family: "Assistant", sans-serif;
    background: #fafafa;
    color: #222;
    line-height: 1.75;
}

.single-business h1, 
.single-business h2, 
.single-business h3 {
    font-weight: 700;
    margin-bottom: 18px;
    color: #111;
}

/* Reduce huge WP default headings */
.single-business h1 { font-size: 32px; }
.single-business h2 { font-size: 26px; }
.single-business h3 { font-size: 22px; }

/* -----------------------------------------------------------
   MAIN CONTAINER
----------------------------------------------------------- */
.business-wrapper {
    max-width: 1000px;
    margin: 40px auto;
    background: #fff;
    padding: 30px 40px;
    border-radius: 14px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.07);
}

/* -----------------------------------------------------------
   MAIN IMAGE (TOP BANNER)
----------------------------------------------------------- */
.business-main-image img {
    width: 100%;
    border-radius: 14px;
    margin-bottom: 25px;
}

/* -----------------------------------------------------------
   GALLERY — 3-column clean grid
----------------------------------------------------------- */
.business-gallery {
    margin: 30px 0;
}

.business-gallery h2 {
    margin-bottom: 20px;
}

.business-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 12px;
}

.business-gallery-grid img {
    width: 100%;
    height: 130px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 3px 6px rgba(0,0,0,0.15);
    transition: .2s;
}

.business-gallery-grid img:hover {
    transform: scale(1.04);
}

/* -----------------------------------------------------------
   DESCRIPTION
----------------------------------------------------------- */
.business-description {
    margin: 30px 0;
    padding: 20px 25px;
    background: #f7f7f7;
    border-radius: 10px;
}

/* -----------------------------------------------------------
   PRICING SECTION
----------------------------------------------------------- */
.business-pricing {
    margin: 40px 0;
}

.business-pricing h2 {
    margin-bottom: 25px;
}

.price-box {
    background: #ffffff;
    border: 1px solid #eaeaea;
    padding: 20px 25px;
    margin-bottom: 18px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.price-box h3 {
    font-size: 22px;
    margin-bottom: 10px;
}

.price-amount {
    font-size: 26px;
    font-weight: 700;
    color: #009688;
    margin-bottom: 10px;
}

.price-description {
    color: #555;
    white-space: pre-line;
}

/* -----------------------------------------------------------
   AMENITIES
----------------------------------------------------------- */
.business-amenities {
    margin: 40px 0;
}

.business-amenities h2 {
    margin-bottom: 20px;
}

.business-amenities ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 10px;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
}

.business-amenities li {
    background: #fff;
    padding: 12px 16px;
    border-radius: 10px;
    border: 1px solid #eee;
    box-shadow: 0 3px 9px rgba(0,0,0,0.04);
}

/* -----------------------------------------------------------
   FAQ ACCORDION STYLE (pure CSS)
----------------------------------------------------------- */
.business-faq {
    margin: 50px 0;
}

.business-faq h2 {
    margin-bottom: 22px;
}

.faq-item {
    margin-bottom: 12px;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #e1e1e1;
    background: #fff;
}

.faq-q {
    padding: 15px 18px;
    font-weight: 600;
    background: #f5f5f5;
    cursor: pointer;
}

.faq-a {
    padding: 18px;
    display: none;
    background: #fff;
}

.faq-item.open .faq-a {
    display: block;
}

/* -----------------------------------------------------------
   BUTTONS (Book / Contact)
----------------------------------------------------------- */
.business-buttons a {
    display: inline-block;
    background: #0077b6;
    color: #fff !important;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 18px;
    margin-top: 10px;
    transition: 0.2s;
}

.business-buttons a:hover {
    background: #005f94;
}

/* -----------------------------------------------------------
   MOBILE RESPONSIVE TWEAKS
----------------------------------------------------------- */
@media (max-width: 768px) {
    .business-wrapper {
        padding: 20px;
    }
    .single-business h1 {
        font-size: 26px;
    }
    .business-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}