/* Presentation page styles */

/* Layout */
.presentation-container {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  max-height: 100vh;
  overflow-y: auto; /* Allow vertical scrolling if needed */
  overflow-x: hidden; /* Prevent horizontal scrolling */
}

/* Header styles */
.presentation-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  flex-wrap: wrap;
}

.header-left {
  display: flex;
  align-items: center;
}

.header-logo {
  margin-left: 10px;
  width: 42px;
  height: 42px;
  position: relative;
}

.logo-svg {
  z-index: 2;
}

.header-logo .logo-svg,
.slogan-logo .logo-svg,
.footer-logo .logo-svg {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.header-logo .logo-svg.active,
.slogan-logo .logo-svg.active,
.footer-logo .logo-svg.active {
  display: block;
}

.bot-name {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 48px;
  color: var(--preferredColor);
}

.header-right {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

/* Enterprise logo - reduced size and positioned in top right corner */
.enterprise-logo {
  max-width: 200px;
  max-height: 100px;
  object-fit: contain;
  border-radius: 50%; /* Clip the logo in an invisible circle */
  width: auto; /* Allow the image to scale proportionally */
  height: auto; /* Allow the image to scale proportionally */
}

/* Responsive header styles */
@media (max-width: 992px) {
  .bot-name {
    font-size: 36px;
  }

  .enterprise-logo {
    max-width: 150px;
    max-height: 80px;
  }
}

@media (max-width: 768px) {
  .presentation-header {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
  }

  .header-left {
    flex: 1;
    min-width: 200px;
  }

  .header-right {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-left: auto;
  }

  .bot-name {
    font-size: 30px;
  }

  .enterprise-logo {
    max-width: 120px;
    max-height: 60px;
  }
}

@media (max-width: 480px) {
  .presentation-header {
    padding: 10px;
  }

  .bot-name {
    font-size: 24px;
  }

  .header-logo {
    width: 32px;
    height: 32px;
  }

  .header-left {
    min-width: 150px;
  }

  .header-right {
    margin-top: 5px;
  }

  .enterprise-logo {
    max-width: 100px;
    max-height: 50px;
    margin-left: auto; /* Push to the right */
  }
}

/* Extra small devices */
@media (max-width: 360px) {
  .presentation-header {
    padding: 8px;
    flex-direction: column;
    align-items: center;
  }

  .header-left {
    width: 100%;
    min-width: auto;
    justify-content: center;
    margin-bottom: 10px;
  }

  .header-right {
    width: 100%;
    justify-content: center;
    margin-top: 10px;
  }

  .bot-name {
    font-size: 20px;
  }

  .enterprise-logo {
    max-width: 80px;
    max-height: 40px;
    margin: 0 auto;
  }
}

/* Main content styles */
.presentation-main {
  display: flex;
  flex: 1;
  padding: 10px 20px;
}

.main-left, .main-right {
  flex: 1;
}

/* Adjust spacing for desktop */
@media (min-width: 993px) {
  .main-left {
    padding-right: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .main-right {
    padding-left: 20px;
    display: flex;
    align-items: center;
  }
}

/* Media query for responsive layout */
@media (max-width: 992px) {
  .presentation-main {
    flex-direction: column;
  }

  .main-left {
    order: 2;
  }

  .main-right {
    order: 1;
    margin-bottom: 30px;
  }
}

/* Video styling */
.main-right #chat-video {
  all: unset;

  width: 100%;
  height: auto;
  max-height: 80vh;
  object-fit: contain;
  border: none;
  box-shadow: none !important;
  filter: none !important;
  -webkit-box-shadow: none !important;
  outline: none !important;
  clip-path: inset(0px);
  overflow: hidden;
  border-radius: 10px;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.hero-logo {
  max-width: 150px;
  max-height: 150px;
  margin-bottom: 20px;
}

svg {
  transform: scale(1.5);
}

.hero-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 900;
  font-size: 3rem;
  color: var(--preferredColor);
  text-align: center;
}

/* Pulsating circle */
.pulsating-circle {
  position: fixed;
  top: -900px;
  right: -500px;
  width: 1000px;
  height: 1000px;
  border-radius: 50%;
  background-color: var(--preferredColor);
  filter: blur(50px);
  opacity: 0.3;
  animation: pulse 4s infinite ease-in-out;
  z-index: 5;
  overflow: hidden;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.07;
  }
  50% {
    transform: scale(1.15);
    opacity: 0.3;
  }
  100% {
    transform: scale(1);
    opacity: 0.07;
  }
}

/* Responsive pulsating circle */
@media (max-width: 1200px) {
  .pulsating-circle {
    top: -800px;
    right: -400px;
    width: 900px;
    height: 900px;
  }
}

@media (max-width: 992px) {
  .pulsating-circle {
    top: -600px;
    right: -400px;
    width: 800px;
    height: 800px;
  }
}

@media (max-width: 768px) {
  .pulsating-circle {
    top: -400px;
    right: -300px;
    width: 600px;
    height: 600px;
    filter: blur(40px);
  }
}

@media (max-width: 480px) {
  .pulsating-circle {
    top: -300px;
    right: -200px;
    width: 400px;
    height: 400px;
    filter: blur(30px);
  }
}

/* Slogan styles */
.slogan-container {
  position: relative;
  top: 0;
  left: 0;
  width: 90%;
  margin: 20px 0;
}

.slogan-text {
  font-family: 'Poppins', sans-serif;
  font-weight: 275;
  font-size: 4.5rem;
  line-height: 110%;
  letter-spacing: 0;
  color: var(--preferredColor);
  margin: 0;
}

.slogan-logo {
  height: 3rem;
  vertical-align: middle;
  display: inline-block;
  position: relative;
  width: 3rem;
}

/* Responsive slogan styles */
@media (min-width: 1201px) {
  .slogan-container {
    margin: 10px 0;
  }
}

@media (max-width: 1200px) {
  .slogan-text {
    font-size: 4rem;
  }
}

@media (max-width: 992px) {
  .slogan-container {
    margin: 20px 0;
  }

  .slogan-text {
    font-size: 3.5rem;
  }

  .slogan-logo {
    height: 2.5rem;
    width: 2.5rem;
  }
}

@media (max-width: 768px) {
  .slogan-text {
    font-size: 2.5rem;
  }

  .slogan-logo {
    height: 2rem;
    width: 2rem;
  }
}

@media (max-width: 480px) {
  .slogan-text {
    font-size: 2rem;
  }

  .slogan-logo {
    height: 1.5rem;
    width: 1.5rem;
  }
}

/* Footer styles */
.presentation-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 20px 60px;
  width: 100%;
  flex-wrap: wrap;
}

