/* app/static/css/style.css */

/* Reset some defaults to keep things tidy */
* {
  box-sizing: border-box;           /* Includes padding & border in width/height */
  margin: 0;
  padding: 0;
}

/* Full-page yellow background */
body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #ffd800;              /* Strong yellow background */
  color: #111;                      /* Dark text for contrast */
  line-height: 1.6;
}

/* Top header container with margin all around
   to create the floating black-framed bar effect */
.site-header {
  margin: 10px auto 20px auto;      /* Top/bottom margin, centered */
  max-width: 1200px;                /* Controls how wide the header can get */
  border: 4px solid #000;           /* Thick black border like your WP theme */
  background: #ffe766;              /* Slightly lighter yellow inside header */
}

/* Header layout: left content + right logo */
.header-inner {
  display: flex;                 /* put left + right side in a row */
  align-items: center;           /* vertically center everything */
  justify-content: space-between;/* push left and right apart */
  gap: 24px;                     /* space between text block and logo */
}

/* Main site title styling */
.site-title {
  font-size: 1.5rem;
  font-weight: 800;
  text-transform: uppercase;
}

/* Small tagline text */
.site-tagline {
  font-size: 0.8rem;
  margin-top: 5px;
}

/* Navigation bar inside the header */
.site-nav {
  margin-top: 10px;
}

/* Nav links */
.site-nav a {
  text-decoration: none;
  margin: 0 10px;
  font-size: 0.9rem;
  font-weight: 600;
  color: #111;
}

/* Hover effect for nav links */
.site-nav a:hover {
  text-decoration: underline;
}

/* Main content outer wrapper:
   another floating black-framed box */
.content-wrapper {
  max-width: 1200px;                /* Same width as header for alignment */
  margin: 0 auto 40px auto;         /* Centered with bottom spacing */
  border: 4px solid #000;
  background: #ffffff;              /* White content area */
}

/* Inner padding for the content */
.content-inner {
  padding: 30px 40px;
}

/* Headings styling */
.content-inner h1 {
  margin-bottom: 20px;
  font-size: 2rem;
}

/* Paragraph spacing */
.content-inner p {
  margin-bottom: 16px;
}

/* Links inside content */
.content-inner a {
  color: #bb0000;
  font-weight: 600;
}

.content-inner a:hover {
  text-decoration: underline;
}

/* Simple centered image container */
.image-wrapper {
  margin: 20px auto;
  text-align: center;
}

/* Make images responsive up to container width */
.image-wrapper img {
  max-width: 100%;
  height: auto;
  border-radius: 4px;
}
.site-logo {
  margin-top: 10px;
}
/* Header layout: left content + right logo, all inside the black border */
.header-inner {
  display: flex;                 /* put children (header-left + site-logo) in a row */
  align-items: center;           /* vertically center them */
  justify-content: space-between;/* push left and right apart */
  gap: 20px;                     /* space between left block and logo */
}

/* Left side: title + tagline + menu stacked */
.header-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;       /* left-align text on desktop */
  text-align: left;
  flex: 1 1 0;                   /* take remaining space */
  min-width: 260px;              /* stop it getting too skinny */
}

/* Logo on the right */
.site-logo {
  flex: 0 0 auto;                /* don’t stretch it */
}
.site-logo img {
  height: 80px;                  /* tweak to taste */
  width: auto;
  border-radius: 8px;
}
@media (max-width: 768px) {
  /* Stack header content vertically on small screens */
  .header-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;          /* center text on mobile */
  }

  .header-left {
    align-items: center;         /* center title + tagline + nav */
    text-align: center;
  }

  .site-logo {
    margin-top: 8px;
  }

  /* Make the nav behave nicely on mobile */
  .site-nav {
    margin-top: 8px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
  }
}

/* Top-down wandering dog */
.dog-walker{
  position: fixed;
  left: 0;
  top: 0;
  z-index: 9999;              /* behind header/cards if they’re higher; raise if needed */
  pointer-events: none;
  opacity: 0.85;
  background-repeat: no-repeat;
  background-position: 0% 0%;
  transform-origin: 50% 50%;
  filter: drop-shadow(0 8px 16px rgba(0,0,0,0.45));
}
