.nav-list {
    list-style: none;
    text-justify: center;
    display: flex;
    flex-wrap: wrap;
    align-content: flex-start;
    justify-content: space-around;
    font-size: 25px;
    margin-right: 80px;
}



div {
    display: flex;
    justify-content: space-evenly; 
    align-items: center; 
    height: 100%; 
    padding: 0 10px;
    gap: 2.5px;
}

img {
    height: 800px;
    margin-top: 0;
}


.paw-stack {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.paw {
    width: 140px;
    height: auto;
    transition: opacity 0.4s ease;
}

.paw:hover {
    opacity: 0;
}


.paw:nth-child(1) {
    transform: translateX(-40px);
}

.paw:nth-child(2) {
    transform: translateX(40px);
}

.paw:nth-child(3) {
    transform: translateX(-40px);
}

h1 {
    font-size: 75px;
    margin-top: 70px;
    padding: 50px;
}

h2 {
    font-size: 45px;
    margin-top: 70px;
    padding: 50px;
}

.intro {
    font-size: 45px;
    display: block;
    margin-bottom: 20px;
}

p {
    max-width: 800px;
    margin: 0 auto 20px auto;
    line-height: 1.6;
    font-size: 25px;
}


button {
    width: 250px;
    height: 60px;
    font-size: 25px;
    margin-top: 50px;
    border-radius: 50px;
    background-color: #a6c0fe

}


nav ul li a {
    display: block;
    padding: 10px 15px;
    text-decoration: none;
    color: #000;
    
    transition: transform 0.5s ease;
}

nav ul li a:hover {
   
    transform: rotate(20deg);
}






/* TEST */



#animated-text span {
  display: inline-block;
  color: black; 
  transition: color 0.3s ease, transform 0.1s ease;
  -webkit-tap-highlight-color: transparent; 
  user-select: none;
  font-family: 'Poppins', "Comic Sans MS", "Chalkboard SE", "Comic Neue";

}


#animated-text {
  font-size: 150px; 
  color: black;
}

.pop {
  transform: translateY(-15px) scale(1.1); 
}

#animated-text span:hover{
    transform: scale(1.4);
}

/*.  TEST.  */




#animated-text span:hover{
    transform: scale(1.4);
}

.my-button {
  padding: 10px 20px;
  background-color: #007bff;
  color: white;
  border: none;
 
  transition: transform 0.2s ease-in-out; 
}

.btn {
    transition: all 0.4s;
}

.btn:hover {
  transform: scale(1.3); 
}

.container {
    text-align: center;
}

.container img {
    margin-bottom: 5px;
}

.text-content p {
    margin-top: 0;
}


@media (max-width: 768px) {
  h1 {
    font-size: 35px !important; /* Drastically smaller so it fits on one line */
    text-align: center;
  }
    
   h2 {
    font-size: 28px !important; /* Adjust this number until it fits nicely */
    text-align: center;
    line-height: 1.2;
    margin-bottom: 15px;
  }

   p span {
    font-size: 24px !important; /* Shrinks it to a readable mobile size */
    display: block;             /* Ensures it doesn't overlap other text */
    text-align: center;
  }

  /* This targets the rest of the paragraph text */
  p {
    font-size: 18px !important; 
    line-height: 1.6;           /* Adds space between lines for easier reading */
    padding: 0 15px;            /* Keeps text from touching the screen edges */
    text-align: center;
  }
  
  #animated-text {
    font-size: 45px !important; /* Shrinks the 170px text so it stops spilling */
    text-align: center;
    line-height: 1.2;
    display: block;
    width: 100%;
  }
/* MOBILE (Phone) */

  nav {
    width: 100% !important;
    display: flex !important;
    justify-content: space-around !important; /* Spreads links across the screen */
    padding: 10px 0;
    margin: 0;
  }

nav a {
    font-size: 16px; /* Ensure the links themselves aren't too huge for the phone */
  }

img {
    height: auto;      /* Essential: lets the height shrink naturally */
    width: 100%;       /* Makes the image fill the phone screen width */
    max-width: 400px;  /* Optional: keeps it from getting TOO big on large phones */
    display: block;
    margin: 0 auto;    /* Keeps it centered */
    }

  table, th, td {
    /* Shrink those 60px margins so they don't push the table off-screen */
    margin-left: 10px !important;
    margin-right: 10px !important;
    
    /* Shrink the font so the 'flex' boxes don't get too wide */
    font-size: 16px !important;
    
    /* Keep them centered but let them wrap if they run out of space */
    flex-wrap: wrap; 
  }
    .prices-content img {
        height: auto !important; /* Fixes 800px height for phones */
    }

  .grid-container {
    display: flex !important;
    flex-direction: column !important; /* Stacks images vertically */
    align-items: center !important;    /* Centers them perfectly */
    width: 100% !important;
    gap: 20px;
  }

  .grid-container img {
    width: 90% !important; /* Makes images large but keeps a small gap on sides */
    margin: 0 auto;
  }
}
   




