:root {
  --light-yellow: #fce7c6;
  --yellow: #f6d365;
  --gold: #f5c57f;
  --light-red: #d94f5b;
  --red: #83010d;
  --dark-red: #3c0005;
  --gradient1: linear-gradient(to right, #f6d365 0%, #ffa500 51%, #f6d365 100%);
  --gradient2: linear-gradient(45deg, #f5c57f 51%, #fce7c6 100%);
  --gradient3: linear-gradient(200deg, #fff 0%, #fce7c6 100%);
  --gradient-red: linear-gradient(45deg, #d94f5b 0%, #83010d 51%, #d94f5b 100%);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: inherit;
}

*:focus {
  outline: none;
  border: 1px solid var(--gold);
  box-shadow: 0 0 10px var(--dark-red);
}

img,
picture,
svg {
  max-width: 100%;
  display: block;
}

body {
  font-family: "Montserrat", sans-serif;
  background-color: #000;
  background-image: url(./assets/background.png);
  background-size: cover;
  background-repeat: no-repeat;
  height: 100vh;
}

.wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3rem;
}

.heading {
  width: 100%;
  max-width: 700px;
  margin: 2rem 0;
}

h2 {
  font-weight: 600;
  font-size: 1.3rem;
  letter-spacing: 2px;
  color: #fff;
}

p {
  color: var(--dark-red);
  font-weight: 600;
  font-size: 18px;
  line-height: 28px;
}

input {
  border: none;
  border-radius: 4px;
  background: var(--light-yellow);
  color: var(--red);
  padding: 16px;
  font-size: 16px;
  font-family: "Montserrat";
  font-weight: 600;
  line-height: 26px;
  flex: 1;
}

main {
  margin: 0 auto;
  width: 100%;
  max-width: 700px;
  height: 600px;
  border-radius: 30px;
  background: #fff;
  padding: 20px 24px;
  padding-top: 0;
  display: flex;
  flex-direction: column;
  box-shadow: 0 0 2rem var(--gold);
}

.chat {
  flex: 1;
  display: flex;
  justify-content: flex-start;
  overflow-y: scroll;
  flex-direction: column;
}

.bot-msg {
  display: flex;
  margin: 1rem 0.5rem 0 0;
  flex-shrink: 0;
}

.user-msg {
  display: flex;
  justify-content: flex-end;
  margin: 1rem 0 0 0.5rem;
  flex-shrink: 0;
}

.bot-msg img,
.user-msg img {
  width: 70px;
  height: 70px;
}

.bubble {
  background: var(--gradient3);
  padding: 1rem 1.5rem;
  max-width: 40%;
}

.bot-bubble {
  border-radius: 0px 26px 26px 26px;
  margin-left: 8px;
}

.user-bubble {
  border-radius: 26px 0 26px 26px;
  margin-right: 8px;
}

.input-wrapper {
  display: flex;
  justify-content: center;
  gap: 1rem;
  padding-top: 1.5rem;
}

.input-wrapper form {
  width: 100%;
  display: flex;
  align-items: center;
}

form {
  display: flex;
  gap: 1rem;
}

label {
  font-size: 1rem;
  font-weight: 500;
  color: var(--dark-red);
  margin-right: 20px;
}

/* Hide the main element initially */
.chatbot {
  display: none;
}

/* js classes */
.ticketBtnContainer {
  display: none;
}

/* BUTTONS */
button {
  background: var(--gradient-red);
  font-size: 1rem;
  color: #fff;
  padding: 1rem 2.5rem;
  letter-spacing: 1px;
  font-weight: 800;
  text-transform: uppercase;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

button:hover {
  opacity: 0.8;
  transition: all 0.2s ease;
}

/* Send button for input */
.send-btn {
  margin-right: 4px;
}

/* Button options inside the chat */
.chat-btn {
  display: inline-flex;
}

/* Ticket button on startpage */
.ticket-btn {
  display: block;
  background: var(--gradient1);
  font-size: 1.5rem;
  letter-spacing: 5px;
  width: 17rem;
  height: 5rem;
  transition: 0.6s;
  background-size: 200% auto;
  text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.6);
  border-radius: 10rem;
}

.center-btn {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%);
}

.ticket-btn:hover {
  opacity: 1;
  background-position: right center;
  font-size: 1.6rem;
}
/* BUTTONS END */

/* Select styling */
.movieOptions {
  width: 300px;
  font-size: 1rem;
  color: #fff;
  padding: 1rem;
  text-align: center;
  background: var(--gradient-red);
  letter-spacing: 1px;
  font-weight: 800;
  border-radius: 4px;
  border: none;
}
