/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-red: #D62828;
    --red: #C31F1F;
    --lt-red: #f3d2d2;
    --dark-red: #B91C1C;
    --white: #ffffff;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --dark-bg: #1a1a1a;
    --black: #000;
    
    /* Typography Variables */
    --font-size-base: 16px;
    --font-weight-normal: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;
    
    /* Text Sizes */
    --text-xs: 0.75rem;      /* 12px */
    --text-sm: 0.875rem;     /* 14px */
    --text-base: 1rem;       /* 16px */
    --text-lg: 1.125rem;     /* 18px */
    --text-xl: 1.25rem;      /* 20px */
    --text-2xl: 1.5rem;      /* 24px */
    --text-3xl: 1.875rem;    /* 30px */
    --text-4xl: 2.25rem;     /* 36px */
    --text-5xl: 3rem;        /* 48px */
    --text-6xl: 3.75rem;     /* 60px */
    --text-7xl: 4.5rem;      /* 72px */
    
    /* Line Heights */
    --leading-none: 1;
    --leading-tight: 1.25;
    --leading-snug: 1.375;
    --leading-normal: 1.5;
    --leading-relaxed: 1.625;
    --leading-loose: 2;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    font-size: var(--font-size-base);
    font-weight: var(--font-weight-normal);
    line-height: var(--leading-normal);
    color: #1a1a1a;
    background-color: var(--white);
}

/* Typography System */
h1, h2, h3, h4, h5, h6 {
    font-weight: var(--font-weight-bold);
    line-height: var(--leading-tight);
    margin: 0;
}

h1 {
    font-size: var(--text-5xl);
    line-height: var(--leading-tight);
}

h2 {
    font-size: var(--text-4xl);
    line-height: var(--leading-tight);
}

h3 {
    font-size: var(--text-2xl);
    line-height: var(--leading-snug);
}

h4 {
    font-size: var(--text-xl);
    line-height: var(--leading-snug);
}

h5 {
    font-size: var(--text-lg);
    line-height: var(--leading-normal);
}

h6 {
    font-size: var(--text-base);
    line-height: var(--leading-normal);
}

p {
    font-size: var(--text-base);
    font-weight: var(--font-weight-normal);
    line-height: var(--leading-relaxed);
    margin: 0;
}

/* Text Utility Classes */
.text-xs { font-size: var(--text-xs); }
.text-sm { font-size: var(--text-sm); }
.text-base { font-size: var(--text-base); }
.text-lg { font-size: var(--text-lg); }
.text-xl { font-size: var(--text-xl); }
.text-2xl { font-size: var(--text-2xl); }
.text-3xl { font-size: var(--text-3xl); }
.text-4xl { font-size: var(--text-4xl); }
.text-5xl { font-size: var(--text-5xl); }
.text-6xl { font-size: var(--text-6xl); }

/* Font Weight Classes */
.font-normal { font-weight: var(--font-weight-normal); }
.font-medium { font-weight: var(--font-weight-medium); }
.font-semibold { font-weight: var(--font-weight-semibold); }
.font-bold { font-weight: var(--font-weight-bold); }

/* Line Height Classes */
.leading-none { line-height: var(--leading-none); }
.leading-tight { line-height: var(--leading-tight); }
.leading-snug { line-height: var(--leading-snug); }
.leading-normal { line-height: var(--leading-normal); }
.leading-relaxed { line-height: var(--leading-relaxed); }
.leading-loose { line-height: var(--leading-loose); }

h3,h2 { font-weight: 700 !important;}

/* Container */
.container {
    max-width: 1280px !important;
    margin: 0 auto;
    padding: 0 24px;
}

.max-width {
    max-width: 896px;
}

/* Background Colors */
.bg-gray {
    background-color: var(--gray-50);
}

.bg-red {
    background-color: var(--primary-red);
}

/* Icons */
.icon-sm {
    width: 16px;
    height: 16px;
    stroke-width: 2;
}

.icon-md {
    width: 24px;
    height: 24px;
    stroke-width: 2;
}

.icon-lg {
    width: 32px;
    height: 32px;
    stroke-width: 2;
}

.icon-xl {
    width: 40px;
    height: 40px;
    stroke-width: 2;
}

/* Buttons */
.btn {
    padding: 12px 32px;
    border-radius: 9999px;
    border: none;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
    text-align: center;
}

.btn-lg {
    padding: 16px 32px;
    font-size: 18px;
}

.btn-outline-white {
    background-color: var(--primary-red);
    color: var(--white);
    border: 2px solid var(--white) !important;
}

.btn-white-red {
    background-color: var(--white);
    color: var(--primary-red);
}

.btn-white-red:hover {
    background-color: var(--gray-100);color: var(--primary-red);
}

.btn-red {
    background-color: var(--primary-red);
    color: var(--white);
}

.btn-red:hover {
    background-color: var(--dark-red);
}

/* Text Utilities */
.text-white {
    color: var(--white) !important;
}

/* Hero Section */
.hero-section {
    background-color: var(--primary-red);
    color: var(--white);
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 8px;
}

.brand-name {
    font-size: 24px;
    font-weight: 700;
}

.navbar-menu {
    display: none;
    align-items: center;
    gap: 32px;
}

.nav-link {
    transition: opacity 0.3s ease;
}

.nav-link:hover {
    opacity: 0.8;
}

.mobile-menu-toggle {
    background: none;
    border: none;
    color: var(--white);
    cursor: pointer;
    padding: 8px;
    display: block;
}