:root {
  --cream: #FEF9E1;
  --beige: #E5D0AC;
  --red: #A31D1D;
  --oxblood: #6D2323;
  --ink: #232323;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--cream);
  color: var(--ink);
  font-family: "Open Sans", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  line-height: 1.6;
}

.font-jost {
  font-family: "Jost", sans-serif;
}

.dark-red {
  color: var(--oxblood);
}

a {
  color: var(--oxblood);
}

a:hover {
  color: var(--red);
}

/* Header / Navbar */
.rtb-navbar {
  background: var(--cream);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.rtb-navbar .nav-link {
  color: var(--oxblood);
  font-weight: 600;
}

.rtb-navbar .nav-link:hover,
.rtb-navbar .nav-link:focus {
  color: var(--red);
  text-decoration: none;
}

/* Banner */
.rtb-hero {
  position: relative;
  background: url("/assets/images/bakes/cakes/Girl_BirthdayCake.jpg") center/cover no-repeat;
  min-height: 46vh;
  display: grid;
  place-items: center;
  text-align: center;
  border-radius: 1rem;
  overflow: hidden;
}

.rtb-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(35, 35, 35, 0.35), rgba(35, 35, 35, 0.85));
}

.rtb-hero__content {
  position: relative;
  z-index: 2;
  color: #fff;
  padding: 5rem 1rem;
}

.rtb-hero__title {
  font-size: clamp(2rem, 4vw, 3rem);
}

/* Section helpers */
.rtb-section {
  padding: 0 0 4rem;
}

.rtb-section--alt {
  background: var(--beige);
  padding: 2rem 2rem 4rem;
  border-radius: 1rem;
  margin-bottom: 4rem;
}

.rtb-eyebrow {
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--oxblood);
  font-weight: 700;
  font-size: 0.9rem;
}

.rtb-title {
  font-family: "Jost", sans-serif;
  font-weight: 700;
  color: var(--oxblood);
}

/* Cards */
.rtb-card {
  border: none;
  border-radius: 1rem;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  height: 100%;
}

.rtb-card img {
  object-fit: cover;
  width: 100%;
  height: 400px;
}

.rtb-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--cream);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 999px;
  padding: 0.35rem 0.75rem;
  font-weight: 600;
  color: var(--oxblood);
  font-size: 0.9rem;
}

/* Buttons */
.btn-rtb {
  background: var(--red);
  color: #fff;
  border: none;
  font-weight: 700;
}

.btn-rtb:hover,
.btn-rtb:focus {
  background: #8c1919;
  color: #fff;
}

/* Gallery */
.rtb-gallery img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 0.75rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.rtb-gallery a:focus img,
.rtb-gallery img:hover {
  transform: scale(1.02);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.15);
}

/* Testimonials */
.rtb-quote {
  background: #fff;
  border-radius: 1rem;
  padding: 1.25rem 1.25rem 1rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.rtb-quote i {
  color: var(--red);
}

/* Footer */
.rtb-footer {
  background: var(--oxblood);
  color: #fff;
}

.rtb-footer a {
  color: #fff;
  text-decoration: none;
}

.rtb-footer a:hover,
.rtb-footer a:focus {
  text-decoration: underline;
}

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

/*# sourceMappingURL=redbakes.css.map */