/* ===== Import Google Font: Ruge Boogie ===== */
@import url('https://fonts.googleapis.com/css2?family=Ruge+Boogie&display=swap');

/* ===== Font Class ===== */
.ruge-boogie-regular {
  font-family: "Ruge Boogie", cursive;
  font-weight: 400;
  font-style: normal;
}

/* ===== General Page Styles ===== */
body {
  background-color: yellowgreen;
  font-family: Arial, sans-serif;
  margin: 0;
  color: #000;
}

/* ===== Logo ===== */
.site-logo {
  display: block;
  width: 100%;
  height: 200px;
  object-fit: cover;
  margin: 0;
  border-radius: 0;
}

/* ===== Header Navigation ===== */
header nav {
  margin-top: 40;
  text-align: center;
}

header nav ul {
  list-style: none;
  padding: 0;
}

header nav ul li {
  display: inline;
  margin: 0 15px;
}

a {
  color: darkred;
  text-decoration: none;
  font-weight: bold;
}

a:hover {
  text-decoration: underline;
}

/* ===== Headings ===== */
h1, h2, h3 {
  padding: 10px;
  border-radius: 10px;
  color: black;
}

h1 {
  background-color: purple;
}

h2 {
  background-color: teal;
}

/* ===== Footer ===== */
footer {
  margin-top: 40px;
  background-color: #ffcc80;
  padding: 20px;
  border-radius: 10px;
}

/* ===== Forms ===== */
form {
  margin-top: 10px;
}

textarea {
  width: 100%;
  height: 100px;
}

/* ===== Images in Content ===== */
img.content-img {
  max-width: 100%;
  height: auto;
  margin: 10px 0;
}

/* ===== Responsive Adjustments ===== */
@media screen and (max-width: 768px) {
  .tagline {
    font-size: 24px;
  }

  .site-logo {
    height: 150px;
  }
}

/* ===== Floating Buddy (Reggie) ===== */
.pet-section {
  position: fixed;
  bottom: 20px;     /* Distance from bottom of the screen */
  right: 20px;      /* Distance from right side of the screen */
  z-index: 1000;    /* Keep on top of other elements */
}

.pet-section iframe {
  border: none;
  width: 200px;     /* Adjust Reggie’s size */
  height: 200px;
  pointer-events: none; /* Prevent blocking clicks */
  animation: floaty 6s ease-in-out infinite; /* Floating motion */
}

/* Floating Animation */
@keyframes floaty {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0px); }
}


