/* assets/style.css */
:root {
  --primary: #45659c;     /* dark blue from calendar */
  --secondary: #e10886;   /* vibrant orange */
  --accent: #fced8b;      /* light gold */
  --light: #ffffff;
  --dark: #1d1d1d;
}

html, body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.4;
}




/* Instead of gap */
.container > * {
  margin-right: 20px; /* simulate gap */
}
/* Then on last-child remove margin-right if needed */



