/* includes.css */
.header{
  background: linear-gradient(145deg, rgba(246,236,245,.92) 0%, rgba(232,211,227,.88) 100%);
  border-radius: 4rem 4rem 2rem 2rem;
  padding: 2rem 2.5rem 1.5rem;
  margin-bottom: 2.5rem;
  box-shadow: 0 14px 30px rgba(0,0,0,.35);
  border: 1px solid rgba(185,155,179,.35);
  backdrop-filter: blur(6px);
}

.header-content{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.title-block{
  display: flex;
  flex-direction: column;
}

.kennel-name-elegant{
  font-family: 'Parisienne', 'Great Vibes', 'Allura', 'Sacramento', 'Dancing Script', 'Brush Script MT', cursive;
  font-size: 5rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 1.2px;
  margin-bottom: 0.3rem;
  background: linear-gradient(135deg, var(--mauve-deep), var(--mauve-mid));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 3px 3px 10px rgba(185,155,179,.55);
  filter: drop-shadow(2px 2px 4px rgba(232,211,227,.7));
}

.title-block h1{
  font-size: 2rem;
  font-weight: 400;
  color: var(--mauve-charcoal);
  font-family: 'Georgia', 'Times New Roman', serif;
  border-left: 5px solid var(--mauve-mid);
  padding-left: 1.2rem;
  line-height: 1.2;
  margin: 0;
}

.title-block h1 span{
  font-weight: 300;
  font-size: 1.5rem;
  color: var(--mauve-deep);
  display: block;
  line-height: 1.3;
  font-family: 'Segoe UI', Roboto, sans-serif;
}

.title-block .motto{
  font-style: italic;
  margin-top: 0.3rem;
  color: rgba(75,60,72,.85);
  padding-left: 1.8rem;
  font-size: 1.1rem;
}

.nav-links{
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  background: rgba(253,250,255,.72);
  padding: 0.7rem 1rem;
  border-radius: 6rem;
  border: 1px solid rgba(185,155,179,.45);
  box-shadow: inset 0 1px 3px rgba(255,255,255,.7), 0 6px 14px rgba(0,0,0,.18);
  margin-left: auto;
  backdrop-filter: blur(6px);
}

.nav-links a{
  text-decoration: none;
  font-weight: 600;
  font-size: 1.15rem;
  padding: 0.55rem 1.6rem;
  border-radius: 4rem;
  color: #3a2938;
  background: transparent;
  transition: 0.2s;
  border: 1px solid transparent;
}

.nav-links a:hover,
.nav-links a.active{
  background: var(--mauve-deep);
  color: white;
  border: 1px solid rgba(75,60,72,.25);
  box-shadow: 0 4px 12px rgba(127,96,123,.55);
}

.footer{
  margin-top: 4rem;
  background: rgba(47,34,48,.92);
  border-radius: 3rem 3rem 1.5rem 1.5rem;
  padding: 2rem 2.5rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  border: 1px solid var(--body-border);
  color: var(--body-text-muted);
  font-size: 1rem;
  gap: 1rem;
  box-shadow: 0 18px 40px -22px rgba(0,0,0,.75);
  backdrop-filter: blur(6px);
}

.footer .stud-info{
  font-weight: 600;
  color: var(--body-text);
  background: rgba(0,0,0,.18);
  padding: 0.35rem 1.5rem;
  border-radius: 3rem;
  border: 1px solid rgba(185,155,179,.45);
}

.footer a{
  color: var(--body-text);
  text-decoration: underline 2px rgba(185,155,179,.55);
  text-underline-offset: 4px;
}

.footer small{
  opacity: 0.8;
}

@media (max-width: 750px){
  .header-content{
    flex-direction: column;
    align-items: start;
    gap: 1.2rem;
  }

  .nav-links a{
    padding: 0.5rem 1.2rem;
    font-size: 1.05rem;
  }

  .kennel-name-elegant{
    font-size: 4rem;
  }
}