/* ===============================
   BASE STYLES

   Common base styles shared across all pages.
   Includes: CSS reset, fonts, body styles, heading styles.
================================ */

/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:wght@400;600;700&display=swap');

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

/* Body Base Styles */
body {
  font-family: Inter, sans-serif;
  background: var(--color-light-blue);
  color: var(--color-orange);
  line-height: 1.7;
  overflow-x: hidden;
}

/* Heading Styles */
h1, h2, h3 {
  font-family: "Playfair Display", serif;
  font-weight: 600;
}
