/* ===== Shared hero system ===== */

/* this to be removed
.hero-shell {
    position: relative;
    min-height: 360px;
    border-radius: 24px;
    /* to see the border - ok this was the outter border box on ALL the pages */
    /*border: 2px solid red; 
    overflow: hidden;
    /*got an error mess on the --shadow*/
    /*box-shadow: var(--shadow); removing the -- doesn't make any difference
    box-shadow: var(shadow);
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.hero-panel {
    width: 100%;
    max-width: 520px;
    margin: 0 auto;
    padding: 22px 24px;
    border-radius: 18px;
    background: rgba(12,28,40,0.18);
    border: 1px solid rgba(255,255,255,0.25);
    /*border: 12px solid red; ok, this identifies this as the inner box 
    color: #fff;
    text-align: center;
}

*/


/* this is probably the same, but we're going to make all hero blocks lthe same, so this is what I got*/

.hero-shell {
  min-height: 420px;
  border-radius: 22px;
  padding: 48px 28px;

  display: flex;
  align-items: center;
  justify-content: center;

  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-panel {
  width: min(900px, 92%);
  text-align: center;
  color: #ffffff;
  text-shadow: 0 3px 10px rgba(0,0,0,0.6);
}






@media (max-width: 900px) {
    .hero-shell {
        min-height: 300px;
    }

    .hero-panel {
        margin: 20px;
        max-width: none;
    }
}

@media (max-width: 640px) {
    .hero-shell {
        min-height: 260px;
    }

    .hero-panel {
        padding: 20px;
    }
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: Arial, sans-serif;
    color: #1f2a30;
    background: #ffffff;
}

main {
    max-width: 1100px;
    margin: 0 auto;
    padding: 40px 24px;
}

.site-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: nowrap;
    padding: 14px 24px;
    background: linear-gradient(to bottom, #48CAE4, #CAF0F8);
    border-bottom: 1px solid #d9e2e8;
}

.logo {
    flex: 0 0 auto;
}

.logo img {
    display: block;
    max-height: 78px;
    width: auto;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-left: auto;
    flex: 0 0 auto;
    white-space: nowrap;
}

.site-nav a {
    display: inline-block;
    text-decoration: none;
    color: #1f2a30;
    font-weight: 600;
}

.site-nav a:hover {
    color: #2ca6a4;
}


/*
.hero-btn {
  display: inline-block;
  margin-top: 18px;
 
  background: #ffffff;
  color: #102434;
  box-shadow: 0 6px 18px rgba(0,0,0,0.15);
  
  
  
  
  
  padding: 12px 22px;
  background: #ffffff;
  color: #102434;
  font-weight: 600;
  border-radius: 999px;
  text-decoration: none;
  transition: all 0.25s ease;
}

.hero-btn:hover {
  background: #f0f4f8;
  transform: translateY(-2px);
}


.hero-btn {
  display: inline-block;
  margin-top: 18px;
  padding: 12px 22px;
  color: #ffffff;
  font-weight: 600;
  border-radius: 999px;
  text-decoration: none;

  /* 👇 the key changes 
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(6px);

  transition: all 0.25s ease;
}

.hero-btn:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
}

*/

.hero-btn {
  display: inline-block;
  margin-top: 18px;
  padding: 12px 26px;
  color: #ffffff;
  font-weight: 600;
  border-radius: 999px;
  text-decoration: none;

  background: transparent;              /* 👈 key change */
  border: 2px solid rgba(255,255,255,0.7);

  transition: all 0.25s ease;
}

.hero-btn:hover {
  background: rgba(255,255,255,0.15);
  border-color: #ffffff;
  transform: translateY(-2px);
}






.footer {
    background: linear-gradient(to bottom, #CAF0F8, #48CAE4);
    border-top: 1px solid #d9e2e8;
    color: #1f2a30;
    padding: 14px 24px;
    text-align: center;
    font-size: 0.9rem;
}

.footer p {
    margin: 0;
}

.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(10, 18, 24, 0.92);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    padding: 30px;
}

.lightbox img {
    max-width: 92vw;
    max-height: 88vh;
    border-radius: 14px;
    box-shadow: 0 10px 28px rgba(0,0,0,0.35);
}

.lightbox-close {
    position: absolute;
    top: 18px;
    right: 28px;
    color: #fff;
    font-size: 42px;
    font-weight: 700;
    cursor: pointer;
    line-height: 1;
}

.gallery img,
.gallery-grid img {
    cursor: pointer;
    transition: transform 0.2s ease;
}

.gallery img:hover,
.gallery-grid img:hover {
    transform: scale(1.02);
}





/*4-22-2026 contact-precision sysling update.  This broke the page.

.checkbox-row .checkbox-label {
  display: inline-flex;
  align-items: flex-start;
  gap: 8px;
  width: auto !important;
  max-width: 100%;
  margin: 0;
  font-weight: normal;
}

.checkbox-row .checkbox-label input[type="checkbox"] {
  width: auto !important;
  margin: 3px 0 0 0;
  flex: 0 0 auto;
}

.checkbox-row .checkbox-label span {
  display: inline;
  white-space: normal;
  line-height: 1.4;
}
*/

/* trying this to fix the check box instructions without breaking all the styling for contact.php  This didn't work either


.checkbox-row {
  margin-top: 10px;
}

.checkbox-row label {
  display: inline;
  width: auto;
  max-width: none;
  font-weight: normal;
}

.checkbox-row input[type="checkbox"] {
  display: inline-block;
  width: auto;
  margin-right: 8px;
  vertical-align: middle;
}

*/




/* adding this to fix the check box instructions on the contact.php form. Broke the styleing on the contact form.
.checkbox-row label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  max-width: 100%;
  line-height: 1.4;
}

.checkbox-row input[type="checkbox"] {
  margin-top: 4px;
  flex-shrink: 0;
}

*/

