/* ===== Base / readability ===== */
html { scroll-behavior: smooth; }
:root {
  --focus-ring: 3px solid #1e90ff;
  --nav-h: 64px; /* fixed navbar height */
}

*,
*::before,
*::after { box-sizing: border-box; }

body{
  background: repeating-linear-gradient(
    black 0%,
    black 17%,
    blue 50%,
    black 72%,
    black 100%
  );
  margin: 0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
  font-size: 16px;
  line-height: 1.6;
  color: #fff;
  padding-top: var(--nav-h); /* offset content below fixed navbar */
}

/* Global image safety */
img { max-width: 100%; height: auto; }

/* Skip link */
.skip-link {
  position: absolute;
  left: -9999px; top: 0;
  background: #000; color: #fff; padding: .5rem .75rem; z-index: 1000;
}
.skip-link:focus { left: .5rem; top: .5rem; outline: 2px solid #fff; }

/* Visible focus for keyboard users */
:focus { outline: var(--focus-ring); outline-offset: 2px; }
:focus:not(:focus-visible) { outline: none; }
:focus-visible { outline: var(--focus-ring); outline-offset: 2px; }

/* Respect users who prefer less motion */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* High-contrast (Windows) friendly tweaks */
@media (forced-colors: active) {
  a, button { forced-color-adjust: none; }
}

/* ===== Header ===== */
header{
  display: flex;
  justify-content:space-evenly;
  width: 100%;
  height: 15vh;
  margin: 0;
  margin-top: 50px; /* keep if you want extra spacing under navbar */
}
header img{ width: auto; height: auto; }
header h1{
  display: flex;
  justify-content: center; align-items: center;
  text-align: center;
  font-size: 2rem;
  font-family: 'Gill Sans','Gill Sans MT', Calibri,'Trebuchet MS', sans-serif;
  color: white;
  margin: 0.5rem 0;
}

/* ===== Text colors (keep your palette) ===== */
p{ color: white; }
h1{ color: white; }
h2{ color: white; }

/* ===== Layout ===== */
.container1{
  width: 80%;
  justify-content: center;
  text-align: center;
  margin: 5rem auto;
  display: flex;
  flex-direction: column;
}
.m1{
  justify-content: center;
  align-items: center;
  width: 100%;
}
.m1 h2{
  display: flex;
  justify-content: center; align-items: center;
  font-size: 1.5rem;
  margin: 0.5rem 0 0;
}
.m1 p{
  display: flex;
  justify-content: center; align-items: center;
  font-size: large;
}
.m2{
  display: flex;
  justify-content: space-evenly;
  flex-wrap: wrap;
  margin-top: 90px;
}
.m2 img{
  height: 30%;
  width:30%;
  min-width: 260px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.2);
  margin:20px;
}

.container2{
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  text-align: center;
  margin: 50px;
  min-width: 35%;
}

.f1{
  width: 40%;
  min-width: 320px;
  display: flex;
  flex-direction: column;
  justify-content:flex-start;
  align-items: center;
}

.f12{
  display: flex;
  flex-direction: column;
  justify-content:center;
  align-items: center;
}
.f121 img{
  float: left;
  margin-top: 17px;
  padding: 0;
  height:350px;
}
.f122{ margin:30px 30px; }

.f2{
  width: 40%;
  min-width: 275px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items:center;
}

/* ===== sr-only helper (robust) ===== */
.sr-only {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

/* ===== Contact area links/icons ===== */
.f22 a {
  display: inline-flex;
  align-items: center;
  font-size: 1.1rem;
  text-decoration: underline;
  text-underline-offset: 3px;
  color: inherit;
}
.f22 a:hover,
.f22 a:focus-visible { color: #e63946; }

ion-icon{
  color: white;
  width:30px;
  height:30px;
}

/* ===== Footer ===== */
footer {
  text-align: center;
  padding: 10px 0;
}
footer p {
  color: #e60000;
}

/* ===== Lists & pricing ===== */
.price{
  text-decoration: underline;
  color: white;
  font-weight: bold;
  font-size: 1.2rem;
  margin-top: 20px;
}
ul{
  justify-content: center;
  justify-items: center;
  margin-top: 20px;
  padding-left: 0;
}
li {
  list-style-type: none;
  color: white;
  font-size: large;
  text-align: left;
  margin: 5px 0;
}

/* ===== Video gallery ===== */
.m3 {
  display: flex;
  justify-content: space-evenly;
  flex-wrap: wrap;
  margin-top: 30px;
}
.m3 video {
  transform: translateZ(0);
  width: 30%;
  aspect-ratio: 16 / 9;
  height: auto;
  object-fit: contain;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0px 2px 4px rgba(0,0,0,0.2);
  margin: 20px;
  background: #000;
}
@media (max-width: 768px) { .m3 video { width: 45%; margin: 10px; } }
@media (max-width: 480px) { .m3 video { width: 100%; margin: 10px 0; } }

/* ===== Fixed navbar + Contact button ===== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  background: rgba(0,0,0,0.85);
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  z-index: 1000;
}

/* Primary button: high quality + accessible */
.contact-btn {
  display: inline-block;
  padding: 12px 22px;
  min-height: 44px;
  line-height: 1.2;
  border-radius: 10px;
  border: 1px solid #0046ad;
  background: linear-gradient(#0a66ff, #0052cc);
  color: #fff;
  font: 600 1rem/1.2 system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  letter-spacing: .2px;
  text-decoration: none;
  text-align: center;
  box-shadow: 0 6px 16px rgba(0,0,0,.25), 0 1px 0 rgba(255,255,255,.05) inset;
  transition: transform .06s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
  cursor: pointer;
  will-change: transform, box-shadow, background;
}

/* Hover (mouse) */
.contact-btn:hover {
  background: linear-gradient(#0a5ae6, #003d99);
  border-color: #003d99;
  box-shadow: 0 8px 20px rgba(0,0,0,.35), 0 1px 0 rgba(255,255,255,.06) inset;
}

/* Active (press) */
.contact-btn:active {
  transform: translateY(1px);
  box-shadow: 0 4px 12px rgba(0,0,0,.25) inset, 0 2px 6px rgba(0,0,0,.25);
}

/* Keyboard focus (very visible) */
.contact-btn:focus-visible {
  outline: 3px solid #ffffff;
  outline-offset: 3px;
  box-shadow: 0 0 0 4px #0a66ff;
}

/* Disabled */
.contact-btn[aria-disabled="true"],
.contact-btn:disabled {
  opacity: .6;
  cursor: not-allowed;
  filter: grayscale(.2);
  box-shadow: none;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .contact-btn { transition: none; transform: none !important; }
}

/* High contrast mode */
@media (forced-colors: active) {
  .contact-btn {
    border: 1px solid CanvasText;
    background: ButtonFace;
    color: ButtonText;
    box-shadow: none;
  }
  .contact-btn:focus-visible { outline: 2px solid Highlight; box-shadow: none; }
}

/* Responsive navbar height (auto-offset via variable) */
@media (max-width: 480px) {
  :root { --nav-h: 72px; }
}

/* (Removed) OLD hack:
   header { margin-top: 80px; } */
