/******************************************************************************
START Glitch hello-app default styles

The styles in this section do some minimal CSS resets, set default fonts and 
colors, and handle the layout for our footer and "Remix on Glitch" button. If
you're new to CSS they may seem a little complicated, but you can scroll down
to this section's matching END comment to see page-specific styles.
******************************************************************************/
/* Our default values set as CSS variables */
:root {
  --color-bg: #FFFFFF;
  --color-text-main: #000000;
  --color-text-header: #FFFFFF;
  --color-primary: #AFECE0;
  --wrapper-height: 87vh;
  --image-max-width: 300px;
  --image-margin: 3rem;
  --font-family: "HK Grotesk";
  --font-family-header: "HK Grotesk";
}

/* Basic page style resets */
* {
  box-sizing: border-box;
}
[hidden] {
  display: none !important;
}

/* Import fonts */
@font-face {
  font-family: HK Grotesk;
  src: url("https://cdn.glitch.me/605e2a51-d45f-4d87-a285-9410ad350515%2FHKGrotesk-Regular.otf?v=1603136326027")
    format("opentype");
}
@font-face {
  font-family: HK Grotesk;
  font-weight: bold;
  src: url("https://cdn.glitch.me/605e2a51-d45f-4d87-a285-9410ad350515%2FHKGrotesk-Bold.otf?v=1603136323437")
    format("opentype");
}

/* Our remix on glitch button */
.btn--remix {
  font-family: HK Grotesk;
  padding: 0.75rem 1rem;
  font-size: 1.1rem;
  line-height: 1rem;
  font-weight: 500;
  height: 2.75rem;
  align-items: center;
  cursor: pointer;
  background: #FFFFFF;
  border: 1px solid #000000;
  box-sizing: border-box;
  border-radius: 4px;
  text-decoration: none;
  color: #000;
  white-space: nowrap;
  margin-left: auto;
}
.btn--remix img {
  margin-right: 0.5rem;
}
.btn--remix:hover {
  background-color: #D0FFF1;
}

/* Navigation grid */
.footer {
  display: flex;
  justify-content: space-between;
  margin: 1rem auto 0;
  padding: 1rem 0 0.75rem 0;
  width: 100%;
  flex-wrap: wrap;
  border-top: 4px solid #fff;
}

.footer a:not(.btn--remix):link,
a:not(.btn--remix):visited {
  font-family: HK Grotesk;
  font-style: normal;
  font-weight: normal;
  font-size: 1.1rem;
  color: #000;
  text-decoration: none;
  border-style: none;
}
.footer a:hover {
  background: var(--color-primary);
}

.footer .links {
  padding: 0.5rem 1rem 1.5rem;
  white-space: nowrap;
}

.divider {
  padding: 0 1rem;
}
/******************************************************************************
END Glitch hello-app default styles
******************************************************************************/




body, h1, ul, li, a, button, input, form {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  background-color: #f9f9f9;
  color: #333;
}

div.app {
  padding: 20px;
}

div#topics.output ul {
  margin-left: 40px;
}

div#meetingsummary.output ol {
  margin-left: 40px;
}

div#meetingsummary.output ul {
  margin-left: 40px;
}

