/* css/styles.css */

/* Font Import */
@import url('https://fonts.googleapis.com/css2?family=Inter+Tight:wght@400;500;700&display=swap');
@import url('https://fonts.googleapis.com/icon?family=Material+Icons');

/* Custom Properties */
:root {
  /* Revised Colors - exactly matching design */
  --color-primary: #162C44;          /* Dark blue for text and dark sections */
  --color-secondary: #DCF2FF;        /* Secondary color */
  --color-tertiary: #465974;         /* Bright blue for buttons and accents */
  --color-text: #1A1A1A;             /* Main text color */
  --color-text-light: #666666;       /* Secondary text color */
  --color-background: #FFFFFF;       /* White background */
  --color-background-light: #F5F7F9; /* Light blue background for hero */
  --color-border: #CDD2DA;           /* Border color */
  --color-deep-grey: #63687D;
  --color-modern-ash: #CDD2DA;
  --color-soft-ash: #E4E6EC;

  /* Typography */
  --font-primary: 'Figtree', system-ui, -apple-system, sans-serif;
  --font-size-base: 16px;
  --line-height-base: 1.5;

  /* Font weights */
  --font-extralight: 200;
  --font-light: 300;
  --font-regular: 400;
  --font-medium: 500;
  --font-semibold: 600;
  --font-bold: 700;

  /* Spacing */
  --spacing-xs: 4px;
  --spacing-sm: 8px;
  --spacing-md: 12px;
  --spacing-lg: 16px;
  --spacing-xl: 32px;
  --spacing-xxl: 64px;

  /* Container */
  --container-max-width: 1240px;
  --container-padding: var(--spacing-md);

  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;

  /* Transitions */
  --transition-base: all 0.3s ease;
}

/* Reset & Base Styles */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: var(--font-size-base);
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-primary);
  line-height: var(--line-height-base);
  color: var(--color-text);
  background-color: var(--color-background);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  color: var(--color-primary);
  line-height: 1.2;
}

a {
  text-decoration: none;
}


/* Home */
.home {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  width: 100vw;
  background-color: var(--color-background);
  background-image: url('../images/home/three.jpg');
  background-size: cover;
  background-position: center;
}

.home .overlay {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh;
  width: 100vw;
  background-color: rgba(0, 0, 0, 0.5);
}

.home .overlay p {
  color: #FFFFFF;
  font-size: 18px;
  font-weight: var(--font-medium);
  text-align: center;
  margin-top: 24px;
}