/* ─── Theme toggle ────────────────────────────────────────── */
/*
  To switch themes, comment out the ACTIVE block and
  uncomment the other. Then hard-reload the page.
*/

/* ACTIVE: Crimson #a32015 */
:root {
  --color-brand:    #a32015;
  --color-brand-dk: #7e1a10;
}

/* ALT: Original orange #d64900
:root {
  --color-brand:    #d64900;
  --color-brand-dk: #bb3f00;
}
*/

/* ─── Base typography ─────────────────────────────────────── */
body,
input,
textarea,
button,
select {
  font-family: 'Roboto', sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  line-height: 1.25;
  margin: 0;
}

p {
  margin: 0;
}

/* ─── Background images ───────────────────────────────────── */
.hero-bg {
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.75)),
    url('images/photos/east-islip-web-design.jpg');
  background-size: cover;
  background-position: center;
  min-height: 600px;
}

.about-bg {
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.37), rgba(0, 0, 0, 0.37)),
    url('images/photos/east-islip-web-design-about.jpg');
  background-size: cover;
  background-position: center;
}

/* ─── Floating quote tab ──────────────────────────────────── */
.quote-tab {
  position: fixed;
  left: 0;
  top: 50%;
  transform: translateY(-50%) rotate(-90deg) translateX(-50%);
  transform-origin: left center;
  z-index: 100;
  white-space: nowrap;
}

/* ─── FAQ accordion ───────────────────────────────────────── */
.faq-body {
  display: none;
}

.faq-body.open {
  display: block;
}

.faq-toggle svg {
  transition: transform 0.2s ease;
}

.faq-toggle.open svg {
  transform: rotate(180deg);
}

/* ─── Card hover shadow ───────────────────────────────────── */
.service-card {
  transition: box-shadow 0.2s ease;
}

.service-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}