@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

/* Smoothness is handled by GSAP scrollTo for section snapping.
   Avoid CSS scroll-snap to prevent blinking/jumps. */
html {
  scroll-behavior: auto;
}

body {
  background-color: #e9e5e2;
  color: #1a1a1a;
  font-family: 'Poppins', sans-serif;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

/* When user reaches section 4 we lock vertical scrolling so
   they stay on the mood selector until they choose or navigate away */
body.lock-scroll {
  overflow: hidden;
}

body::-webkit-scrollbar {
  display: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'SEGO', 'Copperplate Gothic 29 BC', 'Copperplate Gothic', sans-serif;
}

/* Header hidden by default, only shows on section 4 */
.header {
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.header.show-header {
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: all;
}

/* Fix SVG icons in header - override common.css link styles */
.header-icons a,
.header-icons a svg,
.header-icons a i,
.header-icons a:hover {
  cursor: pointer !important;
  pointer-events: all !important;
  -webkit-text-fill-color: initial !important;
  background-image: none !important;
  color: #000 !important;
}

.header-icons a svg {
  display: block;
  stroke: #000;
  fill: none;
}

.header-icons a svg *,
.header-icons a svg path,
.header-icons a svg line {
  pointer-events: none;
}

/* --- Section 1: Intro --- */
.intro-scroll-container {
  height: 100vh;
  position: relative;
  background: #e9e5e2;
}

#introSection1 {
  z-index: 3;
}

#introSection2 {
  z-index: 4;
  background: transparent !important;
}

#introSection3 {
  z-index: 5;
  background: #e9e5e2;
}

.intro-pin-container {
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.intro-bg-media {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
  /* clip any overflow from scaled/wide media */
}

.bg-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  /* Force cover even for 1920x800 wide videos */
  min-width: 100%;
  min-height: 100%;
}

.bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(185, 140, 110, 0.31);
  z-index: 2;
}

/* Load custom Aurlet font */
@font-face {
  font-family: "SEGO";
  src: url("../fonts/SEGO.ttf") format("truetype"),
    url("../fonts/SEGO.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
}

/* Logo SVG animations */
#introSection1 .logo-svg #a {
  fill: none;
  stroke: #fff;
  stroke-width: 4;
  stroke-linejoin: round;
  stroke-linecap: round;
  stroke-dasharray: 600;
  stroke-dashoffset: 600;
  letter-spacing: 0;
  font-family: "SEGO";
  animation: drawA 4s cubic-bezier(0.4, 0, 0.2, 1) forwards,
    moveA 0.8s ease forwards 2s,
    fillA 1.2s ease forwards 2.8s;
  animation-play-state: paused;
}

#introSection1 .logo-svg #urlet {
  fill: #fff;
  opacity: 0;
  transform: translateY(40px);
  font-family: "SEGO";
  font-size: 375px;
  animation: riseURLET 1s ease forwards 3.4s;
  animation-play-state: paused;
  text-transform: lowercase;
  letter-spacing: 9.2px;
}

#introSection1 .logo-svg #star {
  opacity: 0;
  animation: starVisible 1.6s ease forwards 4.5s;
  animation-play-state: paused;
}

@keyframes drawA {
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes moveA {
  to {
    transform: translateX(-120px);
  }
}

@keyframes fillA {
  to {
    fill: #fff;
    stroke: #fff;
  }
}

@keyframes riseURLET {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes starVisible {
  0% {
    opacity: 0;
  }

  35% {
    opacity: 1;
  }

  75% {
    opacity: 1;
  }

  100% {
    opacity: 1;
  }
}

.video-text-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 100;
  text-align: center;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}

.video-text-overlay .overlay-text {
  opacity: 0;
  font-size: 2.8rem;
  font-weight: 400;
  text-transform: uppercase;
  margin: 0.5rem 0;
  text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.6);
  letter-spacing: 5px;
}

.video-text-overlay #text1,
.video-text-overlay #text2,
.video-text-overlay #text3 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin: 0;
  width: 100%;
  font-family: 'Copperplate Gothic 29 BC', 'Copperplate Gothic', 'Copperplate', sans-serif;
}

.video-text-overlay #text3 {
  display: flex;
  justify-content: center;
  align-items: center;
}

.video-text-overlay .gif-logo {
  height: auto;
  display: block;
}

.video-text-overlay .gif-logo svg {
  width: min(800px, 80vw);
  max-width: 800px;
  height: auto;
  display: block;
}

/* Scroll down button */
.scroll-down {
  position: absolute;
  bottom: 50px;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  letter-spacing: 3px;
  color: rgba(255, 255, 255, 0.9);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  animation: bounce 2s infinite;
  z-index: 150;
  transition: all 0.3s ease;
}

.scroll-down:hover {
  color: #fff;
  transform: translateX(-50%) scale(1.1);
}