@keyframes blink {
    0% {
        opacity: 1;
    }
    50% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
.hidden-text {
  visibility: hidden;
}
.static-text {
  color: green;
}
.static-error-text {
  color: #D00000 !important;
}

.error-message {
  color: #D00000 !important;
  font-size:16px;
}
.blinking-text {
    color: #DBAD6A;
    animation: blink 1.5s infinite; 
}
.transcript {
  height: 150px;
  overflow: auto;
}
.output {
    margin-top: 20px;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    margin-bottom: 30px;
    background-color: #FFFFFF;
    
}

.output div {
  font-size: 1.25rem;
}

/* Page structure */
.wrapper {
  min-height: var(--wrapper-height);
  display: grid;
  place-items: center;
  margin: 0 1rem;
}
.content {
  display: flex;
  flex-direction: column;
  align-items: left;
  justify-content: left;
}

p {
  font-size: 1.25rem;
}

/* Title h1 style */
.title {
  color: var(--color-text-header);
  font-family: HK Grotesk;
  font-style: normal;
  font-weight: bold;
  font-size: 100px;
  line-height: 105%;
  margin: 2rem 0 0;
}

/* Very light scaling for our illustration */
.illo-container {
  display: flex;
  justify-content: flex-end;
}
.illustration {
  max-width: 100%;
  max-height: 150px;
  margin-top: 1rem;
}

/* Styles for our custom color form and its results */
.color-info {
  margin-left: 5px;
}
.color-search {
  margin-top: 3rem;
}
.color-form {
  width: 90%;
  max-width: 500px;
  margin-left: 5px;
}
.color-form a:not(.btn--remix) {
  font-weight: bold;
  color: var(--color-text-main);
  margin-top: 8px;
}
.color-form button {
  margin-top: 8px;
}
.color-form button:hover {
  cursor: pointer;
  box-shadow: -8px 4px 20px #9BE7D8;
}
form {
  margin: 0.75rem 0;

}


button, input {
  font-family: inherit;
  font-size: 100%;
  background: #FFFFFF;
  border: 1px solid #000000;
  box-sizing: border-box;
  border-radius: 4px;
  padding: 0.5rem 1rem;
}

input {
  width: 100%;
  margin-bottom: 20px;
}
button {
  background-color: green;
  color: white;
}
label {
  color: #000000;
  font-weight: bold;
}

/* Instructions */
.instructions {
  margin: 1rem auto 0;
}
.instructions p {
  font-size: 1rem;
}
h2, h3 {
  color: var(--color-text-header);
}

h2.reg, h3.reg {
  color: black;
  line-height: 1.1;
}

.book-item p {
  margin-bottom: 10px;
  margin-top: 5px;
}
/* General Reset */


/* Navigation Bar */
.navbar {
  background-color: #fff;
  border-bottom: 1px solid #e0e0e0;
  padding: 0.5rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar-container {
  display: flex;
  align-items: center;
  width: 100%;
}
.logo {width:300px;}
.logo h1 {
  margin-top:-5px;
}
.logo img {
  height: 30px;
  width: auto;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  margin-left: auto;
}

.nav-links a {
  text-decoration: none;
  color: #333;
  font-weight: bold;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #006EAE;
}

.auth-buttons {
  margin-left: 1rem;
  display: flex;
  gap: 0.5rem;
}

.btn {
  padding: 0.5rem 1rem;
  font-size: 1rem;
  font-weight: bold;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
}

.btn-outline {
  background-color: transparent;
  border: 1px solid #000000;
  color: #000000;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.btn-outline:hover {
  background-color: #fff;
  border: 1px solid #008000;
  color: #008000;
}

.btn-primary {
  background-color: #000000;
  color: #E3B957 !important;
  transition: background-color 0.3s ease;
}

.btn-primary:hover {
  background-color: #E3B957;
  color: #000000 !important;
}

.btn-green {
  background-color: #008000;
  color: #fff;
  border: none;
  transition: background-color 0.3s ease;
}

.btn-green:hover {
  background-color: #218838;
}

/* Hero Section */
.hero {
  height: 94.0vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background-size: cover;
  background-position: center;
  color: #fff;
  text-align: center;
  position: relative;
  overflow: auto;
  background-image: url('https://cdn.glitch.global/263b7eca-ad8c-4aee-946c-739929b13d94/legacy-min.png?v=1731780584524');
  background-position: center;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7); /* Overlay */
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 100%;
  text-align: center;
  width: 40vw;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.hero-form {
  /*display: flex;*/
  gap: 0.5rem;
  justify-content: center;
}



.hero-form input {
  padding: 0.75rem;
  font-size: 1rem;
  border: none;
  border-radius: 4px;
  flex: 1;
  margin-bottom: 3px;
}

.hero-form button {
  padding: 0.3rem 1.5rem;
  font-size: 1rem;
  font-weight: bold;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}




.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  background-color: #fff;
  border-bottom: 1px solid #ddd;
}

.navbar-container {
  display: flex;
  align-items: center;
  width: 100%;
}

.nav-links {
  display: flex;
  list-style: none;
  margin-left: auto;
}

.nav-links li {
  margin: 0 10px;
}

.nav-links a {
  text-decoration: none;
  color: #333;
  font-weight: bold;
}

.auth-buttons {
  display: flex;
  margin-left: 20px;
}

.auth-buttons .btn {
  margin-left: 10px;
}

/* Hamburger menu styles */
.menu-toggle {
  display: none;
}

.menu-icon {
  display: none;
  flex-direction: column;
  cursor: pointer;
  margin-left: auto;
}

.menu-icon span {
  width: 25px;
  height: 3px;
  background-color: #333;
  margin: 4px 0;
  transition: 0.4s;
}



* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
}

