/* Ce fichier contient des styles pour créer des placeholders d'images stylisés */

.phone-mockup {
  position: relative;
  width: 300px;
  height: 600px;
  background-color: #222;
  border-radius: 30px;
  padding: 10px;
  box-shadow: 0 15px 25px rgba(0, 0, 0, 0.2);
  margin: 0 auto;
  overflow: hidden;
}

.phone-screen {
  background-color: var(--primary-color);
  width: 100%;
  height: 100%;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  color: white;
  padding: 20px;
  font-family: 'Montserrat', sans-serif;
}

.phone-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.phone-header .logo {
  font-family: 'Paytone One', sans-serif;
  font-size: 24px;
}

.phone-header .icon {
  background-color: black;
  color: white;
  border-radius: 15px;
  padding: 5px 10px;
  font-size: 14px;
}

.chat-bubble {
  background-color: white;
  color: #222;
  padding: 12px 15px;
  border-radius: 18px;
  margin-bottom: 10px;
  max-width: 80%;
  position: relative;
}

.chat-bubble.received {
  border-bottom-left-radius: 5px;
  align-self: flex-start;
  background-color: #f0f0f0;
}

.chat-bubble.sent {
  border-bottom-right-radius: 5px;
  align-self: flex-end;
  background-color: #5046e5;
  color: white;
  margin-left: auto;
}

.chat-container {
  display: flex;
  flex-direction: column;
  height: 65%;
  overflow: hidden;
}

.suggestion-bubble {
  background-color: #2196f3;
  color: white;
  padding: 12px 20px;
  border-radius: 30px;
  margin: 10px 0;
  font-weight: 500;
  text-align: center;
}

.action-button {
  background-color: black;
  color: white;
  text-align: center;
  padding: 15px;
  border-radius: 30px;
  margin-top: 15px;
  font-weight: bold;
  font-size: 16px;
}

.emoji-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  margin: 15px 0;
}

.emoji {
  font-size: 24px;
  margin: 5px;
}

.app-footer {
  position: absolute;
  bottom: 10px;
  width: calc(100% - 40px);
  text-align: center;
  font-size: 12px;
  opacity: 0.8;
}

/* Styles spécifiques pour les captures d'écran */
.app-showcase {
  position: relative;
}

.floating-screenshots {
  position: relative;
  height: 500px;
}

.screenshot {
  position: absolute;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
  border-radius: 20px;
  overflow: hidden;
  width: 260px;
  height: 520px;
}

.screenshot-1 {
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  z-index: 3;
}

.screenshot-2 {
  left: 30%;
  top: 60px;
  transform: rotate(-12deg);
  z-index: 5;
}

.screenshot-3 {
  right: 10%;
  top: 60px;
  transform: rotate(12deg);
  z-index: 1;
}