.scroll-down i {
  font-size: 16px;
}

@keyframes bounce {

  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }

  50% {
    transform: translateX(-50%) translateY(10px);
  }
}

/* --- Scroll-driven animations (view() timeline) --- */
@keyframes scroll-drive-fade-in {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes scroll-drive-fade-in-up {
  from {
    opacity: 0;
    transform: translateY(28px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scroll-drive-scale-in {
  from {
    opacity: 0;
    transform: scale(0.97);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

@supports (animation-timeline: view()) {

  /* Section 2: PICK YOUR AURA — content fades in as section enters view */
  #introSection2 .aura-title {
    opacity: 0;
    animation: scroll-drive-fade-in linear;
    animation-timeline: view();
    animation-range: entry 0% entry 60%;
    animation-fill-mode: both;
  }

  #introSection2 .aura-option {
    opacity: 0;
    animation: scroll-drive-fade-in linear;
    animation-timeline: view();
    animation-fill-mode: both;
  }

  #introSection2 .aura-scroll-hint {
    opacity: 0;
    animation: scroll-drive-fade-in linear;
    animation-timeline: view();
    animation-range: entry 50% entry 100%;
    animation-fill-mode: both;
  }

  /* Section 3: CRAFTED FOR REAL MOMENTS — title and hint reveal on scroll */
  #introSection3 .s3-title {
    opacity: 0;
    animation: scroll-drive-fade-in-up linear;
    animation-timeline: view();
    animation-range: entry 0% entry 50%;
    animation-fill-mode: both;
  }

  #introSection3 .s3-scroll-hint {
    opacity: 0;
    animation: scroll-drive-fade-in linear;
    animation-timeline: view();
    animation-range: entry 40% entry 90%;
    animation-fill-mode: both;
  }

  /* Section 4: SHOP BY MOOD — title animates in */
  #sectionShopbyMood .ShopbyMood-title {
    opacity: 0;
    animation: scroll-drive-fade-in-up linear;
    animation-timeline: view();
    animation-range: entry 0% entry 45%;
    animation-fill-mode: both;
  }
}

/* --- Section 2: Pick Your Aura --- */
.aura-section {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.aura-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  /* Remove perspective/preserve-3d — breaks child absolute positioning & sizing */
}

.aura-bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  opacity: 0;
  transform: scale(1.06);
  transform-origin: center center;
  will-change: opacity, transform;
  backface-visibility: hidden;
  /* Ensure image always fills even if aspect ratio is 1920x800 (wide) */
  min-width: 100%;
  min-height: 100%;
}

.aura-bg-image.active {
  opacity: 1;
  transform: scale(1);
}




.aura-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  z-index: 2;
  transition: background 0.5s ease;
}

.aura-content {
  position: relative;
  z-index: 10;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 60px;
}

.aura-title {
  font-family: 'Copperplate Gothic 29 BC', 'Copperplate Gothic', 'Copperplate', sans-serif;
  font-size: clamp(32px, 6vw, 50px);
  letter-spacing: 8px;
  color: #fff;
  text-align: center;
  font-weight: 400;
  margin: 0;
  text-shadow: 2px 2px 20px rgba(0, 0, 0, 0.5);
  transform-style: preserve-3d;
  animation: titleFloat 3s ease-in-out infinite;
}

@keyframes titleFloat {

  0%,
  100% {
    transform: translateY(0px) rotateX(0deg);
  }

  50% {
    transform: translateY(-10px) rotateX(2deg);
  }
}

.aura-options {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  z-index: 100;
  position: relative;
}

.aura-option {
  font-family: 'Copperplate Gothic 29 BC', 'Copperplate Gothic', 'Copperplate', sans-serif;
  font-size: clamp(24px, 4vw, 36px);
  letter-spacing: 4px;
  color: rgba(255, 255, 255, 0.5);
  cursor: pointer !important;
  transition: color 0.4s ease, text-shadow 0.4s ease;
  position: relative;
  padding: 12px 40px;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
  z-index: 100;
  pointer-events: all !important;
  user-select: none;
  -webkit-user-select: none;
  display: inline-block;
  /* Remove all 3D transforms that cause hit-box misalignment */
  transform: none !important;
  will-change: color;
}

.aura-option::before {
  display: none;
}