signup {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 93.3vh;
  background-color: #f0f0f0;
  background-position:center;
  /*background-image: url('https://cdn.glitch.global/263b7eca-ad8c-4aee-946c-739929b13d94/legacy-min.png?v=1731780584524');*/
  background-image: url('https://cdn.glitch.global/263b7eca-ad8c-4aee-946c-739929b13d94/book%20reading-min.png?v=1735838860304');
  background-size: cover;
}

signup::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5); /* Overlay */
  z-index: 1;
}

.form-container {
  background-color: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 400px;
  z-index:2;
}

.signup-form h2 {
  margin-bottom: 20px;
  color: #333;
  text-align: center;
}

.input-group {
  margin-bottom: 15px;
}

.input-groupa {
  margin-bottom: 15px;
  display: flex;
}

.input-group label {
  display: block;
  margin-bottom: 5px;
  color: #555;
}

.input-group input {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 16px;
}

.input-group input.name {
  width: 45%;
}

.input-group input:focus {
  border-color: #007bff;
  outline: none;
}


button.subut[type="submit"] {
  width: 100%;
  padding: 10px;
  background-color: #E3B957;
  border: none;
  border-radius: 4px;
  color: #000;
  font-size: 2em;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

button.subut[type="submit"]:hover {
  background-color: #D09E24;
}

/*
#ytContent, #muContent {
  width:476px;
}
*/

.ytDiv {
  display: flex;
}

.toggle-container1 {
  display: flex;
  flex-wrap:wrap;
  visibility: hidden;
}

.toggle-container {
  display: flex;
  flex-wrap:wrap;
}

#content-toggles1 {
  display: flex;
  flex-wrap:wrap;
  flex-grow: 2;
}

#book-toggles1 {
  display: flex;
  flex-wrap:wrap;
  flex-grow: 2;
}

.toggle-group label {
    display: flex;
    /*font-size: medium;*/
  }
/*
.toggle-group label span {
    width: 75%;
    padding-right: 30%;
  }
*/
.toggle-group {
  display: flex;
  align-items: center;
  background-color: white;
  /*font-size:1em;*/
  padding: 10px;
  border: 1px solid #c0c0c0;
  border-radius: 5px;
  width: 232px;
  margin: 3px;
}

.toggle-group input[type="checkbox"] {
  margin-right: 10px;
  width:25px;
}



form fieldset {
  border: 1px solid #ccc;
  padding: 10px 20px;
  display: inline-block;
  margin-bottom: 20px;
}

form legend {
  font-weight: bold;
  margin-bottom: 10px;
}

form label.model {
  display: inline-block;
  margin-right: 20px;
  cursor: pointer;
}

form input[type="radio"] {
  margin-right: 5px;
}

.bookContainer {
  display: flex;
  justify-content: space-between;
}

div.viewing {
  border: 1px solid #c0c0c0;
  border-radius: 10px;
  flex: 1;
  padding: 20px;
}
div.response {
  overflow: auto;
  height: 60vh;
}
a.btn1 {
  background-color: rgb(0, 110, 174);
  font-family: inherit;
  border: 1px solid #000000;
  box-sizing: border-box;
  border-radius: 10px;
  color: white !important;
  text-decoration: none;
  padding: 0.5rem 1rem;
}

a.btn1:visited {
  color: #0000FF;
}

.bookContainer .prompt {
  margin-right: 20px;
}

.chat-agent {
  border: 1px solid #e6e6e6;
  background-color: #ffffff;
  border-radius: 40px;
  padding: 10px;
  margin-bottom: 10px;
  width: fit-content;
  display: flex;
  clear:both;
}

