/* ===========================
   Font Imports
=========================== */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700&family=Open+Sans:wght@400;500;600&display=swap');

/* ===========================
   Color Palette
   Primary: #d4af37 (Gold), #C9AE8D (Beige), #886341 (Brown), #DED2C3 (Soft Beige), #FBFBFB (Off White)
   Complement: #789ade, #2275ba, #bc78de, #6622ba, #bb6622
=========================== */

/* ===========================
   Global Styles
=========================== */
body {
  font-family: 'Open Sans', 'Montserrat';
  margin: 0px;
  padding: 0;
  background: #FBFBFB;
  /* color: #886341; */
  line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Montserrat', 'Open Sans';
  font-weight: 700;
  color: #886341;
  margin-bottom: 20px;
  margin-top: 50px;
  text-align: center;
}

/* Text Elements */
p,
li {
  font-family: 'Open Sans', sans-serif;
  font-weight: 400;
  color: #886341;
  font-size: 1rem;
}

/* ===========================
   Buttons
=========================== */
button {
  padding: 12px 24px;
  background: #d4af37;
  color: #FBFBFB;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

button:hover {
  background: #886341;
}

/* Starter Buttons (Chat Page) */
button.starter {
  margin: 5px;
  padding: 8px 18px;
  background: #2275ba;
  color: #FBFBFB;
  border-radius: 18px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
}

button.starter:hover {
  background: #6622ba;
}

/* ===========================
   Inputs
=========================== */
input {
  padding: 10px;
  font-size: 16px;
  border-radius: 10px;
  border: 1px solid #C9AE8D;
  font-family: 'Open Sans', sans-serif;
  width: 80%;
  margin-right: 5px;
  background: #FBFBFB;
}

@keyframes blink {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0;
  }
}

/* ===========================
   Welcome Page
=========================== */
.content {
  width: 80%;
  max-width: 700px;
  margin: 0 auto 20px auto;
  text-align: justify;
  padding: 10px;
}

.content ul {
  margin-left: 20px;
  text-align: left;
}

/* Center the start button */
#input-container {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

/* ===========================
   Walkthrough Page
=========================== */
ol {
  width: 80%;
  max-width: 700px;
  margin: 0 auto 20px auto;
  text-align: justify;
  line-height: 1.6;
}

li {
  margin-bottom: 10px;
}

/* ===========================
   Chat Page
=========================== */
#chat-box {
  border: 1px solid #C9AE8D;
  border-radius: 12px;
  padding: 10px;
  height: 300px;
  overflow-y: auto;
  margin-bottom: 15px;
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.08);
  background: #ffffff;
}

.message {
  margin: 8px 0;
  padding: 10px 14px;
  border-radius: 12px;
  max-width: 97%;
  font-family: 'Open Sans', sans-serif;
  background: #ffffff;
  color: #886341;
  box-shadow: 0px 2px 6px rgba(220, 17, 17, 0.05);
}

.user {
  margin-left: auto;
  text-align: right;
  background-color: #ffffff;
}

.assistant {
  margin-right: auto;
  text-align: left;
  background-color: #ffffff;
}


#chat-container {
  display: flex;
  flex-direction: column;
}


.chat-header {
  position: absolute;
  top: 10px;
  left: 40px;
  z-index: 1000;
}

.chat-header img {
  width: 170px !important;
  height: 60px !important;
  max-width: none !important;
  object-fit: contain !important;
  display: block !important;
  margin: 0 !important;
}




/* ===========================
   Logo
=========================== */
/* img {
  display: block;
  margin: 0 auto;
  top: 10px;
  left: 10px;
  max-width: 100px;
}
 */
