.happiness-section {
  padding: 20px 0;
  background-color: #ffffff;
  position: relative;
  overflow: hidden;
  /* Ensure circle doesn't cause scrollbar */
}

/* NEW: Independent Background Circle */
.happiness-background-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 550px;
  /* Adjust size as needed to overflow behind videos */
  height: 550px;
  background-color: #FFF8E4;
  border-radius: 50%;
  z-index: 0;
  /* Behind content */
}

.happiness-container {
  display: flex;
  align-items: center;
  gap: 40px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0px 0px 0px 0px;
  position: relative;
  z-index: 1;
  /* Above background circle */
}

/* Video Columns */
.video-column {
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex: 1;
}

.left-column {
  max-width: 550px;
}

.right-column {
  max-width: 550px;
  flex-direction: row;
  gap: 15px;
}

/* Video Thumbnails */
.video-thumb {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
}

.video-thumb:hover {
  transform: translateY(-5px);
}

.rectangle-video {
  width: 100%;
  height: 200px;
}

.rectangle-video img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.standing-video {
  flex: 1;
  height: 500px;
}

.standing-video img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Play Button Overlay */
.play-button-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 10px;

  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.play-button-overlay:hover {
  background: #fff;
  transform: translate(-50%, -50%) scale(1.1);
}

.play-button {
  color: #8b0000a7;
  font-size: 30px;
  font-weight: bold;
  margin-left: 3px;
}

/* Text Column with Circular Background */
.text-column {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 500px;
}

.text-content {
  /* removed background, border-radius, border, fixed dimensions */
  /* background: #FFF8E4; */
  /* border-radius: 50%; */
  /* width: 550px; height: 550px; */
  /* border: 2px solid #f5f5f5; */

  width: auto;
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px;
  text-align: center;
  position: relative;
}

/* Title */
.happiness-title {
  font-family: 'Mea Culpa', cursive;
  font-size: 48px;
  font-weight: 400;
  color: #8B0000;
  margin: 0 0 20px;
  line-height: 1.2;
}

.happiness-title .underlined {
  display: inline-block;
  position: relative;
  min-width: 50px;
  width: max-content;
  text-align: center;
}

