/* 🐾 Universal Styling */
body {
  font-family: 'Segoe UI', sans-serif;
  color: #3a2c22;
  padding: 30px;
  margin: 0;
}

/* 🎁 AdoptMe Page */
body.adoptme {
  background: linear-gradient(to bottom, #d2e907, #f30505);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

/* ⛄ MeetMe Page */
body.meetme {
  background: linear-gradient(to bottom, #05cbfd, #ffffff);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

/* 🐶 aboutme Page */
body.aboutme {
  background: linear-gradient(to bottom, #edda09, #e5b509);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

/* 🎀 Headings */
h1, h2, h3 {
  font-family: 'Limelight', cursive;
  text-align: center;
  font-size: 2.2rem;
  color: #d90429;
  margin-bottom: 20px;
}

/* 🧡 Labels & Fields */
label {
  font-weight: 600;
  font-size: 0.95rem;
  color: #6e3b1e;
  margin-top: 12px;
  display: block;
}

input, select, textarea {
  width: 100%;
  padding: 8px 10px;
  border: 2px solid #d90429;
  border-radius: 8px;
  font-size: 0.95rem;
  background-color: #fffaf6;
  box-sizing: border-box;
  margin-top: 6px;
}

textarea {
  resize: vertical;
}

/* 🐾 Input Focus Enhancement */
input:focus, textarea:focus {
  outline: none;
  border-color: #a92c1c;
  box-shadow: 0 0 4px rgba(217, 4, 41, 0.2);
}

/* 🎁 Submit Buttons */
input[type="submit"], .buttons a button {
  background-color: #d90429;
  color: white;
  font-weight: bold;
  border: none;
  border-radius: 8px;
  padding: 10px 20px;
  font-size: 0.95rem;
  margin-top: 20px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

input[type="submit"]:hover, .buttons a button:hover {
  background-color: #a92c1c;
}

/* 🐕 Profile Cards & Form Wrappers */
.form-wrapper, .puppy-card, form {
  max-width: 500px;
  margin: auto;
  background-color: #ffffff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 0 12px rgba(0,0,0,0.08);
  text-align: center;
}

/* 🖼 Puppy Image */
img {
  max-width: 280px;
  width: 90%;
  border-radius: 10px;
  margin-bottom: 20px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

/* 🐾 Info Section */
.info {
  text-align: left;
  font-size: 1rem;
  margin-top: 15px;
}
.info strong {
  color: #b00320;
}

/* 🐶 Decorative Divider */
hr {
  border: none;
  height: 6px;
  background: url('images/paw-divider.png') repeat-x;
  margin: 25px 0;
}

/* 🎄 Dashed Form Border */
form {
  border: 2px dashed #d90429;
  background-color: #fff8f0;
}
/* 🐾 Journey Tracker Styling */
#currentStepBox ul {
  list-style: none;
  padding-left: 0;
  font-weight: bold;
  font-size: 1rem;
  margin-top: 20px;
}

#currentStepBox li {
  margin-bottom: 6px;
  color: #bbb; /* default gray for future steps */
}

body.checkspot {
      background-color: #fffef3;
      font-family: 'Roboto', sans-serif;
      padding: 40px;
      text-align: center;
    }
    .card {
      max-width: 650px;
      margin: auto;
      padding: 30px;
      border-radius: 15px;
      box-shadow: 0 0 12px rgba(0,0,0,0.2);
      background-color: #fffef9;
    }
    #resultBox {
      margin-top: 20px;
      font-size: 1.2rem;
      font-weight: bold;
      color: #d90429;
    }
    #leaveBtn {
      margin-top: 20px;
    }
    #currentStepBox ul {
      list-style: none;
      padding-left: 0;
      font-weight: bold;
      font-size: 1rem;
      margin-top: 20px;
    }
    #currentStepBox li {
      margin-bottom: 6px;
      color: #bbb;
    }
    .step-done {
      color: #000;
    }
    .step-current {
      color: #28a745;
    }
    /* 🧁 Button Variants */
.visit-btn {
  background-color: #00bcd4; /* Ice blue for visit */
  color: white;
}
.visit-btn:hover {
  background-color: #0097a7;
}

.adopt-btn {
  background-color: #ff9800; /* Golden orange for adoption */
  color: white;
}
.adopt-btn:hover {
  background-color: #e68300;
}

.sibling-btn {
  background-color: #4caf50; /* Green for family ties */
  color: white;
}
.sibling-btn:hover {
  background-color: #388e3c;
}
/* 📱 Mobile-Friendly Styling */
@media (max-width: 600px) {
  body {
    padding: 20px;
  }

  body.adoptme,
  body.meetme,
  body.aboutme,
  body.checkspot {
    padding-top: 100px; /* Room under fixed nav */
  }

  nav div {
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }

  nav .btn {
    min-width: 90%;
    font-size: 1rem;
    margin: 6px 0;
    padding: 8px 12px;
  }

  h1, h2, h3 {
    font-size: 1.6rem;
    line-height: 1.3;
    margin-bottom: 16px;
  }

  .puppy-card,
  .form-wrapper,
  .card,
  form {
    margin: 20px 10px;
    padding: 15px;
  }

  img {
    width: 100%;
    max-width: 100%;
    margin-bottom: 20px;
  }

  .info {
    font-size: 0.95rem;
  }

  footer,
  #resultBox {
    font-size: 1rem;
    padding: 20px;
  }

  input[type="submit"],
  .buttons a button {
    width: 100%;
    font-size: 0.95rem;
    padding: 10px;
  }

  #currentStepBox li {
    font-size: 0.9rem;
  }
}