.aura-option::after {
  content: '';
  position: absolute;
  bottom: 6px;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 60%;
  height: 1px;
  background: linear-gradient(90deg, transparent, #fff, transparent);
  transition: transform 0.4s ease;
  pointer-events: none;
}

.aura-option:hover {
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
}

.aura-option:hover::after {
  transform: translateX(-50%) scaleX(0.5);
}

.aura-option.active {
  color: #fff;
  text-shadow: 0 0 30px rgba(255, 255, 255, 0.8),
    0 0 60px rgba(255, 255, 255, 0.4);
  font-weight: 500;
}

.aura-option.active::after {
  transform: translateX(-50%) scaleX(1);
}

.aura-scroll-hint {
  position: absolute;
  bottom: 40px;
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  letter-spacing: 3px;
  color: rgba(255, 255, 255, 0.8);
  animation: bounce 2s infinite;
  text-transform: uppercase;
  text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
}

/* --- Section 3: Video with Heading (mirrors Section 2 style) --- */
.s3-pin-container {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.s3-bg-media {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.s3-bg-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  position: absolute;
  top: 0;
  left: 0;
  min-width: 100%;
  min-height: 100%;
}

.s3-bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.35);
  z-index: 2;
}

.s3-content {
  position: relative;
  z-index: 10;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 60px;
}

/* Title — identical to .aura-title */
.s3-title {
  font-family: 'Copperplate Gothic 29 BC', 'Copperplate Gothic', 'Copperplate', sans-serif;
  font-size: clamp(32px, 6vw, 50px);
  letter-spacing: 8px;
  color: #fff;
  text-align: center;
  font-weight: 400;
  margin: 0;
  text-shadow: 2px 2px 20px rgba(0, 0, 0, 0.5);
  animation: titleFloat 3s ease-in-out infinite;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.s3-title.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Sub-options — identical to .aura-option style */
.s3-options {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  z-index: 100;
  position: relative;
}

.s3-option {
  font-family: 'Copperplate Gothic 29 BC', 'Copperplate Gothic', 'Copperplate', sans-serif;
  font-size: clamp(20px, 3.5vw, 30px);
  letter-spacing: 4px;
  color: rgba(255, 255, 255, 0.55);
  position: relative;
  padding: 10px 36px;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s ease, transform 0.6s ease, color 0.3s ease, text-shadow 0.3s ease;
  cursor: default;
}

.s3-option.visible {
  opacity: 1;
  transform: translateY(0);
}

.s3-option::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 60%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
  transition: transform 0.5s ease;
  pointer-events: none;
}

/* Scroll hint — identical to .aura-scroll-hint */
.s3-scroll-hint {
  position: absolute;
  bottom: 40px;
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  letter-spacing: 3px;
  color: rgba(255, 255, 255, 0.8);
  animation: bounce 2s infinite;
  text-transform: uppercase;
  text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
  cursor: pointer;
}

@media (max-width: 768px) {
  .s3-title {
    font-size: clamp(24px, 5vw, 32px);
    letter-spacing: 4px;
  }

  .s3-option {
    font-size: clamp(16px, 3.5vw, 22px);
    letter-spacing: 2px;
    padding: 8px 20px;
  }

  .s3-options {
    gap: 14px;
  }
}

@media (max-width: 480px) {
  .s3-option {
    font-size: clamp(14px, 4vw, 18px);
    padding: 6px 14px;
  }
}

.ShopbyMood {
  position: relative;
  width: 100%;
  min-height: 100vh;
  background: #e9e5e2;
  padding: 80px 0 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Ensure section 4 (Shop by Mood) is not constrained to exactly 100vh
   by the generic .intro-scroll-container rule, so the whole slider remains visible. */
#sectionShopbyMood {
  height: auto;
  min-height: 100vh;
  z-index: 6;
}

.ShopbyMood-title {
  font-family: 'Copperplate Gothic 29 BC', 'Copperplate Gothic', 'Copperplate', sans-serif;
  font-size: clamp(28px, 5vw, 50px);
  letter-spacing: 2px;
  text-align: center;
  margin-top: 50px;
  color: #1a1a1a;
  font-weight: 400;
}

.mood-scroller-wrapper {
  position: relative;
  width: 100%;
  height: 640px;
  overflow: hidden;
  /* Fade edges */
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}

.mood-scroller {
  display: flex;
  gap: 32px;
  padding: 40px 0;
  height: 100%;
  align-items: center;
  justify-content: center; /* Correctly centers items when fewer than 5 */
  will-change: transform;
  /* No width constraint — let it be as wide as all cards */
  width: max-content;
  margin: 0 auto;
  min-width: 100%;
}

.mood-scroller-wrapper.is-carousel .mood-scroller {
  margin: 0;
  padding: 40px 0;
  display: flex;
  align-items: center;
  gap: 4vw; /* Responsive gap */
  width: max-content;
  min-width: 100vw;
  /* Add safe padding for scroll ends */
  padding-left: 20%;
  padding-right: 20%;
}

.mood-scroller-wrapper.is-carousel .mood-item {
  width: clamp(200px, 16vw, 320px); /* Responsive base width */
  flex-shrink: 0;
}

/* Responsiveness */
@media (max-width: 1024px) {
    .mood-scroller-wrapper.is-carousel .mood-item {
        width: 30vw;
    }
}

