/* assets/css/globals.css */

/* FONT DEFINITIONS */
@font-face {
  font-family: "Circular";
  font-style: normal;
  font-weight: 400; /* Regular */
  font-display: swap;
  src: url("../fonts/CircularStd-Book-1.woff2") format("woff2");
}

@font-face {
  font-family: "Circular";
  font-style: normal;
  font-weight: 700; /* Bold */
  font-display: swap;
  src: url("../fonts/CircularStd-Bold-1.woff2") format("woff2");
}

@font-face {
  font-family: "Circular";
  font-style: normal;
  font-weight: 300; /* Light */
  font-display: swap;
  src: url("../fonts/CircularSpotifyText-Light.woff2") format("woff2");
}

/* GLOBAL COLOR & FONT VARIABLES */
:root {
  /* Elementor Global Colors */
  /* --color-primary: #e6451c; */
  --color-primary: #b82706;
  --color-secondary: #1a203a;
  --color-accent: #f17900;
  --color-success: #0f7736;
  --color-purple: #330066;
  --color-warning: #f6c400;
  --color-info: #0077c2;
  --color-dark: #021a56;
  --color-light: #f5f5f5;

  /* Elementor Global Typography */
  --e-global-typography-primary-font-family: "Circular", sans-serif;
  --e-global-typography-primary-font-weight: 600;
  --e-global-typography-secondary-font-family: "Circular", sans-serif;
  --e-global-typography-secondary-font-weight: 400;
  --e-global-typography-text-font-family: "Circular", sans-serif;
  --e-global-typography-text-font-weight: 400;
  --e-global-typography-accent-font-family: "Circular", sans-serif;
  --e-global-typography-accent-font-weight: 500;
}

/* BASIC RESET & BODY STYLES */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Circular", sans-serif;
  background-color: #fff;
  color: #333;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden; /* Prevent horizontal scroll */
}

a {
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: #fff;
}

img,
video {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Main container for centering content */
.container {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}
