:root {
  --bg-main: #0e0e0e;
  --bg-secondary: #1a1a1a;
  --main-color: #a7443e;
  --accent-charcoal: #3a3a3a;
  --accent-gold: #caa24d;
  --text-main: #ffffff;
  --text-muted: #b5b5b5;
  --bg-alt: #262320;

  --small-font: 0.875rem;
  --base-font: 1rem;
  --large-font: 1.25rem;
}

body {
  margin: 0;
  padding: 0;
  color: white;
  background-color: black;
  font-family: "Lato", "Baloo 2", "Pacifico", sans-serif;
  font-weight: 400;
  line-height: 1.6;
  color: var(--text-main);
  background-color: var(--bg-main);
}

/* Optional: headings use the first available decorative font automatically */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Pacifico", "Baloo 2", sans-serif;
  margin: 0;
}

/* Links / buttons inherit the body font unless specified */
a,
button {
  font-family: inherit;
}

.welcome__container {
  overflow: hidden;
  height: 100vh;
}

/* ===== FRONT LAYER ===== */
.welcome__text,
.welcome__img {
  position: absolute;
  left: 0;
  width: 100%;
  z-index: 2; /* ON TOP */
}

/* TEXT */
.welcome__text {
  top: 0;
  height: 30%;
  font-size: 5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 2s ease-in-out;
  background-color: var(--main-color);
}

/* IMAGE */
.welcome__img {
  bottom: 0;
  height: 70%;

  transition: transform 2s ease-in-out;
  background-color: var(--main-color);
}

.welcome__img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* TRANSITIONS */
.text-hide {
  transform: translateY(-100%);
}

.img-hide {
  transform: translateY(100%);
}

/* ===== BACK LAYER ===== */
.content__container {
  background-color: var(--bg-secondary);
  position: absolute;
  inset: 0;
  overflow-y: auto; /* 👈 THIS IS KEY */
  -webkit-overflow-scrolling: touch; /* smooth mobile scroll */
}
