details[open] summary::before,
details summary::before {
  content: "";
}
details {
  display: block;
}
details summary {
  cursor: default;
}
details p {
  display: block;
}


/* Hide the mobile button on desktop */
@media (min-width: 769px) {
  .mobile-button {
    display: none !important;
  }
}

/* Hide the desktop button on mobile */
@media (max-width: 768px) {
  .desktop-button {
    display: none !important;
  }
}

.btn {
  background: #2BB2B3;
  color: #fff;
  padding: 12px 20px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
}


.area-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}

.area-btn {
  display: inline-block;
  padding: 8px 14px;
  margin: 4px;
  background: #f5f5f5;
  color: #444;
  text-decoration: none;
  border: 1px solid #ddd;
  border-radius: 20px;
  font-size: 0.8em;
  transition: all 0.2s ease;
}

.area-btn:hover {
  background: #0073e6;
  color: #fff;
  border-color: #0073e6;
}

#content {
	padding : 20px 0;
}


.contact-form {
      max-width: 500px;
      margin: auto;
      background: #fff;
      padding: 25px;
      border-radius: 10px;
      box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    }
    .contact-form h2 {
      margin-bottom: 15px;
      text-align: center;
      color: #333;
    }
    .form-group {
      margin-bottom: 15px;
    }
    label {
      display: block;
      margin-bottom: 6px;
      font-weight: bold;
      color: #444;
    }
    input, textarea {
      width: 100%;
      padding: 10px;
      border: 1px solid #ccc;
      border-radius: 6px;
      font-size: 1rem;
    }
    textarea {
      resize: vertical;
      min-height: 120px;
    }
    button {
      display: block;
      width: 100%;
      background: #0073e6;
      color: #fff;
      border: none;
      border-radius: 6px;
      font-size: 1rem;
      cursor: pointer;
      transition: background 0.3s ease;
    }
    button:hover {
      background: #005bb5;
    }

.reviews {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 20px;
      max-width: 1200px;
      margin: auto;
	  padding-top: 20px;
    }
    .review {
      background: #fff;
      border-radius: 12px;
      padding: 20px;
      box-shadow: 0 4px 10px rgba(0,0,0,0.05);
      position: relative;
      transition: transform 0.2s ease;
    }
    .review:hover {
      transform: translateY(-4px);
    }
    .stars {
      color: #f5b50a;
      margin-bottom: 10px;
    }
    .review p {
      font-size: 0.95rem;
      line-height: 1.5;
      color: #555;
    }
    .author {
      margin-top: 12px;
      font-weight: bold;
      color: #222;
      display: flex;
      align-items: center;
    }
    .author i {
      color: #0073e6;
      margin-right: 6px;
    }
  


div.sticky {
    z-index: 999;
    width: 201px;
    height: 70px;
    background-color: white;
    position: fixed!important;
    left: 30px!important;
    bottom: 30px!important;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    padding: 10px 10px 10px 13px;
    border-top: 5px solid red;
}
.footer-hours {
  font-size: 0.95em;
  color: #fff;
  margin-top: 20px;
  margin-bottom: 20px;
}

.footer-hours strong, b {
    color: #fff;
    font-weight: 700;
}
.footer-hours h3 {
  margin-bottom: 10px;
  font-size: 1.1em;
  color: #fff;
}

.hours-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.hours-list li {
  margin-bottom: 4px;
}
#banner {
  position: relative;
  overflow: hidden;
  color: white; /* Ensure text is visible */
}

#banner .overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-color: rgba(0, 0, 0, 0.5); /* Adjustable darkness */
  z-index: 1;
}

#banner .content {
  position: relative;
  z-index: 2;
}

.three-col-areas {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5em 1.5em;
  padding: 1em 0;
}

.area-item {
  padding: 0.25em 0;
  font-size: 1em;
  border-bottom: 1px solid #eee;
  color: #333;
}
@media (max-width: 800px) {
  .three-col-areas {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 500px) {
  .three-col-areas {
    grid-template-columns: 1fr;
  }
}



.form-label {
  margin-bottom: 0.3rem;
  font-weight: 500;
}
.form-control, .form-select {
  border-radius: 6px;
}
textarea.form-control {
  min-height: 120px;
}
/* Base container row setup */
.row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -0.75rem;
  margin-left: -0.75rem;
}

/* Two equal-width columns on medium+ screens */
.col-md-6 {
  flex: 0 0 auto;
  width: 100%; /* default for mobile */
  padding-right: 0.75rem;
  padding-left: 0.75rem;
}

/* At screen width ≥768px, make them 50% each */
@media (min-width: 768px) {
  .col-md-6 {
    width: 50%;
  }
}

/* Optional extra polish for even spacing */
.g-3 > [class*='col-'] {
  padding-right: 1rem;
  padding-left: 1rem;
}
/* Row container */
.row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -0.75rem;
  margin-left: -0.75rem;
}

/* Default: full-width columns on mobile */
[class*="col-"] {
  flex: 0 0 auto;
  width: 100%;
  padding-right: 0.75rem;
  padding-left: 0.75rem;
  box-sizing: border-box;
}

/* 50% width on medium+ screens */
@media (min-width: 768px) {
  .col-md-6 {
    width: 50%;
  }
}

/* 25% width on medium+ screens */
@media (min-width: 768px) {
  .col-md-3 {
    width: 25%;
  }
}

/* Always full width */
.col-12 {
  width: 100%;
}

/* Optional spacing utility like Bootstrap’s g-3 (gap size 1rem) */
.g-3 > [class*="col-"] {
  padding-right: 1rem;
  padding-left: 1rem;
}

/* Utility helpers */
.text-end {
  text-align: right;
}
.text-center {
  text-align: center;
}
.align-items-center {
  align-items: center;
}

