/* 🌼 Base Body Styles */
body {
  font-family: 'Roboto', sans-serif;
  height: 100vh;
  background-image: url("images/spring.gif");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  color: #3e7c17; /* Fresh green spring text */
  position: relative;
}

/* 🌿 Optional Soft Overlay */
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.5); /* Spring glow */
  z-index: -1;
}

/* 🌷 Headings */
h1, h2 {
  font-family: 'Limelight', cursive;
  text-align: center;
  text-shadow: 1px 1px 3px #f9c5d1; /* Soft pink glow */
}

h1 {
  color: #190301;
  font-size: 44px;
}

h2 {
  margin: 0;
  font-size: 48px;
  color: #190301;
}

/* 🐾 Subheadings */
.number2,
.number3 {
  font-family: 'Limelight', cursive;
  margin: 0;
  font-size: 30px;
  color: #190301;
}


button {
  width: 45%;
  margin: 10px 5px;
  padding: 10px;
  background-color: #f4d19b;
  border: none;
  border-radius: 15px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s ease;
}

button:hover {
  background-color: #f0c57c;
}

/* 🐕 Paragraph Blocks */
p {
  max-width: 500px;
  margin: auto;
  padding: 20px;
  background-color: #fefef3;
}

/* 📸 Photos */
.photos {
  max-width: 50%;
  max-height: 20%;
  display: block;
  float: left;
}

#photo2 {
  float: right;
}

/* 🎉 Confirmation Section */
#yay {
  max-width: 500px;
  margin: auto;
  padding: 20px;
  background-color: #fefef3;
}

/* 📚 Custom Heading Sizes */
#h1 {
  font-size: 44px;
  color: #190301;
  text-align: center;
}

#h2 {
  font-size: 30px;
}

/* 🐶 Card Styling */
.card {
  background-color: #fffef3;
  border: 2px solid #cbe7c9;
  border-radius: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 128, 0, 0.1);
}

.card:hover {
  transform: translateY(-5px) rotate(-1deg);
  box-shadow: 0 8px 20px rgba(0, 128, 0, 0.15);
}

.card-body {
  flex: 1 1 auto;
}

/* 🌼 Seasonal Buttons */
.btn-spring {
  background-color: #f4c430;
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 10px 20px;
  transition: transform 0.2s ease;
}

.btn-spring:hover {
  transform: scale(1.05);
  background-color: #e3b100;
}

/* 🐝 Emoji Divider */
.emoji-line {
  font-size: 1.5rem;
  text-align: center;
  margin: 20px 0;
  color: #3e7c17;
}
/* 🌷 Main Spring Heading */
#main-heading {
  font-family: 'Limelight', cursive;
  font-size: 60px;
  color: #ea0707;
  text-shadow: 2px 2px 5px #bce3b7;
  animation: bloomIn 1s ease;
}

@keyframes bloomIn {
  0% {
    transform: scale(0.8);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
.btn {
  border-radius: 30px;
  padding: 10px 20px;
  font-size: 1.1rem;
}
 
body.indexpage {
  background-image: url('images/bg2.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.custom-btn {
  background-color: #ffffff;
  color: #0d6efd; /* Bootstrap blue */
  border: 2px solid #0d6efd;
  border-radius: 24px;
  font-weight: 500;
  transition: all 0.3s ease;
  text-decoration: none;
}

.custom-btn:hover {
  background-color: #0d6efd;
  color: #ffffff;
}

.btn-danger:hover {
  background-color: #d819df;
  box-shadow: 0 0 12px rgba(255, 145, 77, 0.6);
  transform: scale(1.05);
  transition: 0.3s ease;
}