.happiness-title .underlined::after {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -10px;
  height: 4px;
  width: 50%;
  background: linear-gradient(90deg, #C08A00, #D4AF37);
  display: block;
}

/* Decorative SVG - now positioned behind video and with rotation option */
.decorative-svg {
  position: absolute;
  z-index: 0;
  /* behind video */
  left: 1%;
  top: 50%;
  transform: translate(-50%, -50%) rotate(320deg);
  opacity: 0.5;
  pointer-events: none;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.decorative-svg.rotating {
  transform: translate(-50%, -50%) rotate(360deg);
}

.decorative-svg svg,
.decorative-svg img {
  width: 180px;
  height: 180px;
  display: block;
}

/* To use: add .decorative-svg inside .video-thumb and toggle .rotating for animation */
/* Description */
.happiness-description {
  font-family: 'League Spartan', sans-serif;
  font-size: 17px;
  font-weight: 400;
  color: #000000;
  line-height: 1.6;
  margin: 0 0 30px;
  max-width: 280px;
  text-align: justify;
}

/* Book Button */
.happiness-book-btn {
  background: #8B0000;
  color: #fff;
  border: none;
  padding: 15px 40px;
  border-radius: 10px;
  font-family: 'League Spartan', sans-serif;
  font-size: 18px;
  font-weight: 400;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.happiness-book-btn:hover {
  background: #6B0000;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(139, 0, 0, 0.3);
}

/* ============================
     RESPONSIVENESS
  ============================ */

/* Large Tablet */
@media (max-width: 1200px) {
  .happiness-container {
    gap: 30px;
  }

  /* .text-content { width: 450px; height: 450px; padding: 70px 40px; } */
  .happiness-background-circle {
    width: 550px;
    height: 550px;
  }

  .happiness-title {
    font-size: 40px;
  }
}

/* Tablet */
@media (max-width: 992px) {
  .happiness-section {
    padding: 40px 0;
  }

  .happiness-container {
    flex-direction: column;
    gap: 50px;
    padding: 0 30px;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
  }

  .left-column {
    width: 100%;
    max-width: 100%;
    order: 1;
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 20px;
  }

  .text-column {
    width: 100%;
    order: 2;
    min-height: auto;
    margin: 20px 0;
  }

  .right-column {
    width: 100%;
    max-width: 100%;
    order: 3;
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 20px;
  }

  .video-column {
    flex-direction: row;
    justify-content: center;
    gap: 20px;
  }

  .rectangle-video {
    width: 45%;
    max-width: 300px;
    height: 220px;
  }

  .standing-video {
    width: 45%;
    max-width: 300px;
    height: 220px;
  }

  .text-content {
    width: auto;
    height: auto;
    padding: 20px;
    margin: 0 auto;
  }

  .happiness-background-circle {
    width: 500px;
    height: 500px;
  }

  .happiness-title {
    font-size: 42px;
  }

  .happiness-title span[style*="font-size:70px"] {
    font-size: 58px !important;
  }

  .happiness-title .underlined {
    font-size: 36px !important;
  }

  .decorative-svg {
    display: block;
    width: 140px;
    height: 140px;
    left: 50%;
    top: 45%;
  }

  .decorative-svg img {
    width: 140px;
    height: 140px;
  }

  .happiness-description {
    max-width: 320px;
    text-align: center;
    font-size: 15px;
  }

  .happiness-book-btn {
    padding: 14px 28px;
    font-size: 15px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .happiness-section {
    padding: 50px 20px 10px 20px;
  }

  .happiness-container {
    flex-direction: column;
    gap: 40px;
    padding: 0 20px;
  }

  .left-column {
    order: 1;
    flex-direction: column;
    width: 100%;
    max-width: 100%;
  }

  .text-column {
    order: 2;
    width: 100%;
    min-height: auto;
    margin: 20px 0;
  }

  .right-column {
    order: 3;
    flex-direction: column;
    width: 100%;
    max-width: 100%;
  }

  .video-column {
    flex-direction: column;
    gap: 18px;
    width: 100%;
  }

  .rectangle-video {
    width: 100%;
    max-width: 100%;
    height: 200px;
  }

  .standing-video {
    width: 100%;
    max-width: 100%;
    height: 200px;
  }

  .text-content {
    width: auto;
    height: auto;
    padding: 20px 30px;
    margin: 0 auto;
  }

  .happiness-background-circle {
    width: 400px;
    height: 400px;
  }

  .happiness-title {
    font-size: 36px;
    margin-bottom: 15px;
  }

  .happiness-title span[style*="font-size:70px"] {
    font-size: 50px !important;
  }

  .happiness-title .underlined {
    font-size: 30px !important;
  }

  .decorative-svg {
    display: block;
    width: 120px;
    height: 120px;
    left: 100%;
    top: 42%;
  }

  .decorative-svg img {
    width: 120px;
    height: 120px;
  }

  .happiness-description {
    max-width: 280px;
    font-size: 14px;
    margin-bottom: 25px;
    text-align: center;
  }

  .happiness-book-btn {
    padding: 13px 26px;
    font-size: 14px;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .happiness-section {
    padding: 4px 0px 0;
  }

  .happiness-container {
    gap: 35px;
    padding: 0 15px;
  }

  .video-column {
    gap: 15px;
  }

  .rectangle-video {
    height: 180px;
  }

  .standing-video {
    height: 180px;
  }

  .text-content {
    width: auto;
    height: auto;
    padding: 20px 25px;
  }

  .happiness-title {
    font-size: 30px;
    margin-bottom: 12px;
  }

  .happiness-title span[style*="font-size:70px"] {
    font-size: 42px !important;
  }

  .happiness-title .underlined {
    font-size: 26px !important;
  }

  .decorative-svg {
    display: none !important;
  }

  .decorative-svg img {
    display: none !important;
  }

  .happiness-description {
    max-width: 240px;
    font-size: 13px;
    margin-bottom: 20px;
    line-height: 1.5;
  }

  .happiness-book-btn {
    padding: 12px 24px;
    font-size: 13px;
  }
}

/* Extra Small Mobile */
@media (max-width: 360px) {
  .happiness-section {
    padding: 30px 0;
  }

  .happiness-container {
    gap: 30px;
    padding: 0 10px;
  }

  .rectangle-video,
  .standing-video {
    height: 160px;
  }

  .text-content {
    width: auto;
    height: auto;
    padding: 20px;
  }

  .happiness-title {
    font-size: 26px;
  }

  .happiness-title span[style*="font-size:70px"] {
    font-size: 36px !important;
  }

  .happiness-title .underlined {
    font-size: 22px !important;
  }

  .decorative-svg {
    display: none !important;
  }

  .decorative-svg img {
    display: none !important;
  }

  .happiness-description {
    max-width: 220px;
    font-size: 12px;
  }

  .happiness-book-btn {
    padding: 10px 20px;
    font-size: 12px;
  }
}