/* =========================================
   STARPET - Base Styles & Variables
   ========================================= */

:root {
    /* Brand Color Palette */
    --clr-primary-navy: #1A365D;
    --clr-cta-orange: #F97316;
    --clr-bg-white: #FFFFFF;
    --clr-bg-gray: #F3F4F6;
    --clr-text-main: #333333;
    --clr-text-muted: #4B5563;

    /* Typography */
    --font-heading: 'Nunito', sans-serif;
    --font-body: 'Open Sans', sans-serif;

    /* Layout & Utilities */
    --max-width: 1200px;
    --transition-speed: 0.3s ease;
    --radius-sm: 6px;
    --radius-md: 12px;
}

/* Modern CSS Reset */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--clr-text-main);
    background-color: var(--clr-bg-white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

/* Global Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--clr-primary-navy);
    font-weight: 700;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-speed);
}

ul, ol {
    list-style: none;
}

img, picture, svg {
    max-width: 100%;
    display: block;
}

button, input, select, textarea {
    font: inherit;
    border: none;
    outline: none;
    background: transparent;
}