.footer-left {
  display: flex;
  align-items: center;
  width: 50%;
  flex-wrap: wrap;
}

.footer-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.footer-logo {
  max-width: 40px;
  max-height: 40px;
  position: relative;
  display: inline-block;
  width: 40px;
  height: 40px;
  left: 10px;
}

.circle-clipped {
  width: 52px;
  height: 52px;
  clip-path: circle(21px at center);
  object-fit: cover;
  background-color: var(--preferred-color); /* Use preferred color as background */
}

.footer-bot-name {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 48px;
  color: rgb(248, 245, 244);
  margin-left: 10px;
  z-index: 2;
}

.footer-copyright {
  font-family: Inter, 'Poppins', sans-serif;
  font-weight: 300;
  font-size: 15px;
  color: rgb(248, 245, 244);
  margin-top: 5px;
  margin-left: 10px;
  display: block;
  z-index: 2;
}

/* Bot name wrapper for vertical layout */
.footer-left > div:first-child {
  display: flex;
  flex-direction: column;
}

.footer-product-text {
  font-family: Inter, 'Poppins', sans-serif;
  font-weight: 300;
  font-size: 20px;
  color: rgb(248, 245, 244);
  text-align: right;
  z-index: 2;
  margin-left: 10%;
}

/* Responsive footer styles */
@media (max-width: 992px) {
  .footer-bot-name {
    font-size: 36px;
  }

  .footer-product-text {
    font-size: 18px;
  }
}