@media (max-width: 768px) {
    .mood-scroller-wrapper.is-carousel .mood-item {
        width: 50vw;
    }
    .mood-scroller-wrapper.is-carousel .mood-scroller {
        padding-left: 10%;
        padding-right: 10%;
    }
}

@media (max-width: 480px) {
    .mood-scroller-wrapper.is-carousel .mood-item {
        width: 70vw;
    }
}

/* Remove static 3rd-item width -- JS handles dynamic scaling in center */
/* .mood-scroller-wrapper.is-carousel .mood-item:nth-child(3) { width: ... } */

.carousel-nav-btns {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  width: 100%;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  padding: 0 40px;
  pointer-events: none;
  z-index: 10;
}

.carousel-nav-btns button {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: #fff;
  color: #000;
  cursor: pointer;
  pointer-events: all;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.carousel-nav-btns button:hover {
  background: #1a1a1a;
  color: #fff;
  border-color: #1a1a1a;
}

.mood-item {
  flex-shrink: 0;
  width: clamp(180px, 18vw, 260px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  cursor: pointer;
  text-align: center;
}

.mood-item .img-container {
  width: 100%;
  aspect-ratio: 3/4;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
  transition: box-shadow 0.3s ease;
}

.mood-item .img-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
  pointer-events: none;
  user-select: none;
  -webkit-user-drag: none;
}

.mood-item:hover .img-container {
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.22);
}

.mood-item:hover .img-container img {
  transform: scale(1.04);
}

/* Dynamically highlight the central item based on counts */
.mood-item.is-middle {
  width: clamp(210px, 20vw, 310px);
}

.mood-label {
  font-family: 'Poppins', sans-serif;
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #1a1a1a;
  font-weight: 500;
  text-align: center;
  transition: opacity 0.3s ease;
}

.mood-pill-bar {
  position: fixed;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 50px;
  padding: 12px 30px;
  display: flex;
  gap: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  z-index: 100;
}

.mood-pill-bar i {
  color: #999;
  font-size: 18px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.mood-pill-bar i:hover {
  color: #000;
  transform: scale(1.2);
}

/* Responsive Design */
/* --- Responsive Refinements --- */
@media (max-width: 1024px) {
  .overlay-text { font-size: 2.2rem !important; }
}

@media (max-width: 768px) {
  .ShopbyMood { padding: 80px 0; }
  .video-text-overlay .overlay-text { 
    font-size: 1.5rem !important; 
    width: 90%;
    letter-spacing: 2px;
  }
  .aura-title { font-size: 28px !important; letter-spacing: 3px; }
  .aura-option { font-size: 18px !important; padding: 10px 20px !important; letter-spacing: 2px; }
  .aura-options { gap: 12px; }
  
  .s3-content .s3-title { font-size: 24px !important; padding: 0 15px; }

  /* Carousel overrides for mobile */
  .mood-scroller-wrapper.is-carousel .mood-scroller {
    padding-left: 15%;
    padding-right: 15%;
    gap: 30px;
  }
  .mood-scroller-wrapper.is-carousel .mood-item {
    width: 65vw;
  }
  .mood-scroller-wrapper.is-carousel .mood-item:nth-child(3) {
    width: 65vw; /* No special width on mobile to avoid layout breaking */
  }

  .mood-pill-bar {
    bottom: 25px;
    width: 85%;
    padding: 10px 15px;
    gap: 15px;
    justify-content: space-around;
  }
}

@media (max-width: 480px) {
  .video-text-overlay .overlay-text { font-size: 1.2rem !important; }
  .ShopbyMood-title { font-size: 22px !important; }
  .carousel-nav-btns button { width: 40px; height: 40px; }
  .mood-scroller-wrapper.is-carousel .mood-item { width: 80vw; }
}

img:not(.aura-bg-image):not(.img-container img) {
  height: auto;
}

/* --- Dynamic Sections --- */
.dynamic-home-section {
    position: relative;
    width: 100%;
    overflow: hidden;
    background-color: #e9e5e2;
    min-height: 100vh;
}

.dynamic-home-section .container {
    padding-left: 2rem;
    padding-right: 2rem;
}

.dynamic-home-section h2 {
    font-family: 'SEGO', serif !important;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.dynamic-home-section .btn-dark:hover {
    background-color: #333 !important;
    transform: translateY(-2px);
    transition: all 0.3s ease;
}

.dynamic-home-section .btn-white-outline:hover {
    background: #fff !important;
    color: #000 !important;
    transition: all 0.3s ease;
}

@media (max-width: 991px) {
    .dynamic-home-section .row {
        flex-direction: column-reverse;
    }
    
    .dynamic-home-section .col-lg-6 {
        flex: 0 0 100%;
        max-width: 100%;
        text-align: center;
    }
    
    .dynamic-home-section h2 {
        font-size: 2.5rem !important;
    }
}


