/* Base Reset */
* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  font-size: 0.625em;
}

@media (min-width: 100em) {
  html {
    font-size: 0.75em;
  }
}
@media (min-width: 120em) {
  html {
    font-size: 0.9em;
  }
}
@media (min-width: 140em) {
  html {
    font-size: 1.05em;
  }
}

body {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.6rem;
  min-height: 100%;
  margin: 0;
  padding: 0;
  background-color: rgb(100, 100, 100);
  background-image: linear-gradient(0deg, rgba(0, 0, 0, 0.2) 0%), url("../images/Musco_Lighting_logo.svg.png");
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-size: 120% 100%, 65% 65%;
  background-position: -10vh 50%, 100% 100%;
}

@media (max-width: 62.5em) {
  body {
    background-color: rgb(226, 29, 60);
    background-image: url("../images/waves-white-cropped.svg");
    background-attachment: initial;
    background-repeat: no-repeat;
    background-position: 100% 100%;
    background-size: 33vw auto;
  }
}

@media (max-width: 30em) {
  body {
    background-image: none;
  }
}

.page-container {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.page {
  display: flex;
  flex-direction: row;
  flex: 1 0 auto;
}

@media (max-width: 62.5em) {
  .page {
    flex-direction: column;
  }
}

.main-content {
  flex: 0 0 40%;
  display: flex;
  flex-direction: column;
}

.logo {
  width: 12.5rem;
  margin-top: 1.5rem;
  margin-left: 1.5rem;
}

@media (max-width: 62.5em) {
  .logo {
    display: block;
    margin-left: auto;
    margin-right: auto;
  }
}

.main-offer {
  margin: 7.5rem 1.5rem 10rem 1.5rem;
  align-self: center;
  flex: 1 0 auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

@media (max-width: 62.5em) {
  .main-offer {
    align-items: center;
    margin-bottom: 3rem;
  }
}

.main-heading {
  margin: 0;
  letter-spacing: 0.05em;
  font-style: italic;
  font-size: 2.8rem;
  font-weight: normal;
  color: white;
  text-align: left;
}

@media (max-width: 62.5em) {
  .main-heading {
    text-align: center;
  }
}

.project-title {
  display: block;
  color: rgba(6, 6, 160, 0.9);
  font-size: 4rem;
  margin-top: 1.8rem;
  padding: 2rem 0rem;
}

.project-name {
  display: block;
  color: rgba(228, 231, 49, 0.8);
  font-size: 3rem;
  margin-top: 0rem;
  margin-left: 6rem;
  padding: 0;
}

.Try {
  display: inline-block;
  font-size: 2.4rem;
  background-color: black;
  color: white;
  border: 2px solid white;
  border-radius: 1rem;
  text-decoration: none;
  padding: 1rem 3rem;
  margin-top: 2rem;
  margin-left: 12rem;
}

.Try:hover {
  background-color: rgb(50, 50, 50);
}

.footer-paragraph {
  margin: 1.5rem 0 1.5rem 1.5rem;
  color: black;
  font-size: 1.4rem;
}

/* Chatbot Styles */
#chat-button {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #007bff;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  z-index: 1000;
}

#chat-button img {
  width: 90%;
  height: 90%;
  object-fit: contain;
  border-radius: 50%;
}

#chat-container {
  position: fixed;
  bottom: 90px;
  right: 20px;
  width: 350px;
  height: 500px;
  display: none;
  z-index: 1000;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

#chat-container iframe {
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 10px;
}

#fullscreen-button {
  position: absolute;
  top: 5px;
  right: 5px;
  z-index: 1001;
  background-color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  padding: 5px 10px;
  font-size: 16px;
}