@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');

:root {
  --rtm-navy: #2b2c64;
  --rtm-dark: #292933;
  --rtm-orange: #e8632a;
  --rtm-orange-dark: #c9521e;
}

/* ── Base ── */
body {
  font-family: 'Open Sans', sans-serif;
  color: #222;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
}

/* ── Navbar ── */
.navbar-brand img {
  height: 56px;
  width: auto;
}

.navbar-nav .nav-link {
  color: var(--rtm-navy) !important;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.03em;
  padding: 0.5rem 1rem;
  transition: color 0.2s;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--rtm-orange) !important;
}

/* ── Buttons ── */
.btn-cta {
  background-color: var(--rtm-orange);
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  letter-spacing: 0.06em;
  border: none;
  padding: 0.75rem 2rem;
  transition: background-color 0.2s;
}

.btn-cta:hover,
.btn-cta:focus {
  background-color: var(--rtm-orange-dark);
  color: #fff;
}

/* ── Hero ── */
.hero-section {
  position: relative;
  min-height: 800px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
}

.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 0;
}

.hero-section .hero-content {
  position: relative;
  z-index: 1;
}

.hero-section .hero-splash-logo {
  max-width: 480px;
  width: 100%;
  height: auto;
  margin-bottom: 1.5rem;
}

/* ── Section shared ── */
.section-heading {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: var(--rtm-navy);
  margin-bottom: 2.5rem;
}

/* ── Products ── */
#our-products {
  padding: 5rem 0;
  background-color: #f8f9fa;
}

.product-card {
  border: none;
  border-radius: 0;
  overflow: hidden;
  box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.4);
  height: 100%;
}

.product-card .card-img-top {
  height: 213px;
  object-fit: cover;
  border-radius: 0;
}

.product-card .card-body {
  background-color: var(--rtm-dark);
  color: #fff;
  padding: 1.25rem 1.5rem;
}

.product-card .card-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: #fff;
  margin-bottom: 0.5rem;
}

.product-card .card-text {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.5;
}

/* ── About ── */
.section-about {
  background-color: var(--rtm-dark);
  color: #fff;
  padding: 5rem 0;
}

.section-about h2 {
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
}

.section-about p {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.8;
}

.section-about .about-img {
  width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

/* ── Contact ── */
#contact {
  padding: 5rem 0;
}

#contact h2 {
  color: var(--rtm-navy);
}

.contact-info {
  font-size: 0.95rem;
  line-height: 2;
  margin-bottom: 2rem;
}

.contact-info strong {
  font-family: 'Montserrat', sans-serif;
  display: block;
  font-size: 1.1rem;
  color: var(--rtm-navy);
  margin-bottom: 0.25rem;
}

.contact-map {
  width: 100%;
  height: 420px;
  border: none;
  border-radius: 8px;
}

/* ── Footer ── */
footer {
  background-color: var(--rtm-navy);
  color: rgba(255, 255, 255, 0.85);
  padding: 2rem 0;
  font-size: 0.875rem;
  text-align: center;
}

footer a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  transition: color 0.2s;
}

footer a:hover {
  color: #fff;
}

/* ── Responsive ── */
@media (max-width: 767px) {
  .hero-section {
    min-height: 500px;
  }

  .hero-section .hero-splash-logo {
    max-width: 280px;
  }

  .product-card .card-img-top {
    height: 180px;
  }

  .contact-map {
    height: 300px;
    margin-top: 2rem;
  }
}
