/* Color Variables */
:root{
    --bb:#A7C7E7; /* baby blue */
    --pk:#f8afca; /* #F7C7D9*/
    --bg:#F5EDE6; /* warm beige */
    --tx:#2B2B2B; /* charcoal */
    --gd:#f8afca; /* gold */
}

/* Floral border background */
body{
    background-image: url("../assets/floral-bg.jpeg");
    background-repeat: repeat;
    background-size: 420px auto;
    background-position: center top;
    background-attachment: fixed; /* prevents visible "jump" when layout reflows (e.g., language switch) */
}

/* Base font styles */
h1,h2,h3{font-family:"Playfair Display", serif}



/* Mobile Safari: background-attachment: fixed can cause jank/blank areas */
@media (max-width: 768px){
  body{ background-attachment: scroll; }
}

img{max-width:100%; height:auto;}

/* Prevent long strings/URLs or tight layouts from overflowing on mobile */
p, h1, h2, h3 {
  overflow-wrap: anywhere;
}
