@charset "UTF-8";
/* CSS Document */




*{box-sizing:border-box}

body{font-family:'Outfit',system-ui,-apple-system,Segoe UI,Roboto,Helvetica,Arial; font-weight: 300;}

a {color: #333;}
.txt-xsmall {font-size: 12px;}
.txt-small {font-size: 14px;}
.txt-medium {font-size: 18px;}
.txt-large {font-size: 21px;}
.txt-xlarge {font-size: 24px;}
.txt-xxlarge {font-size: 30px;}



.customBG1 {background:#21bdc9!important;}
.customBG2 {background:#1f3259!important;}
.customBG3 {background:#FFF!important;}
.customBG-Lightgrey {background:#eee!important;}
.customBG-Darkgrey {background:#444!important;}
.color1 {color: #21bdc9!important;}
.color2 {color: #1f3259!important;}
.color3 {color: #FFF!important;}

.btn, .customBTN {background:#21bdc9; border: none;}
.btn:hover, .customBTN:hover {background:#1f3259; border: 1px #FFF solid; color: #FFF;}

.nav-item .nav-link {color: #1f3259 !important;}
.nav-link.active {background:#1f3259 !important; color: #FFF!important;}

.topbar{background:#21bdc9; margin: 0; padding:0;}
.navbar {padding: 0;}
.logo-dot{width:14px;height:14px;border-radius:50%;display:inline-block;background:linear-gradient(135deg,var(--ga-primary),#7aa7ff);box-shadow:0 0 0 4px rgba(13,110,253,.15);}

.navbar .nav-link{font-weight:500}

.navbar .btn{font-weight:600;}

header {
    height: 100%;
}
.hero-banner {
    height: 100%;

    background-image:url("../img/Yorkshire-properties-banner2.png"); background-repeat: no-repeat; background-size: cover;}

@media (min-width: 992px){.hero{padding:2rem 0 5rem}.py-lg-6{padding-top:3.5rem!important;padding-bottom:3.5rem!important;}}

.hero-search{border-radius:1rem}

.hero-blob{position:absolute; inset-inline-end:-200px; top:-120px; width:520px;height:520px;border-radius:50%;background: radial-gradient(circle at 30% 30%, rgba(13,110,253,.25), rgba(13,110,253,0) 60%); filter: blur(10px);}

.hero-image{border-radius:1rem;object-fit:cover;width:100%;height:auto;}

.listing-card img{object-fit:cover}

.area-card{position:relative;border:1px solid rgba(0,0,0,.06);background:#fff}

.area-overlay{position:absolute;inset:auto 0 0 0;background:linear-gradient(180deg, rgba(0,0,0,0), rgba(0,0,0,.55));color:#fff}

.step-icon{width:48px;height:48px;display:grid;place-items:center;background:rgba(13,110,253,.1);color:var(--ga-primary)}

.cta-agents{background:linear-gradient(135deg,#0d6efd,#0a58ca);}


/* Properties CSS */

.icon {
  display: inline-flex;        /* keeps icon + text inline */
  align-items: center;         /* vertical alignment */
  gap: 6px;                    /* space between icon and text */
	margin-right: 15px;          /* spacing between each group */
  font-size: 14px;             /* matches Bootstrap small text */
  color: #6c757d;              /* Bootstrap text-body-secondary */

}

.icon::before {
  content: "";
  display: inline-block;
  width: 18px;                 /* set exact icon size */
  height: 18px;
  background-size: 20px 20px;  /* scale to fit box */
  background-repeat: no-repeat;
  background-position: center;
  flex-shrink: 0;              /* prevent shrinking */
}

/* icons */
.icon {
  display: inline-block;
  width: 20px; height: 20px;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: center;
}

/* update paths to your icons */
.icon-bedroom       { background-image: url("../img/icon_bedroom.png"); }
.icon-bath          { background-image: url("../img/icon_bath.png"); }
.icon-sitting-room  { background-image: url("../img/icon_sitting_room.png"); }
.icon-parking       { background-image: url("icons/parking.png"); }
.icon-garden        { background-image: url("icons/garden.png"); }
.icon-kitchen       { background-image: url("icons/kitchen.png"); }
.icon-doubleglaze   { background-image: url("icons/doubleglaze.png"); }
.icon-transport     { background-image: url("icons/transport.png"); }
.icon-phone         { background-image: url("../img/icon-phone.png"); }
.icon-email         { background-image: url("../..//images/icon-email.png"); }
.icon-save          { background-image: url("../img/icon-heart.png"); }
.icon-share         { background-image: url("../img/icon-share.png"); }
.icon-website       { background-image: url("icons/website.png"); }
.icon-p-semi-d      { background-image: url("../img/icon-semi-detached-property.png"); }
.icon-p-detached      { background-image: url("../img/icon-detached-property.png"); }


/* Listing page */

.badge {color: #666; font-weight: normal;}

/* Container */
.gah-searchbar {
  --gap: 12px;
  --radius: 10px;
  --muted: #6c757d;
  --border: #e5e7eb;
  --bg: #ffffff;
  --chip: #f3f4f6;

  display: grid;
  gap: var(--gap);
  padding: 16px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 1px 2px rgba(0,0,0,.03);
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
}

/* Rows */
.gah-row {
  display: grid;
  gap: var(--gap);
}

.gah-row-top {
  grid-template-columns: 1fr minmax(140px, 200px) auto;
  align-items: end;
}

.gah-row-filters {
  grid-template-columns: repeat(6, minmax(120px, 1fr)) auto auto;
  align-items: end;
}

.gah-row-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

/* Fields */
.gah-field {
  display: grid;
  gap: 6px;
}

.gah-field label {
  font-size: 12px;
  color: var(--muted);
}

.gah-field input[type="text"],
.gah-field select {
  width: 100%;
  height: 40px;
  padding: 8px 10px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: #fff;
  font-size: 14px;
  line-height: 1.2;
  outline: none;
}

.gah-field input[type="text"]:focus,
.gah-field select:focus {
  border-color: #0ea5e9;
  box-shadow: 0 0 0 3px rgba(14,165,233,.15);
}

.gah-field-checkbox {
  align-self: end;
}

.gah-checkbox {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #111827;
}

/* Actions */
.gah-actions,
.gah-actions-secondary {
  display: flex;
  gap: 8px;
  align-items: center;
}

.gah-actions {
  justify-content: flex-end;
}

.gah-actions-secondary {
  justify-content: flex-end;
  grid-column: -3 / -1; /* span last two columns */
}

/* Buttons */
.gah-btn {
  height: 40px;
  padding: 0 14px;
  border-radius: 8px;
  border: 1px solid transparent;
  cursor: pointer;
  font-weight: 600;
  font-size: 14px;
}

.gah-btn-primary {
  background: #0ea5e9;
  color: #fff;
  border-color: #0ea5e9;
}

.gah-btn-primary:hover {
  filter: brightness(0.95);
}

.gah-btn-outline {
  background: #fff;
  color: #0ea5e9;
  border-color: #0ea5e9;
}

.gah-btn-outline:hover {
  background: rgba(14,165,233,.06);
}

/* Chips */
.gah-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  background: var(--chip);
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 12px;
  color: #374151;
}

/* Actions row */
.gah-actions {
  display: flex;
  gap: 12px;
  align-items: center;
}

.gah-more-link {
  font-size: 14px;
  color: #0ea5e9;
  text-decoration: underline;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
}

/* Filters row hidden by default */
.gah-row-filters {
  display: none;
  grid-template-columns: repeat(6, minmax(120px, 1fr)) auto;
  gap: 12px;
  align-items: end;
}

.gah-row-filters.is-visible {
  display: grid;
}



/* Responsive */
@media (max-width: 1024px) {
  .gah-row-filters {
    grid-template-columns: repeat(4, minmax(140px, 1fr));
  }
  .gah-actions-secondary {
    grid-column: 1 / -1;
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  .gah-row-top {
    grid-template-columns: 1fr;
  }
  .gah-row-filters {
    grid-template-columns: 1fr 1fr;
  }
  .gah-actions,
  .gah-actions-secondary {
    justify-content: stretch;
  }
  .gah-btn {
    width: 100%;
  }
}


footer .navbar-brand .logo-dot{box-shadow:none}

"""



with open(f"{base}/index.html","w",encoding="utf-8") as f:

    f.write(html)

with open(f"{assets_dir}/styles.css","w",encoding="utf-8") as f:

    f.write(css)



# Zip for download

zip_path = "/mnt/data/grabahome_bootstrap.zip"

if os.path.exists(zip_path):

    os.remove(zip_path)

shutil.make_archive("/mnt/data/grabahome_bootstrap", "zip", base)



zip_path
