/* styles.css */
/* Import Inter font from Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

/* Color Variables */
:root {
    --primary: #2c3e50;          /* Deep blue-grey */
    --primary-contrast: #1abc9c;  /* Teal */
    --text: #34495e;             /* Soft blue-grey */
    --surface: #ecf0f1;          /* Light grey */
    --background: #ffffff;        /* White */
    --destructive: #e74c3c;      /* Red */
    --success: #2ecc71;          /* Green */
    --alert: #f39c12;            /* Orange */
    --border: #bdc3c7;           /* Light grey */
    --charcoal: #616161;         /* Medium grey */
}

/* Base styles */
body {
    font-family: 'Inter', sans-serif;
    font-size: 16px;            /* Body Medium */
    line-height: 1.4;
    color: var(--text);
    margin: 0;
    padding: 0;
    background-color: var(--background);
}

/* Typography */
h1 { font-size: 72px; }
h2 { font-size: 60px; }
h3 { font-size: 48px; }
h4 { font-size: 25px; }
h5 { font-size: 20px; }
h6 { font-size: 18px; }

.body-large { font-size: 18px; }
.body-medium { font-size: 16px; }
.body-small { font-size: 14px; }

/* Layout Components */
.header {
    background-color: var(--primary-contrast);
    height: 128px;
    padding: 0 2rem;
    display: flex;
    align-items: center;
}

.header .container {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.footer {
    background-color: var(--surface);
    min-height: 120px;
    padding: 48px 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    flex-shrink: 0;
}

.logo img {
    display: block;  /* Removes any unwanted spacing */
}

.tagline {
    flex-grow: 1;    /* Takes up remaining space */
    text-align: center;
    font-size: 24px; /* Adjust size as needed */
    color: var(--text);
}

/* Main content sections */
.main-content {
    padding: 2rem;
}

.mission-section {
    text-align: center;
    padding: 3rem 0;
}

.product-section {
    background-color: var(--surface);
    padding: 3rem 0;
}

.product-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.product-section h4 {
    text-align: center;
}

.vision-section {
    padding: 3rem 0;
    max-width: 1200px;
    margin: 0 auto;
}

/* Buttons */
.button {
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 500;
    text-decoration: none;
    display: inline-block;
}

.button-primary {
    background-color: var(--primary);
    color: var(--primary-contrast);
    border: none;
}

.button-secondary {
    background-color: var(--primary-contrast);
    color: var(--text);
    border: 1px solid var(--border);
}

/* Links */
.nav-link {
    color: var(--text);
    text-decoration: none;
    padding: 0.5rem 1rem;
}

/* Utility classes */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.text-center { text-align: center; }
.mb-2 { margin-bottom: 2rem; }
.mb-4 { margin-bottom: 4rem; }
