body {
  min-height: 100vh;
  background: 
    repeating-linear-gradient(
      120deg, 
      transparent 0 60px,
      #ffe7fa 60px, 
      #ffe7fa 70px,
      transparent 70px 130px
    ),
    linear-gradient(135deg, #fdf6e3 0%, #ffe7fa 100%);
  background-blend-mode: lighten;
  /* Optional: add more transparency to stripes by using rgba */
}

.header-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #ff69b4;
  height: 120px;      /* or adjust as you like */
  padding: 0 32px;
  position: relative;
  z-index: 2;
}

/* Logo */
.logo {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
}

.logo img {
  width: 250px;      /* Control logo size here */
  height: 250px;
  border-radius: 0px;
  object-fit: cover;
  box-shadow: 0 0px 0px;
  background: ;
  margin-top: -40px; /* makes it hover/float above the nav */
}
.logo-float img {
  width: 250px;
  height: 250px;
  border-radius: ;
  object-fit: cover;
  box-shadow: ;
  background: ;
  display: block;
}

/* Center nav links horizontally */
.nav-center {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 36px;
}

/* Nav link styles */
.nav-center a {
  color: #fff;
  text-decoration: none;
  font-size: 1.2em;
  font-weight: bold;
  padding: 10px 18px;
  border-radius: 10px;
  transition: background 0.2s, color 0.2s;
}

.nav-center a:hover {
  background: #ffe7fa;
  color: #ff69b4;
}

/* Login/Register button styles */
.login {
  display: flex;
  align-items: center;
}

.login a {
  color: #ff69b4;
  background: #fff;
  padding: 10px 22px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.2s, color 0.2s;
  font-size: 1.1em;
  border: none;
  margin-left: 12px;
}

.login a:hover {
  background: #ffd166;
  color: #ff69b4;
}
.search-btn {
  color: #ff69b4;
  background: #fff;
  padding: 10px 22px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background 0.2s, color 0.2s;
  border: none;
  margin-left: 8px;
  cursor: pointer;
}
.search-btn:hover {
  background: #ffd166;
  color: #ff69b4;
}

.banner {
  text-align: center;
  background: #fff2e2;
  padding: 40px 20px;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  margin-top: 30px;
}
.puppy-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 20px #ff69b45c;
  padding: 20px;
  width: 220px;
  box-sizing: border-box;
  text-align: center;
  transition: transform 0.2s;
  margin: 0 auto; /* Center cards if column is wide */
}
.puppy-card img {
  width: 100%;
  border-radius: 12px;
  margin-bottom: 10px;
}
.puppy-card:hover {
  transform: scale(1.05);
}

.disclaimer {
  background: #ffefb0;
  padding: 20px 40px;
  margin: 40px 0 0 0;
  text-align: center;
  font-size: 1em;
  border-top: 2px solid #ffd166;
}

footer {
  background: #ff69b4;
  color: #fff;
  text-align: center;
  padding: 20px;
  margin-top: 40px;
  font-size: 1em;
}
