/* PawTrainPro – Custom styles. No scrollbar color changes. */

:root {
  --sage: #7A9E7E;
  --sage-dark: #5C7D5F;
  --terracotta: #C4A77D;
  --terracotta-dark: #A68B5E;
  --cream: #F5F0E8;
  --cream-dark: #E8E0D4;
  --charcoal: #2D3436;
  --charcoal-light: #4A5356;
}

body {
  font-family: "Georgia", "Times New Roman", serif;
  color: var(--charcoal);
  background: var(--cream);
}

.font-sans-alt {
  font-family: "Segoe UI", "Helvetica Neue", sans-serif;
}

/* Bento-style grid */
.bento {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(12, 1fr);
}

.bento-cell {
  background: #fff;
  border-radius: 1rem;
  padding: 1.5rem 2rem;
  box-shadow: 0 4px 20px rgba(45, 52, 54, 0.06);
  border: 1px solid rgba(122, 158, 126, 0.15);
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.bento-cell--sage {
  background: linear-gradient(135deg, rgba(122, 158, 126, 0.12) 0%, rgba(196, 167, 125, 0.08) 100%);
  border-color: rgba(122, 158, 126, 0.25);
}

/* Clickable card link */
.bento-cell-link {
  display: block;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

.bento-cell-link:hover {
  text-decoration: none;
}

.bento-cell-link h3 {
  color: var(--sage-dark);
  text-decoration: none;
}

.bento-cell-link:hover h3 {
  text-decoration: underline;
}

/* Diagonal hero */
.hero-diagonal {
  clip-path: polygon(0 0, 100% 0, 100% 92%, 0 100%);
  background: linear-gradient(145deg, var(--sage-dark) 0%, var(--sage) 50%, var(--terracotta) 100%);
  color: #fff;
}

/* Asymmetric layout */
.asymmetric-left {
  margin-right: 8%;
}

.asymmetric-right {
  margin-left: 8%;
}

/* Card hover */
.bento-cell:hover {
  box-shadow: 0 8px 32px rgba(45, 52, 54, 0.1);
  transform: translateY(-2px);
}

/* Nav */
.nav-link {
  color: var(--charcoal);
  text-decoration: none;
  font-family: "Segoe UI", sans-serif;
  font-weight: 500;
  padding: 0.35rem 0.75rem;
  border-radius: 0.5rem;
  transition: background 0.2s, color 0.2s;
}

.nav-link:hover {
  background: rgba(122, 158, 126, 0.15);
  color: var(--sage-dark);
}

/* Footer */
.footer-bg {
  background: linear-gradient(180deg, var(--cream-dark) 0%, #ddd8ce 100%);
  border-top: 1px solid rgba(122, 158, 126, 0.2);
}

/* Section titles */
.section-title {
  font-family: "Georgia", serif;
  color: var(--sage-dark);
  font-weight: 600;
}

/* Accent underline */
.accent-underline {
  display: inline-block;
  position: relative;
}

.accent-underline::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--sage), var(--terracotta));
  border-radius: 2px;
}

/* Responsive bento */
@media (max-width: 768px) {
  .bento {
    grid-template-columns: 1fr;
  }
  .hero-diagonal {
    clip-path: polygon(0 0, 100% 0, 100% 96%, 0 100%);
  }
  .asymmetric-left,
  .asymmetric-right {
    margin-left: 0;
    margin-right: 0;
  }
}
