/* ===========================================================
   GLOBAL
   =========================================================== */
body {
  margin: 0;
  padding: 0;
  background: #f7f7f7;
  font-family: 'Inter', sans-serif;
  color: #222;
}

/* ===========================================================
   HEADER
   =========================================================== */
.container {
  text-align: center;
  padding-top: 10px;
}

.main-image {
  width: 210px;
  margin: 0 auto 8px;
}

.name {
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  font-size: 40pt;
  color: #003f7f;
  margin: 0;
}

.tagline {
  font-family: "Dancing Script", cursive;
  font-size: 26pt;
  color: #003f7f;
  transform: skewX(-8deg);
  margin-bottom: 14px;
}

.subtitle {
  font-size: 11pt;
  color: #444;
  margin-bottom: 20px;
}

/* ===========================================================
   CHAT SECTION
   =========================================================== */
.chat-section {
  position: relative;
  max-width: 760px;
  margin: 0 auto 60px;
}

.chat-wrapper {
  max-width: 600px;
  margin: 0 auto;
  padding: 22px;
  background: #ffffff;
  border-radius: 18px;
  box-shadow: 0 10px 22px rgba(0,0,0,0.08);
}

.chat-wrapper::before {
  content: "Have a natter with Stan";
  display: block;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 12pt;
  color: #99ceff;
  margin-bottom: 12px;
}

/* ===========================================================
   INPUT + BUTTON
   =========================================================== */
.chat-input {
  width: 100%;
  padding: 14px;
  border-radius: 12px;
  border: 2px solid #1e88e5;
  font-size: 1rem;
  box-sizing: border-box;
  margin-bottom: 14px;
}

.chat-send {
  width: 60%;
  padding: 12px;
  border-radius: 12px;
  border: none;
  background: #1e88e5;
  color: #fff;
  font-weight: bold;
  display: block;
  margin: 0 auto 14px;
  cursor: pointer;
}

/* ===========================================================
   CHAT LOG
   =========================================================== */
.chat-log {
  background: #eef1f6;
  min-height: 320px;
  padding: 16px;
  border-radius: 12px;
  overflow-y: auto;
}

.chat-log div {
  margin-bottom: 8px;
}

/* ===========================================================
   MINI STAN
   =========================================================== */
.stan-empty {
  position: absolute;
  right: -30px;
  top: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  pointer-events: none;
}

.stan-empty-img {
  width: 140px;
}

.stan-empty-text {
  margin-top: 8px;
  font-size: 13px;
  color: #666;
  text-align: center;
}

/* ===========================================================
   MOBILE
   =========================================================== */
@media (max-width: 900px) {
  .stan-empty {
    display: none;
  }
}

/* ===========================================================
   ABOUT
   =========================================================== */
.about-section {
  text-align: center;
  font-size: 11pt;
  margin-bottom: 40px;
}

/* ===========================================================
   FOOTER (RESTORED + FIXED)
   =========================================================== */
.footer-frame {
  background: #0f1941;
  padding: 40px 20px;
  text-align: center;
  color: #e0e0e0;
}

.footer-frame-inner {
  max-width: 900px;
  margin: 0 auto;
}

.footer-frame-line1 {
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  font-size: 28pt;
  color: #ffffff;
  margin-bottom: 6px;
}

.footer-frame-line2 {
  font-family: "Dancing Script", cursive;
  font-size: 24pt;
  color: #f5e79e;
  transform: skewX(-8deg);
  display: inline-block;
  margin-bottom: 20px;
}

/* 🔑 THIS IS THE MISSING PIECE */
.footer-frame .links a {
  margin: 0 12px;
  font-weight: 700;
  color: #f5e79e;
  text-decoration: none;
  font-size: 14pt;
}

.footer-frame .links a:hover {
  text-decoration: underline;
}

.footer-frame .copyright {
  margin-top: 22px;
  font-size: 12pt;
  color: #cfcfcf;
}