.chat-agent div.img {
  margin: 0px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.user-prompt {
  border: 1px solid #e6e6e6;
  background-color: rgb(0, 110, 174);
  border-radius: 40px;
  padding: 10px;
  margin-bottom: 10px;
  width: fit-content;
  float: right;
  color: #ffffff;
  clear:both;
}

a.book_button {
  background-color: rgb(0, 110, 174);
  font-family: inherit;
  font-size: 1.5vw;
  border: 1px solid #000000;
  box-sizing: border-box;
  border-radius: 10px;
  padding: 20px 50px;
  color: white !important;
  text-decoration: none;
  /*margin-right: 1vw;*/
  margin-top: 100px;
}

a.yt_button {
  background-color: green;
  font-family: inherit;
  font-size: 3vw;
  border: 1px solid #000000;
  box-sizing: border-box;
  border-radius: 10px;
  padding: 1vw 2vw;
  color: white !important;
  text-decoration: none;
  margin-right: 0.5rem;
}

.book-list {
  display: flex;
  gap: 10px;
}

.book-item {
  background-image: url('https://cdn.glitch.global/263b7eca-ad8c-4aee-946c-739929b13d94/bookback-min.png?v=1735423261380');
  background-position:top;
  background-size: cover;
  background-color: white;
  border-radius: 10px;
  width: 220px;
  height:255px;
  padding-left:45px;
  padding-top: 18px;
}

.error-message {
  color: #d00000;
  font-size: 1vw;
}

.taprompt {
  width: 100%;
  box-sizing: border-box;
  padding: 10px;
  font-size: 16px;
  border: 1px solid #c0c0c0;
  border-radius: 10px;
}


.loading-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  flex-direction: column;
}

.loading-spinner {
  border: 4px solid #f3f3f3;
  border-top: 4px solid #3498db;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.loading-overlay p {
  color: white;
  margin-top: 15px;
  font-size: 18px;
}

div.usertime {
  clear: both;
  float:right;
}

div.agenttime {
  clear: both;
}

div.icow {
  border: 5px dashed #8B8B8B;
  background-color: #c0c0c0;
  padding: 10px;
  border-radius: 10px;
}

div.icow input {
  background-color: transparent;
  border: none;
}

ul.book li {
    list-style-type: "✓" !important;
  margin-left: 30px;
}

div.pricing {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

div.pricing div.pricing-table {
  max-width: 700px !important;
  width: 100%;
  clear: both;
}

h1.master-heading {
  /*font-size: 2vw;*/
  font-weight: 800;
  line-height: calc(1.2) !important;
  /*width: 600px;*/
  text-align: left;
}

div.master-subheading {
  /*font-size: 1.2vw;*/
  /*width: 600px;*/
  text-align: left;
  margin-bottom: 5vh;
}

div.hero-block {
  width:550px;
}

pre {  
    white-space: pre-wrap;  
}

.nav-links a:hover {
    background-color: #E3B957;
    color: #000000 !important;
    border: 1px solid #000000;
}

.loading-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  flex-direction: column;
}

.loading-spinner {
  border: 4px solid #f3f3f3;
  border-top: 4px solid #3498db;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.loading-overlay p {
  color: white;
  margin-top: 15px;
  font-size: 18px;
}




/* Responsive Design */
@media (max-width: 1068px) {


  div.hero-block {
    width: 100% !important;
  }
  
  .book-list {
    flex-direction:column;
  }
  
  .bookContainer {
    flex-direction:column;
  }
  
  .bookContainer .prompt {
      margin-right: 0px !important;
    margin-bottom: 20px;
  }
  
  div.ytDiv {
    display: inline;
  }
/*
  .hero-form div#content-toggles {
   display:flow;
   margin:2px;
  }
  
.toggle-group {
    display: block;
  margin: 5px;
}
*/
  
  .hero-content {
    width: 90%;
  }
  
  .hero .hero-content a {    
    font-size: 6vw;
    margin-bottom: 10px;
  }
  
  signup, section {
    padding:20px;
  }
  .auth-buttons {
    display: none;
  }

  .navbar {
    justify-content: space-between;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero-form {
    flex-direction: column;
  }

  .hero-form input, .hero-form button {
    width: 100%;
    padding: 13px;
  }

  .nav-links,
  .auth-buttons {
    display: none;
  }

  .menu-icon {
    display: flex;
  }

  .menu-toggle:checked ~ .nav-links,
  .menu-toggle:checked ~ .auth-buttons {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 54px;
    left: 0;
    width: 100%;
    background-color: #fff;
    border-top: 2px solid #E3B957;
    border-bottom:2px solid #E3B957;
    padding: 10px 0;
  }

  .nav-links li {
    margin: 10px 0;
    text-align: center;
  }

  .auth-buttons {
    flex-direction: column;
    align-items: center;
  }

  .auth-buttons .btn {
    margin: 10px 0;
  }
}
