/*
 Theme Name:   GeneratePress Child
 Theme URI:    https://generatepress.com
 Description:  Default GeneratePress child theme
 Author:       Tom Usborne
 Author URI:   https://tomusborne.com
 Template:     generatepress
 Version:      0.1
*/

/* vietnam global ambassadors */
.bg02 h1 {
  font-size: clamp(6rem, calc(1rem + 7.3vw), 10rem);
}

.bg02 span {
  font-size: clamp(0.6rem, calc(0.5rem + 1vw), 1.1rem);
}

/* The second container with the background */
.bg02 {
  position: relative; /* establish positioning */
  z-index: 0; /* container itself stays neutral */
}

/* Background image on its own layer */
.bg02::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("https://vietnamisawesome.com/wp-content/uploads/2025/10/bg03-scaled-1.png"); /* replace with your image */
  background-size: contain;
  background-position: 50%;
  z-index: 2; /* the background "layer" */
  background-repeat: no-repeat;
  pointer-events: none; /* background won’t block clicks */
}

/* Headline inside the container */
.headline01 {
  position: relative;
  z-index: 1; /* sits behind the background layer */
}

/* Container below the headline */
.headline02 {
  position: relative;
  z-index: 3; /* sits in front of the background layer */
}
/* end vietnam global ambassadors */