/* =============================================================
   THE CONTROL PANEL
   These are CSS variables. Every colour and font on the site
   points back to this block. Change a value here, save, and
   watch the whole site update at once.

   TODO (Day 2): Swap these grey placeholders for the palette
   and fonts from your team's Design Brief.
   ============================================================= */
:root {
  --color-background: #f8f8f7; /* page background */
  --color-primary: #ffae03; /* hero section */
  --color-accent: #ffae03; /* call-to-action section */
  --color-text: #5c4005aa; /* body text */
  --font-heading: "Doto", Arial, sans-serif;
  --font-body: "Space Mono", Georgia, serif;
}
/* === WHOLE PAGE === */
body {
  background-color: var(--color-background);
  color: var(--color-text);
  font-family: var(--font-body);
  background-image: url(backroundV3.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
  max-height: 9600px;
}

/*h1:hover{
  color: #8b6220 
  transform: scale(1.05);
}
  ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  */

h1,
h2 {
  font-family: var(--font-heading);
  text-align: center;
}

/* Images never overflow their section. */
img {
  max-width: 100%;
  width: 300px;
  border-radius: 8px;
  margin: 5px;
  transition: transform 0.3s ease-in-out;
}

img:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 8px rgb(0, 0, 0, 0.4);
}

/* === HERO SECTION === */
.hero {
  background-color: var(--color-primary);
  color: var(--color-text);
  text-align: center;
}

/* === WHY IT MATTERS SECTION === */

/* === CALL TO ACTION SECTION === */
.cta {
  background-color: var(--color-accent);
  color: var(--color-text);
  text-align: center;

  padding: 50px 40px;
  margin-top: 20px;
}
.cta-button {
  display: inline-block;
  margin-top: 20px;
  padding: 16px 40px;
  background-color: #e27303;
  color: #000000e8;
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: bold;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}
.cta-button:hover {
  background-color: #ff9900;
  transform: scale(1.05) translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 240, 125, 0.6);
}

.cta a {
  color: #000000;
  font-weight: bold;
}

#catImg {
  display: flex;
  justify-content: center;
  align-items: center;
}

#dogImg {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* =============================================================
   Notice what is NOT here yet: no spacing, no rounded corners,
   no shadows, no layout, no motion. That is the rest of your
   week. Day 3: spacing & decoration. Day 4: layout & motion.
   ============================================================= */
