/* Common Shared Styles for Porto Paradiso */

/* FOUC (Flash of Unstyled Content) Prevention */
body {
  display: none;
}

/* Font Awesome Font Loading with font-display: swap */
@font-face {
  font-family: 'Font Awesome 6 Free';
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url("/assets/fontawesome/webfonts/fa-solid-900.woff2") format("woff2");
}
@font-face {
  font-family: 'Font Awesome 6 Brands';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/assets/fontawesome/webfonts/fa-brands-400.woff2") format("woff2");
}

/* Base Reset */
* {
  box-sizing: border-box;
}

/* Common CSS Variables (Foundation) */
:root {
  --bg: #f1f5f9;
  --text: #0f172a;
  --muted: #64748b;
  --white: #ffffff;
  --shadow: 0 4px 12px rgba(0,0,0,0.08);
}
