/* Theme */
:root {
  --color-tan: #8b6b4e; /* dark tan */
  --color-creme: #f5efe6; /* creme */
  --color-black: #1a1a1a;
  --color-brown: #4a3a30;
  --max-width: 1100px;
  --radius: 10px;
  --shadow: 0 6px 20px rgba(0,0,0,0.08);
}

* { box-sizing: border-box; }

html, body { height: 100%; }

body {
  margin: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: var(--color-black);
  background: var(--color-creme);
  line-height: 1.6;
}

a { color: inherit; text-decoration: none; }

img { max-width: 100%; height: auto; display: block; }

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--color-creme);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  -webkit-backdrop-filter: saturate(180%) blur(8px);
  backdrop-filter: saturate(180%) blur(8px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo img {
  width: 52px;
  height: 52px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid var(--color-tan);
}

.brand {
  display: flex;
  flex-direction: column;
}

.brand .name {
  font-weight: 800;
  letter-spacing: 0.5px;
  color: var(--color-brown);
}

.brand .tagline {
  margin-top: 2px;
  font-size: 0.95rem;
  color: #6b5c52;
}

.nav-toggle {
  display: none;
  border: none;
  background: transparent;
  font-size: 28px;
  line-height: 1;
}

.nav {
  display: flex;
  gap: 18px;
  align-items: center;
}

.nav a {
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--color-black);
}

.nav a:hover, .nav a.active {
  background: #efe7dc;
}

/* Mobile nav */
@media (max-width: 820px) {
  .nav-toggle { display: block; }
  .nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--color-creme);
    border-bottom: 1px solid rgba(0,0,0,0.06);
    display: none;
    flex-direction: column;
    padding: 10px 20px 16px;
  }
  .nav.open { display: flex; }
}

/* Hero / Section */
.hero {
  background: linear-gradient(120deg, #efe7dc, #f8f4ee);
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 28px;
  padding: 36px 0 30px;
}

@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
}

.section {
  padding: 32px 0;
}

.section h2 {
  margin: 0 0 14px;
  font-size: 1.8rem;
  color: var(--color-brown);
}

.section h2 .paw { margin-left: 8px; }

.card {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 20px;
}

.grid {
  display: grid;
  gap: 20px;
}

.grid.two { grid-template-columns: repeat(2, 1fr); }
.grid.three { grid-template-columns: repeat(3, 1fr); }

@media (max-width: 900px) {
  .grid.two, .grid.three { grid-template-columns: 1fr; }
}

/* Buttons */
.button {
  display: inline-block;
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--color-tan);
  color: #fff;
  font-weight: 600;
  letter-spacing: 0.3px;
  transition: transform 0.05s ease, filter 0.15s ease;
}

.button:hover { filter: brightness(1.05); }
.button:active { transform: translateY(1px); }

.button.secondary { background: #2b2b2b; }

/* About images */
.dog-photo {
  border-radius: 50%;
  aspect-ratio: 1 / 1;
  box-shadow: var(--shadow);
  border: 3px solid var(--color-tan);
  position: relative;
  cursor: pointer;
  max-width: 200px;
  margin: 0 auto;
}

.dog-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.dog-photo::before {
  content: attr(data-tooltip);
  position: absolute;
  bottom: -120px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-brown);
  color: white;
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 0.85rem;
  white-space: normal;
  max-width: 200px;
  width: max-content;
  text-align: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 100;
  box-shadow: 0 6px 20px rgba(0,0,0,0.2);
  pointer-events: none;
  line-height: 1.4;
}

.dog-photo::after {
  content: '';
  position: absolute;
  bottom: -60px;
  left: 50%;
  transform: translateX(-50%);
  border: 6px solid transparent;
  border-bottom-color: var(--color-brown);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 100;
  pointer-events: none;
}

.dog-photo:hover::before,
.dog-photo:hover::after {
  opacity: 1;
  visibility: visible;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: #efe7dc;
  color: var(--color-brown);
  font-weight: 600;
}

/* Form */
.form {
  display: grid;
  gap: 16px;
}

.form .row {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(2, 1fr);
}

@media (max-width: 760px) {
  .form .row { grid-template-columns: 1fr; }
}

.label {
  display: block;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--color-brown);
}

.input, .select, .textarea {
  width: 100%;
  background: #fff;
  border: 1px solid #e5dfd6;
  border-radius: 10px;
  padding: 12px 14px;
  font-size: 1rem;
  outline: none;
}

.input:focus, .select:focus, .textarea:focus {
  border-color: var(--color-tan);
  box-shadow: 0 0 0 3px rgba(139,107,78,0.15);
}

.help {
  color: #6d635a;
  font-size: 0.92rem;
}

/* Table (schedule) */
.table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.table th, .table td {
  padding: 14px;
  border-bottom: 1px solid #eee5da;
  text-align: left;
}

.table thead th {
  background: #f6efe6;
  color: var(--color-brown);
}

/* Footer */
.footer {
  border-top: 1px solid rgba(0,0,0,0.06);
  padding: 26px 0;
  color: #5d5248;
}

/* Decorative paws as subtle background spots */
.paws-bg {
  position: relative;
}

.paws-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url('../assets/PawImage.png'), url('../assets/PawImage.png'), url('../assets/PawImage.png');
  background-repeat: no-repeat;
  background-size: 28px 28px, 20px 20px, 24px 24px;
  background-position: calc(100% - 30px) 20px, 30px calc(100% - 30px), calc(100% - 80px) calc(100% - 60px);
  opacity: 0.12;
  pointer-events: none;
}

/* Utilities */
.stack-sm { display: grid; gap: 6px; }
.stack { display: grid; gap: 10px; }
.stack-lg { display: grid; gap: 16px; }
.center { text-align: center; }
.muted { color: #6d635a; }

.spacer { height: 10px; }

/* Socials */
.socials {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.socials a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 12px;
  background: #fff;
  box-shadow: var(--shadow);
}

.socials svg { width: 22px; height: 22px; } 