@import url("https://cdnjs.cloudflare.com/ajax/libs/meyer-reset/2.0/reset.min.css");
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&display=swap");
* {
  -webkit-font-smoothing: antialiased;
  box-sizing: border-box;
}
html,
body {
  margin: 0px;
  height: 100%;
}
/* a blue color as a generic focus style */
button:focus-visible {
  outline: 2px solid #4a90e2 !important;
  outline: -webkit-focus-ring-color auto 5px !important;
}
a {
  text-decoration: none;
}
/* @FONTWARNING[{"type": "restricted", "family": "Rasa-Regular", "weight": "400", "style": "normal", "allowsCrossOrigin": false}] */

@font-face {
  font-family: "Rasa-Regular";
  src: local("Rasa-Regular");
}
/* @FONTWARNING[{"type": "restricted", "family": "Rhodium Libre-Regular", "weight": "400", "style": "normal", "allowsCrossOrigin": false}] */

@font-face {
  font-family: "Rhodium Libre-Regular";
  src: local("Rhodium Libre-Regular");
}
/* @FONTWARNING[{"type": "restricted", "family": "Poppins-Regular", "weight": "400", "style": "normal", "allowsCrossOrigin": false}] */

@font-face {
  font-family: "Poppins-Regular";
  src: local("Poppins-Regular");
}

/* ══════════════════════════════════════════════════
   NAVBAR — shared styles (our.html)
══════════════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: Transparent(11, 0, 34, 0.72);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.navbar-inner {
  display: flex;
  align-items: center;
  gap: clamp(12px, 2vw, 32px);
  padding: 10px clamp(24px, 4vw, 80px);
}
.nav-logo img {
  height: clamp(32px, 4vw, 52px);
  width: auto;
  display: block;
}
.nav-links {
  display: flex;
  list-style: none;
  gap: clamp(16px, 2vw, 36px);
  margin: 0;
  padding: 0;
  flex: 1;
}
.nav-links a {
  font-family: 'Poppins', Arial, sans-serif;
  font-size: clamp(0.72rem, 1vw, 0.92rem);
  font-weight: 500;
  color: rgba(18, 18, 18, 0.82);
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: color 0.2s;
}
.nav-links a:hover,
.nav-links a.active {
  color: #0e0e0e;
}
.nav-actions {
  display: flex;
  align-items: center;
  gap: clamp(8px, 1.2vw, 20px);
  margin-left: auto;
}
.nav-email,
.nav-phone,
.nav-hours {
  font-family: 'Poppins', Arial, sans-serif;
  font-size: clamp(0.62rem, 0.85vw, 0.78rem);
  color: rgba(10, 10, 10, 0.7);
  white-space: nowrap;
}
.nav-phone { color: rgba(9, 9, 9, 0.9); font-weight: 500; }
.nav-email { color: rgba(9, 9, 9, 0.9); font-weight: 500; }
.nav-hours  { color: rgba(9, 9, 9, 0.9); font-weight: 500; }

@media (max-width: 700px) {
  .nav-actions { display: none; }
  .nav-links { gap: 14px; }
}
@media (max-width: 480px) {
  .navbar-inner { flex-wrap: wrap; }
}