/* ----------------------------------------
   🐶 Lady Instruction Module
---------------------------------------- */

/* 🎨 C:\vindxit\frontend\styles\lady_instruction.css */
/* 🐶 Lady Instruction Box – Desktop Version Only */
/* ✅ Add this to the very top of your stylesheet */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');
/* 💬 Outer container */
.lady-instruction {
	display: flex;
	align-items: flex-start;
	gap: 1rem;
	margin: 0 auto 1rem auto;
	max-width: 900px;
	font-size: 1.1rem;
	font-weight: 500;
	color: #333;

	/* 🎯 REMOVED: padding, background, border-radius, box-shadow */
}

/* 🔁 Default: Lady on left, speech on right */
.lady-instruction.normal {
	flex-direction: row;
}

/* 🔁 Flipped: Lady on right, speech on left */
.lady-instruction.flipped {
	flex-direction: row-reverse;
}


/* 🐾 Lady image */
.lady-img {
	width: 100px;
	height: auto;
	object-fit: contain;
	background: transparent;  /* ✅ Ensures no background box */
	border: none;             /* ✅ Removes any default browser border */
	box-shadow: none !important;         /* ✅ Kills accidental glow */
	
}

/* 📢 Speech bubble */
/* 📢 Speech bubble */
.lady-speech {
	background-color: #ffffff;
	border: none; 
	border-radius: 9999px;	   /* Pill shape */
	font-weight: 400;          /* 👈 Normal weight for desktop */
	font-size: 1rem;           /* 👈 Normal readable size for desktop */
	padding: 1rem 1.5rem;
	color: #333;
	box-shadow: none;
	pointer-events: none;
	text-align: center;
}

/* 🎯 Floating Lady container to visually overlap the VIN step */
#lady-container {
	position: relative;
	top: 3.5rem; /* tweak to match spacing */
	z-index: 10;
	display: flex;
	justify-content: center;
	pointer-events: none; /* prevents blocking clicks under */
}

.lady-floater .lady-instruction {
	position: absolute;
	top: -200px;
	left: 50%;
	transform: translateX(-50%);
	z-index: 10;
	pointer-events: none;
}


/* 🛑 Hide on mobile */
/*
@media (max-width: 900px) {
	.lady-instruction {
		display: none;
	}
}
/*
/* —————————————————————————————————————
   📱 Lady Instruction – Ultra‑Small Mobile
————————————————————————————————————— */
@media only screen and (max-width: 780x) {
  /* container full width, stacked */
  .lady-instruction {
    width: 100% !important;
    max-width: 90vw !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: flex-start !important;
    margin: 0.5rem auto !important;
    gap: 0.25rem !important;
    padding: 0 !important;
  }

  .lady-instruction.flipped {
    flex-direction: row-reverse !important;
  }

  /* really shrink the portrait */
  .lady-img {
    width: 80px !important;
    height: auto !important;
  }

  /* constrain the bubble */
  .lady-speech {
    width: 100% !important;
    max-width: calc(100% - 40px) !important;
    font-size: 0.6rem !important;  /* 👈 Smaller on mobile */
    font-weight: 400 !important;   /* 👈 Keep normal weight */
    padding: 0.4rem 0.8rem !important;
    line-height: 1.2 !important;
    word-break: break-word !important;
  }
}

  /* nuke any floats/overlaps */
  #lady-container,
  .lady-floater .lady-instruction {
    position: static !important;
    top: auto !important;
    left: auto !important;
    transform: none !important;
    z-index: auto !important;
  }


/* 🟦 Page Header */
header {
	text-align: center;
	margin-bottom: 2rem;
}

header h1 {
	font-size: 2.5rem;
	margin: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	color: white;
	background-color: #003f91; /* Royal Blue */
	padding: 1.25rem;
	border-radius: 2rem;
}

header a {
	display: inline-block;
	margin-top: 0.5rem;
	text-decoration: none;
	color: #ffcc00;
	font-weight: bold;
	font-size: 0.95rem;
}

header a:hover {
	text-decoration: underline;
}

/* ✅ Add this to the very top of your stylesheet */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

/* ✅ Global font override */
body, .lady-instruction, .lady-speech, header h1, header a {
	font-family: 'Poppins', sans-serif !important;
}
