/* ================================
   Elprent - Opening Soon (style.css)
   ================================ */

/* --- 1. Base Settings --- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  font-family: "Montserrat", sans-serif;
  background-color: #efefe8;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
}

/* Background Glow Effect */
body::before {
  content: "";
  position: absolute;
  top: -10%;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(214, 125, 70, 0.3) 0%,
    rgba(239, 239, 232, 0) 70%
  );
  z-index: -1;
  filter: blur(60px);
}

/* --- 2. Main Card --- */
.card {
  display: flex;
  width: 900px;
  max-width: 90%;
  height: 500px;
  background-color: #333333;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* --- 3. Left Section (Text Side) --- */
.left-panel {
  flex: 1;
  background-color: #333333;
  color: #ffffff;
  padding: 60px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

/* --- TOP SECTION: Logo & Divider --- */
.logo-area {
  width: 100%;
}

.logo-img {
  max-width: 140px;
  height: auto;
  margin-bottom: 15px;
  display: block;
}

.divider {
  width: 50px;
  height: 4px;
  background-color: #d67d46;
  border-radius: 2px;
}

/* --- MIDDLE SECTION: Content --- */
.middle-content {
  margin-top: auto;
  margin-bottom: auto;
  width: 100%;
}

.script-img {
  max-width: 280px;
  height: auto;
  display: block;
}

/* --- BOTTOM SECTION: Footer --- */
.footer-section {
  width: 100%;
}

.follow-text {
  font-size: 0.9rem;
  margin-bottom: 15px;
  font-weight: 400;
  color: #cccccc;
}

.social-icons {
  display: flex;
  gap: 12px;
}

.icon-btn {
  width: 35px;
  height: 35px;
  background-color: #ffffff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #333333;
  text-decoration: none;
  transition: transform 0.2s, background-color 0.2s;
  font-size: 1.1rem;
}

.icon-btn:hover {
  background-color: #d67d46;
  color: #ffffff;
  transform: translateY(-3px);
}

/* --- 4. Right Section (Picture Side) --- */
.right-panel {
  flex: 1;
  background-color: #f0f0f0;
  position: relative;
}

.right-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* --- 5. Floating Chat Button --- */
.floating-chat {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: #25d366;
  color: #ffffff;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 32px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  text-decoration: none;
  z-index: 1000;
  transition: transform 0.3s ease;
}

.floating-chat:hover {
  transform: scale(1.1);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .card {
    flex-direction: column;
    height: auto;
  }

  .left-panel {
    padding: 40px 30px;
    height: 400px;
  }

  .right-panel {
    height: 300px;
  }

  .script-img {
    max-width: 200px;
  }

  .floating-chat {
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    font-size: 26px;
  }
}
