/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:wght@400;500&family=Space+Grotesk:wght@500;600;700&display=swap');

/* Root Variables for Fonts and Colors */
:root {
    --font-heading: 'Space Grotesk', sans-serif;
    --font-body: 'IBM Plex Sans', sans-serif;

    /* Azentrix Brand Colors */
    --color-primary: #003A5A;
    /* Deep Blue */
    --color-accent: #9CBED7;
    /* Light Sky Blue */
    --color-highlight: #D7A76D;
    /* Warm Gold */
    --color-text: #1c1c1c;
    --color-bg: #ffffff;
}

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

/* Body Base Styles */
/* body {
    font-family: var(--font-body);
    font-size: 2vh;
    line-height: 1.6;
    color: var(--color-text);
    background-color: var(--color-bg);
} */

/* Headings */
/* h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 500;
    line-height: 1.2;
}

h1 {
    font-size: 6vh;
    font-weight: 500;
    letter-spacing: -0.02em;
}

h2 {
    font-size: 4.5vh;
    font-weight: 600;
    letter-spacing: -0.01em;
}

h3 {
    font-size: 3.5vh;
    font-weight: 600;
}

h4 {
    font-size: 2.5vh;
    font-weight: 500;
}

h5,
h6 {
    font-size: 2vh;
    font-weight: 500;
} */

/* Paragraphs */
/* p {
    font-family: var(--font-body);
    font-size: clamp(1rem, 1.8vh, 1.2rem);
    font-weight: 400;
    letter-spacing: 0.02em;
    line-height: 1.6;
} */

/* Links */
/* a {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.8vh;
    color: var(--color-accent);
    text-decoration: none;
    transition: all 0.3s ease;
    letter-spacing: 0.05em;
}

a:hover {
    color: var(--color-highlight);
    text-decoration: underline;
} */

/* Buttons */
/* button {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.8vh;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.8em 1.6em;
    border: none;
    background-color: var(--color-primary);
    color: white;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
}

button:hover {
    background-color: var(--color-highlight);
    color: #1c1c1c;
} */

/* Navbar */
/* .navbar {
  font-family: var(--font-body);
  font-size: 1.8vh;
  font-weight: 500;
  letter-spacing: 0.05em;
  display: flex;
  gap: 2rem;
}

.navbar a {
  text-transform: uppercase;
  color: var(--color-primary);
  transition: color 0.3s ease;
} */