/* Import Google Font (Jost) */
@import url("https://fonts.googleapis.com/css2?family=Jost:wght@300;400;500;600;700&display=swap");

/* Root variables */
:root {
  --red: #c20f12;
  --brown: #423e3e;
  --brown2: #2f2e2e;
  --font-base: "Jost", "Arial", sans-serif;
  --font-heading: "Jost", "Arial", sans-serif;
  --line-height: 1.5;
  --max-width: 1200px;
  --spacing-unit: 1rem;
  --brand: var(--red);
  --brand2: var(--brown);
  --radius: 0px;
}

/* Global resets */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 100%; /* ensures 1rem = 16px by default */
  line-height: var(--line-height);
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-base);
  color: var(--brown);
  background-color: #fff;
  min-height: 100vh;
  width: 100%;
  line-height: var(--line-height);
}

img,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: var(--red);
  text-decoration: none;
}
a:hover,
a:focus {
  text-decoration: underline;
}

/* Headings */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  color: var(--brown);
  line-height: 1.2;
  margin-bottom: calc(var(--spacing-unit) / 2);
}

h1 {
  font-size: 2.5rem;
}
h2 {
  font-size: 2rem;
}
h3 {
  font-size: 1.75rem;
}
h4 {
  font-size: 1.5rem;
}
h5 {
  font-size: 1.25rem;
}
h6 {
  font-size: 1rem;
}

/* Containers & layout */
.container {
  width: 90%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: var(--spacing-unit) 0;
}

/* Utility classes */
.text-red {
  color: var(--red);
}
.text-brown {
  color: var(--brown);
}

.bg-red {
  background: var(--red);
}
.bg-brown {
  background: var(--brown);
}

/* Simple responsive image class */
.img-responsive {
  width: 100%;
  height: auto;
  display: block;
}

/* Forms basic reset */
input,
button,
textarea,
select {
  font: inherit;
  color: inherit;
}

/* Button basic style */
.btn {
  display: inline-block;
  padding: calc(var(--spacing-unit) / 2) var(--spacing-unit);
  font-weight: 500;
  text-align: center;
  text-decoration: none;
  color: #fff;
  background-color: var(--red);
  border: none;
  border-radius: 0.25rem;
  cursor: pointer;
}
.btn:hover,
.btn:focus {
  background-color: darken(var(--red), 10%);
}

/* Accessibility: focus outline */
:focus {
  outline: 2px dashed var(--red);
  outline-offset: 2px;
}

/* Color utilities (already defined in :root, using them here) */
.text-red {
  color: var(--red) !important;
}
.text-brown {
  color: var(--brown) !important;
}

/* Custom button */
.btn-red {
  background-color: var(--red);
  color: #fff;
  border: none;
  padding: 0.5rem 1.25rem;
  border-radius: 0.25rem;
  font-weight: 500;
  transition: background-color 0.2s ease-in-out;
}
.btn-red:hover,
.btn-red:focus {
  background-color: #a50d0f;
  color: #fff;
}
.brand-logo {
  width: 280px;
}
/* Navbar tweaks */
.navbar {
  background: var(--brown2);
}
.navbar-brand span {
  font-size: 1.25rem;
  letter-spacing: 0.5px;
}
.nav-link {
  color: #bbb;
  font-weight: 200;
  padding: 0.5rem 0.75rem;
  transition: color 0.2s ease-in-out;
}
.nav-link:hover,
.nav-link.active {
  color: #fff !important;
}

/* Section Page Header */

.page-header {
  background: var(--brown);
  color: #fff;
  padding: 18px 0;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.25);
}

.page-header__title {
  width: min(1160px, 92%);
  margin: 0 auto;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 800;
  font-size: clamp(24px, 3.6vw, 48px);
  color: #efefef;
  text-align: center;
}

/* =============================
   TOP ROW SECTION
============================= */
.top-row {
  background-color: var(--brown);
  color: #fff;
  font-size: 0.85rem;
  padding: 0.1rem 0;
  font-weight: 300;
}

.top-row__label {
  color: #ddd;
  margin-right: 0.25rem;
  font-weight: 500;
}

.top-row__link {
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s ease-in-out;
}
.top-row__link:hover {
  color: var(--red);
}

/* Layout & spacing */
.top-row__item {
  margin-right: 1rem;
  white-space: nowrap;
}

.top-row__right {
  display: flex;
  align-items: center;
  font-weight: 500;
  color: #d9d9d9;
}

.top-row__locations {
  white-space: nowrap;
}

/* Responsive behavior */
@media (max-width: 576px) {
  .top-row {
    text-align: center;
  }
  .top-row .container {
    flex-direction: column;
    gap: 0.25rem;
  }
  .top-row__right {
    margin-top: 0.25rem;
  }
}

/* Top Row Ends */

/* -------------------------------------------------
   Mobile CTA call buttons
-------------------------------------------------- */
.mobile-cta {
  background: transparent;
  color: #fff;
  padding: 10px;
  margin: 0 auto;
  width: 100%;
}
.mobile_cta-items {
  display: flex;
  gap: 1rem;
  justify-content: center;
  align-items: center;
}

.call-btn {
  display: block;
  width: 100%;
  text-decoration: none;
  color: #fff;
  background: var(--red); /* brand color */
  border-radius: var(--border-radius);
  padding: 0.85rem 1rem;
  transition: transform 0.08s ease, background-color 0.15s ease-in-out,
    box-shadow 0.15s ease-in-out;
}

.call-btn:hover,
.call-btn:focus {
  background: var(--red-hover);
  color: #fff;
  text-decoration: none;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
}

.call-btn:active {
  transform: translateY(1px);
}

/* Inner layout */
.call-btn__inner {
  display: grid;
  grid-template-rows: auto auto;
  justify-items: center;
  text-align: center;
  gap: 0.15rem;
}

.call-btn__label {
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.3px;
  opacity: 0.95;
}

.call-btn__number {
  display: inline-flex;
  align-items: center;
  font-weight: 600;
  font-size: 1.15rem;
  line-height: 1.2;
}

/* Location line under buttons */
.mobile-cta__location {
  color: #fff;
  font-weight: 500;
}

@media (max-width: 768px) {
  .mobile_cta-items {
    flex-direction: column;
  }
}

/* Mobile CTA Ends */

/* Red Banner Starts */

.red-banner {
  padding: 20px 2px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: var(--brand);
  color: #fff;
  text-align: center;
}

.red-banner__text1 p {
  font-size: 1.4rem;
  font-weight: 200;
}

.red-banner__text2 p {
  font-size: 1.8rem;
  font-weight: 300;
}

/* Red Banner Ends */

/* Text Page Starts */
.text-page {
  background: #f9f9f9;
  padding: 80px 0;
  color: #333;
  font-family: "Poppins", sans-serif;
}

.text-page__container {
  width: min(960px, 90%);
  margin: 0 auto;
  background: #fff;
  border-radius: var(--radius, 12px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  padding: 50px 60px;
}

.text-page__title {
  color: var(--brand, #c20f12);
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 700;
  text-align: center;
  margin-bottom: 30px;
}

.text-page p {
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 20px;
  color: #444;
}

.text-page p:last-child {
  margin-bottom: 0;
}

/* Responsive */
@media (max-width: 768px) {
  .text-page__container {
    padding: 40px 28px;
  }

  .text-page__title {
    font-size: 26px;
  }

  .text-page p {
    font-size: 15px;
    line-height: 1.7;
  }
}

/* Text Page Ends */