@media (max-width: 768px) {
  .presentation-footer {
    flex-direction: column;
    align-items: flex-start;
    padding-bottom: 60px;
  }

  .footer-left {
    width: 100%;
    margin-bottom: 20px;
  }

  .footer-bot-name {
    font-size: 30px;
  }

  .footer-copyright {
    font-size: 12px;
  }

  .footer-product-text {
    font-size: 16px;
    margin-left: 5%;
    text-align: left;
  }
}

@media (max-width: 480px) {
  .footer-bot-name {
    font-size: 24px;
  }

  .footer-logo {
    width: 30px;
    height: 30px;
  }

  .footer-product-text {
    font-size: 14px;
    margin-left: 0;
    margin-top: 10px;
    width: 100%;
  }

  .footer-left {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-left > div:first-child {
    margin-bottom: 10px;
  }
}

/* Paramètrer button and feature list styles */
.parametrer-container {
  position: relative;
  width: fit-content;
  z-index: 10;
  margin: 10px 0;
}

.parametrer-button {
  background-color: var(--preferredColor);
  color: rgb(248, 245, 244);
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 1.8rem;
  padding: 15px 40px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  margin-bottom: 25px;
  display: inline-block;
  text-decoration: none;
  text-align: center;
}

.parametrer-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

.parametrer-button.disabled {
  opacity: 0.6;
  cursor: not-allowed;
  background-color: #a0a0a0;
  box-shadow: none;
  pointer-events: none;
}

.parametrer-button.disabled:hover {
  transform: none;
  box-shadow: none;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 15px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
}

.feature-item svg {
  flex-shrink: 0;
  transform: scale(1);
}

.feature-item span {
  font-family: 'Inter', Poppins, sans-serif;
  font-weight: 200;
  font-size: 1.35rem;
  color: var(--preferredColor);
  opacity: 0.7;
}

/* Responsive parametrer button styles */
@media (max-width: 992px) {
  .parametrer-button {
    font-size: 1.5rem;
    padding: 12px 30px;
  }

  .feature-item span {
    font-size: 1.2rem;
  }
}

@media (max-width: 768px) {
  .parametrer-button {
    font-size: 1.3rem;
    padding: 10px 25px;
    width: 100%;
  }

  .feature-item span {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .parametrer-button {
    font-size: 1.1rem;
    padding: 8px 20px;
  }

  .feature-list {
    gap: 10px;
  }

  .feature-item svg {
    transform: scale(0.8);
  }

  .feature-item span {
    font-size: 0.9rem;
  }
}

/* Email input field styles */
.email-input-container {
  position: relative;
  width: 100%;
  max-width: 400px;
  margin: 10px 0;
  z-index: 10;
}

.email-label {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 1.2rem;
  color: var(--preferredColor);
  margin-bottom: 8px;
}

.email-input {
  width: 100%;
  padding: 12px 15px;
  border: 2px solid var(--preferredColor);
  border-radius: 10px;
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  color: #333;
  background-color: rgba(255, 255, 255, 0.9);
  transition: all 0.3s ease;
}

.email-input:focus {
  outline: none;
  box-shadow: 0 0 8px rgba(66, 187, 238, 0.5);
  border-color: var(--preferredColor);
}

/* Responsive email input styles */
@media (max-width: 768px) {
  .email-input-container {
    max-width: 100%;
  }

  .email-label {
    font-size: 1rem;
  }

  .email-input {
    padding: 10px 12px;
    font-size: 0.9rem;
  }
}
