
/* =========================
   BASE THEME
========================= */
:root{
  --bg:#4d4615; 
  --text:#ffe699;
  --muted:#d4c483;
  --yellow:#ffcc00;
  --orange:#ff6100;
}


*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  color:none;
}

/* Safely styles background and colors globally without breaking React's container layout */
body{
  font-family:"Nunito", sans-serif;
  color:var(--text);
  background-image: url("/assets/noise.jpg");
  background-repeat: repeat;
  background-color: var(--bg); 
  background-size: 200px;
}

a{
  color:inherit;
  text-decoration:none;
}

.container{
  width:min(800px,92%);
  margin:auto;
}

/* FIXED: The flexbox layout lives safely here now, so it won't collapse the React root */
.landing-wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* =========================
   HEADER
========================= */
header {
  padding: 40px 0 10px;
  text-align: center;
  z-index: 10;
}

.logo{
  height: 60px;
  display: inline-block;
}

/* =========================
   HERO / MAIN CONTENT
========================= */
.hero{
  padding: 60px 0 60px;
  text-align:center;
  flex-grow: 1;
  display: flex;
  align-items: center;
}

.hero h1{
  font-size: clamp(5rem, 5.5vw, 4.8rem);
  font-weight: 800;
  color: var(--yellow);
  letter-spacing: -1px;
  line-height: 1.1;
  max-width: 780px;
  margin: 0 auto 24px;
}

.hero p{
  margin: 0 auto 40px;
  max-width: 620px;
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  color: var(--muted);
  line-height: 1.5;
  font-weight: 500;
}

.hero-cta{
  display:flex;
  justify-content:center;
}

.btn{
  background: var(--orange);
  color: #622500;
  padding: 18px 48px;
  border-radius: 16px;
  font-size: 1.4rem;
  font-weight: 800;
  display: inline-flex;
  transition: transform 0.2s, background-color 0.2s;
  box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

.btn:hover{
  transform: translateY(-2px);
  background: #ff8512;
}

/* =========================
   FOOTER
========================= */
footer {
  padding: 40px 0;
  text-align: center;
  z-index: 10;
}

.footer-text {
  color: var(--muted);
  font-size: 0.95rem;
  opacity: 0.7;
}


.landing-wrapper { position: relative; overflow: hidden; }

.deco {
  position: absolute;
  pointer-events: none;
  user-select: none;
}

.deco-stars-left    { top: 100px;    left: 200px;   width: clamp(80px, 10vw, 160px); }
.deco-stars-right   { top: 100px;    right: 200px;  width: clamp(80px, 10vw, 160px); }
.deco-koala-left    { bottom: -10px; left: -10px; width: clamp(140px, 30vw, 330px); }
.deco-elephant-right{ bottom: -10px; right: -10px;width: clamp(140px, 30vw, 330px); }

@media (max-width: 600px) {
  .deco-koala-left, .deco-elephant-right { width: 120px; }
  .deco-stars-left, .deco-stars-right    { width: 70px; }
}