/* HEADER START */
header {
    color: white;
    padding: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 100;
}

@keyframes logo-pop-in {
  0% {
    top: -100px;
    transform: scale(0.8);
    opacity: 0;
  }
  70% {
    top: 35px;
    transform: scale(1.1);
    opacity: 1;
  }
  100% {
    top: 10px;
    transform: scale(1);
  }
}
.logo img {
    position: fixed;
    left: 10px;
    max-width: calc(100vw * 0.0521);
    max-height: auto;
    animation: logo-pop-in 0.6s ease-in-out forwards;
}

/* Navigation Icon */
.nav-icon {
  position: fixed;
  right: 50px;
  top: 10px;
  font-size: 2.5rem;
  cursor: pointer;
  animation: logo-pop-in 0.6s ease-in-out forwards;
  background-color: var(--nav-bg-colour);
  padding: 5px;
  padding-left: 20px;
  padding-right: 20px;
  margin: 0px;
  border-radius: 50%;
}

.nav-icon i:hover {
    transform: scale(1.1);
}

.nav-icon i {
  color: var(--white);
  transition: transform 0.3s ease;
}

#cloudTopLeft {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 99;
}

#cloudTopLeft img {
  max-width: calc(100vw * 0.156);
  height: auto;
}
/* HEADER END */

/* FOOTER START */
/* Base Footer Styles */
footer {
  z-index: 6;
  background-size: cover;
  background-image: url('../assets/images/Kind_Fox_Footer_BG.webp');
}

.site-footer {
  background-color: #f8f9fa;
  color: #333;
  padding: 40px 0 20px;
  font-family: 'Arial', sans-serif;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-column {
  flex: 1 0 200px;
  margin-bottom: 30px;
  padding: 0 15px;
  max-width: 300px;
  text-align: center;
}

.footer-header {
  font-family: 'nunito';
  font-size: 1.1rem;
  transform: rotate(-1deg);
  color: var(--orange);
  font-weight: 600;
  margin-bottom: 15px;
}

.footer-divider-line {
  background-color: var(--orange);
  color: var(--orange);
  margin-bottom: 15px;
}

.footer-links {
  font-family: 'atkinson';
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #555;
  text-decoration: none;
  transition: color 0.3s ease-in-out, font-size 0.2s ease-in-out;
  font-size: 1.15rem;
}

.footer-links a:hover {
  color: #000;
  font-size: 1.35rem;
}

.footer-divider {
  border: none;
  border-top: 1px solid #ddd;
  margin: 20px auto;
  width: 90%;
}

.footer-addendum {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-width: 100%;
  margin: 0 auto;
  padding: 10px 20px 0 20px;
  text-align: center;
  color: #555;
  font-size: 0.95rem;
  line-height: 1.7;
  font-family: 'atkinson';
}

.footer-addendum p {
  margin-bottom: 12px;
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-width: 100%;
  text-align: center;
  padding-top: 20px;
  color: #777;
  font-size: 14px;
}
/* FOOTER END */

@media screen and (min-width: 768px) and (max-width: 1366px) {}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
  /* HEADER START */
  .logo img {
    display: none;
  }
  /* HEADER END */

  #cloudTopLeft img {
    max-width: 100px;
    height: auto;
  }

    
  /* FOOTER START */
  .footer-container {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  
  .footer-column {
    flex: 1 0 100%;
    text-align: center;
    padding: 0;
    margin-bottom: 25px;
  }
  
  .footer-header {
    margin-bottom: 15px;
  }
  
  .footer-links li {
    margin-bottom: 8px;
  }
  /* FOOTER END */
}