/* Start custom CSS for html, class: .elementor-element-6a4ad86 */@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,300;0,400;0,700;1,300&family=Playfair+Display:ital,wght@0,400;0,700;1,400&display=swap');

:root {
  --deep-blue: #2E5A7A;
  --soft-gold: #C89B3C;
  --parchment: #F4F0E8;
  --cream: #FAEDD9;
}

.book-premium-section {
  background: linear-gradient(to right, #F4F0E8 0%, #FAF7F0 100%);
  padding: 10px 40px;
  display: flex;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.book-container {
  max-width: 1200px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
  align-items: center;
}

/* IMAGE TOP */
.book-visual-side {
  order: -1; /* image upar */
  display: flex;
  justify-content: center;
  align-items: center;
}

.book-image-frame {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.book-image {
  width: 100%;
  max-width: 420px;
  border-radius: 6px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
  position: relative;
  z-index: 2;
  transition: transform 0.6s ease, box-shadow 0.6s ease;
}
.book-image:hover {
  transform: scale(1.05);
  box-shadow: 0 35px 90px rgba(0,0,0,0.25);
}

.soft-glow {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 6px;
  background: radial-gradient(circle at center, rgba(200,155,60,0.15), transparent 70%);
  z-index: 1;
  animation: gentlePulse 6s infinite alternate;
}

@keyframes gentlePulse {
  from { opacity: 0.4; transform: scale(1); }
  to { opacity: 0.8; transform: scale(1.05); }
}

/* TEXT BELOW IMAGE */
.book-text-side {
  text-align: center;
}

.book-label {
  display: flex;
  align-items: center;
  gap: 15px;
  justify-content: center;
  margin-bottom: 20px;
}
.gold-line {
  width: 40px;
  height: 2px;
  background-color: var(--soft-gold);
}
.section-title {
  font-family: 'Lato', sans-serif;
  color: var(--soft-gold);
  letter-spacing: 4px;
  font-weight: 700;
  font-size: 13px;
}

.book-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(40px, 5vw, 72px);
  color: var(--deep-blue);
  margin: 0;
  line-height: 1.1;
}

.book-subtitle {
  font-family: 'Lato', sans-serif;
  font-size: 20px;
  color: #5DA7C5;
  margin: 15px 0 35px 0;
  letter-spacing: 1px;
}

.book-description p {
  font-family: 'Lato', sans-serif;
  font-size: 18px;
  line-height: 1.9;
  color: #333;
  margin-bottom: 28px;
  font-weight: 300;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 1s forwards;
}
.book-description p:nth-child(2) { animation-delay: 0.2s; }
.book-description p:nth-child(3) { animation-delay: 0.4s; }
.book-description p:nth-child(4) { animation-delay: 0.6s; }
.book-description p:nth-child(5) { animation-delay: 0.8s; }

@keyframes fadeInUp {
  to { opacity: 1; transform: translateY(0); }
}

.btn-book-premium {
  display: inline-block;
  padding: 18px 45px;
  background-color: var(--deep-blue);
  color: var(--cream) !important;
  text-decoration: none;
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  border-radius: 4px;
  transition: all 0.4s ease;
  box-shadow: 0 8px 20px rgba(46,90,122,0.25);
}
.btn-book-premium:hover {
  background-color: var(--soft-gold);
  transform: translateY(-5px);
  box-shadow: 0 12px 28px rgba(200,155,60,0.35);
}

@media (max-width: 991px) {
  .book-container { grid-template-columns: 1fr; }
  .book-label { justify-content: center; }
  .book-image { margin-bottom: 40px; }
}/* End custom CSS */