:root{
 
  
  --glass: rgba(255,255,255,0.9);
  --maxwidth:1100px;
  --card-radius:12px;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
}

*{box-sizing:border-box}
body{
  margin:0;
  color:white;
  min-height:100vh;
  background-image: url('backgroundimage.jpeg');
  background-size:cover;
  background-position:center;
  
}

/* dim background for readability */
.bg-overlay{
  position:fixed;
  inset:0;
  background:var(--bg-overlay);
  z-index:0;
}

/* header */
.site-header{
  position:relative;
  z-index:3;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:14px 20px;
  max-width:var(--maxwidth);
  margin:0 auto;
}
.logo-wrap{display:flex;align-items:center;gap:12px}
.logo{width:64px;height:64px;object-fit:contain;border-radius:8px;background:white;padding:6px}
.brand h1{margin:0;font-size:18px;color:white}
.brand p{margin:0;font-size:12px;color:#e6e6e6}

.head a{
  color:#fff;
  margin:0 10px;
  text-decoration:none;
  padding:8px 12px;
  border-radius:8px;
  opacity:0.95;
}





.location {
  text-align: center;
  padding: 20px;
}

.location iframe {
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0,0,0,0.2);
}



.head{display:flex;justify-content:space-between;align-items:center;padding:12px 18px;background:transparent;color:#fff}
.head img{width:56px}
.head nav a{color:#fff;margin-left:12px;text-decoration:none}
.head nav a.active{background:rgba(255,255,255,0.12);padding:8px;border-radius:8px}

.main{max-width:1000px;margin:20px auto;padding:18px}
.contact-info .cards{display:flex;gap:12px;flex-wrap:wrap}
.card{color:white;min-width:220px;;padding:12px;border-radius:10px;box-shadow:0 6px 18px rgba(0,0,0,0.06);display:flex;gap:12px;align-items:flex-start}
.ico{width:36px;height:36px;fill:#0b6b5b}
.form-area{margin-top:18px;background:#fff;padding:14px;border-radius:10px;box-shadow:0 6px 18px rgba(0,0,0,0.06)}
form label{display:block;margin-bottom:10px}
form input, form textarea{width:100%;padding:8px;border:1px solid #ddd;border-radius:6px}
.btn{background:#0b6b5b;color:#fff;padding:10px 14px;border-radius:8px;border:none;cursor:pointer}
.note{margin-top:8px;color:#666}
