/**
 * Base Styles
 * Global resets, typography, variables, and foundational styles
 */

/* Font Faces */
@font-face {
  font-family: "Aptos";
  src: url("../../assets/fonts/Aptos/Aptos.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Aptos";
  src: url("../../assets/fonts/Aptos/Aptos Italic.ttf") format("truetype");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Aptos";
  src: url("../../assets/fonts/Aptos/Aptos Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Aptos Display";
  src: url("../../assets/fonts/Aptos/Aptos Display.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Aptos Display";
  src: url("../../assets/fonts/Aptos/Aptos Display Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* CSS Variables */
:root {
  color-scheme: light;
  --color-background: #f5f5f5;
  --color-yellow: #f9d88c;
  --color-amber: #a06000;
  --color-accent: #1956f5;
  --color-text: #111;
  --color-muted: #666;
  --color-card: #fff;
  --shadow-base: 0 2px 8px rgba(0, 0, 0, 0.05);
}

/* Global Reset */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* Body Typography */
body {
  font-family: "Aptos", sans-serif;
  font-weight: 500;
  background: var(--color-background);
  color: var(--color-text);
  line-height: 1.6;
}

/* Global Element Styles */
img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
  padding: 0;
}
/* 
p{
  text-align: justify;
} */

input,
textarea,
select {
  font-size: 16px !important;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
