body {
    height: 100vh;
    width: 100vw;
    background: #000000;
}
a{
  text-decoration: none;
  color: inherit;
}

#nav {
    width: 100%;
    background-image: linear-gradient(to bottom, #74663d, rgb(72 72 72));
    height: 7vh;
}

/* #logo-set{
    position: relative;
    top: 50%;
    left: 50%;
    transform: translate(-30%, -85%);
    background-color: turquoise;
} */

#nav ul li {
    border-radius: 30px;
    cursor: pointer;
    padding: 18px;
    transition: 0.9s;
    font-size: 140%;
    list-style-type: none;
    font-family: cursive;
    font-weight: 700;
    text-align: -webkit-center;
}

#nav ul li:hover {
    background-color: #FEA84A;
    color: white ;
    /* background: linear-gradient(to left, #FEA84A 50%, #746352 50%); */
    background: linear-gradient(to right, #746352 50%, #FEA84A 50%); 

    background-size: 200% ;
    /* Position the gradient to show the initial color (e.g., red) */
    background-position: right bottom;
    /* Add a smooth transition effect for the background position */
    transition: background-position 0.5s ease-in-out;
}
#nav ul {
    display: flex;
    flex-direction: row;
    width: 60%;
    position: relative;
    top: 50%;
    left: 50%;
    gap: 5%;
    transform: translate(-50%, -50%);
    justify-content: space-around;
    align-items: center;
    margin-left: 0px;
}

.item{
    width: 45% ;
}

main {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-around;
    height: 60vh;
    gap: 20px;
}

#logo-reel {
    transform-origin: center;
    animation: spin 5s linear infinite;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

#logo {
    width: 700px;
    height: 550px;
    margin: 40vh 0px 0vh 0px;
    transform: translate(0%, -50%);
    opacity: .8;
}


#span1 {
    position: relative;
    background-color: rgb(87, 53, 13);
    left: -27%;
    top: 103px;
}

#span2 {
    display: block;
    position: relative;
    background-color: rgb(87, 53, 13);
    left: 130px;
    top: 155px;
    height: 17px;
    z-index: 1;
    width: 322px;
}
/* #nav ul li a:hover{
border:2px solid #FEA84A;
transition:height 0.25s ease-out, width 0.25s ease-out 0.25s;
} */





@keyframes heartbeat
{
  0% {
    transform: scale( .85 );
  }
  15% {
    transform: scale( 1 );
  }
  30% {
    transform: scale( .95 );
  }
  45% {
    transform: scale( 1 );
  }
  60% {
    transform: scale( .90 );
  }
  75% {
    transform: scale( .80 );
  }
  100% {
    transform: scale( .75 );
  }


}
#title {
    width: 698px;
    margin-left: 75px;
    transform: translate(0%, 0);
    opacity: 0.9;
}

#light {
    position: relative;
    width: 4px;
    height: 100px;
    /* background-color: #72ffff; */
    box-shadow: 20px 1px 26px 15px #e2b88a;
    left: 605px;
    top: -212px;
    animation: heartbeat 5s ease-in-out infinite;
}




/* Cat gallery */
.cat-gallery {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 24px;
  align-items: center;
}
.cat-img{
  width: 200px;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.6);
}
@media (max-width:600px) {
  .cat-img { width: calc(50% - 8px); height: 150px; }
}
.error { color: #fee; }


#cats{
    /* background-color: #e2b88a; */
    width: 45%;
    height: 60vh;
} 

.img-card {
    width: 100%;
    height: 200%;
    margin-top: 72px;
    margin-left: 10%;
}


/*-----------------show slider------------------------------
.mySlides {display: none;}
img {vertical-align: middle;}

/* Slideshow container */
.slideshow-container {
  max-width: 1000px;
  position: relative;
  margin: auto;
}

/* Caption text */
.text {
  color: #f2f2f2;
  font-size: 15px;
  padding: 8px 12px;
  position: absolute;
  bottom: 8px;
  width: 100%;
  text-align: center;
}

/* Number text (1/3 etc) */
.numbertext {
  color: #f2f2f2;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}

/* The dots/bullets/indicators */


.active {
  background-color: #717171;
}

/* Fading animation */
.fade {
  animation-name: fade;
  animation-duration: 1.5s;
}

@keyframes fade {
  from {opacity: .4} 
  to {opacity: 1}
}

/* On smaller screens, decrease text size */
@media only screen and (max-width: 300px) {
  .text {font-size: 11px}
}

/* Sticky footer for persistent "Next" control */
.site-footer {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(12,12,12,0.95);
  color: #fff;
  text-align: center;
  padding: 10px 0;
  z-index: 9999;
  box-shadow: 0 -4px 10px rgba(0,0,0,0.5);
}
.site-footer h2 {
  margin: 0;
  font-size: 1.05rem;
  cursor: pointer;
  display: inline-block;
  padding: 6px 14px;
  border-radius: 6px;
  background: linear-gradient(90deg,#FEA84A,#746352);
}

/* Prevent page content from being covered by footer */
body { padding-bottom: 70px; }