/* Basic reset */
* { box-sizing: border-box; margin: 0; padding: 0; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #ffffff;
  border-bottom: 3px solid #000; /* stronger black line under nav */
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 1rem;
}
 
.hero-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 50px;
  height: 400px; 

  /* CHANGE THIS LINE */
  /* Use project-relative paths — place your image at images/cat.jpg. cat.svg acts as fallback. */
  background-image: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), url('images/CAT.jpg'), url('images/CAT.jpg');
  background-size: cover;
  background-position: center;
  background-position: center;
  border-radius: 15px;
  color: white;
  font-family: sans-serif;
}

.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 10px;
}

.stats-card {
  background: rgba(255, 255, 255, 0.2); /* Translucent glass effect */
  backdrop-filter: blur(10px);
  padding: 20px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  width: 250px;
}

.stats-card h3 {
  margin-top: 0;
  border-bottom: 1px solid white;
}

.stats-card ul {
  list-style: none;
  padding: 0;
}


/* Brand (logo + toggle) */
.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-img {
  height: 80px;
  width: auto;
  display: block;
}

/* Nav links */
.main-nav .nav-links {
  list-style: none;
  display: flex;
  gap: 1rem;
  align-items: center;
}

.main-nav a {
  text-decoration: none;
  color: #222;
  padding: 0.5rem 0.6rem;
  border-radius: 4px;
}

.main-nav a:hover,
.main-nav a:focus {
  background: #f3f3f3;
  outline: none;
}

/* Hamburger button (mobile) */
.nav-toggle {
  display: none; /* hidden on desktop */
  background: transparent;
  border: 0;
  padding: 0.25rem;
  cursor: pointer;
}
.hamburger {
  display: block;
  width: 22px;
  height: 2px;
  background: #333;
  position: relative;
}
.hamburger::before,
.hamburger::after {
  content: "";
  position: absolute;
  left: 0;
  width: 22px;
  height: 2px;
  background: #333;
}
.hamburger::before { top: -6px; }
.hamburger::after  { top: 6px; }

/* Responsive: collapse into hamburger for smaller screens */
@media (max-width: 768px) {
  .nav-toggle { display: inline-block; }

  .main-nav {
    width: 100%;
  }

  .main-nav .nav-links {
    display: block;
    overflow: hidden;
    max-height: 0;
    transition: max-height 250ms ease;
    background: #fff;
    border-top: 1px solid #eee;
  }

  .main-nav .nav-links li {
    padding: 0.4rem 1rem;
  }

  /* When nav is open */
  .site-header.nav-open .nav-links {
    max-height: 320px; /* enough for your link list; adjust as needed */
  }
}
.page-bg {
  position: fixed;
  inset: 0;           /* shorthand for top:0;right:0;bottom:0;left:0 */
  z-index: -1;
  background: center/cover no-repeat url('file:///C:/Users/Admin/Desktop/Unity_Textures/svg%20bg_files/animated-svg-background-css.svg');
  opacity: 0.98;
  pointer-events: none;
}

/* subtle zoom/pulse animation (optional) */
@keyframes bgPulse { 0%,100% { transform: scale(1); } 50% { transform: scale(1.02); } }
.page-bg { animation: bgPulse 18s ease-in-out infinite; }
/* ==========================
   Background cat animation
   - small decorative cat that walks across the screen
   - tail wag animation
   - respects prefers-reduced-motion
   ========================== */
.cat-bg {
  position: fixed;
  bottom: 6vh;
  left: -30vw;
  width: 220px;
  height: auto;
  z-index: 5;
  pointer-events: none;
  opacity: 0.95;
  will-change: transform;
}

.cat {
  width: 220px;
  height: auto;
  display: block;
  animation: catWalk 14s linear infinite;
}

@keyframes catWalk {
  0% { transform: translateX(0); }
  100% { transform: translateX(140vw); }
}

/* Tail wag */
.cat .tail {
  transform-origin: 20px 50px;
  animation: tailWag 0.6s ease-in-out infinite;
}

@keyframes tailWag {
  0% { transform: rotate(-12deg); }
  50% { transform: rotate(12deg); }
  100% { transform: rotate(-12deg); }
}

/* Hide on small screens */
@media (max-width: 600px) {
  .cat-bg { display: none; }
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  .cat, .cat .tail { animation: none; }
} 
.info-container {
  padding: 20px;
  display: flex;
  justify-content: flex-start; /* Aligns the box to the left */
}

.origin-box {
  background-color: #f9f9f9; /* Light grey/off-white background */
  border-left: 5px solid #d4a373; /* Stylish brown/gold accent line */
  padding: 20px;
  width: 300px;
  border-radius: 10px;
  box-shadow: 2px 4px 10px rgba(0,0,0,0.1); /* Soft shadow */
  font-family: sans-serif;
}

.origin-box h3 {
  margin-top: 0;
  color: #555;
  font-size: 1.2rem;
  letter-spacing: 1px;
}

.origin-box ul {
  list-style: none; /* Removes boring dots */
  padding: 0;
}

.origin-box li {
  margin-bottom: 10px;
  color: #333;
  font-size: 0.95rem;
}