/* Typography System */

/* Header Text */
.header-text, .text-header {
    font-size: 24px;
    font-weight: bold;
    color: #212121;
    line-height: 1.2;
    letter-spacing: -0.01em;
}

/* Subheading Text */
.subheading-text, .text-subheading {
    font-size: 18px;
    font-weight: 600;
    color: #212121;
    line-height: 1.3;
}

/* Body Text */
.body-text, .text-body {
    font-size: 16px;
    font-weight: normal;
    color: #212121;
    line-height: 1.5;
}

/* Helper or Muted Text */
.helper-text, .text-helper, .text-muted-custom {
    font-size: 13px;
    font-weight: normal;
    color: #9E9E9E;
    line-height: 1.4;
}

/* Button Text */
.button-text, .text-button {
    font-size: 14px;
    font-weight: bold;
    color: #F7F7F7;
    line-height: 1;
}

/* Dark Brown Accent Button */
.button, .btn-accent {
    background-color: #3E2723;
    color: #F7F7F7;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    font-weight: bold;
    transition: all 0.3s ease;
}

.button:hover, .btn-accent:hover {
    background-color: #5D4037;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(62, 39, 35, 0.3);
}

/* Typography Variants */
.text-xs { font-size: 12px; }
.text-sm { font-size: 13px; }
.text-base { font-size: 16px; }
.text-lg { font-size: 18px; }
.text-xl { font-size: 20px; }
.text-2xl { font-size: 24px; }
.text-3xl { font-size: 30px; }

/* Font Weights */
.font-light { font-weight: 300; }
.font-normal { font-weight: 400; }
.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }
.font-extrabold { font-weight: 800; }

/* Line Heights */
.leading-none { line-height: 1; }
.leading-tight { line-height: 1.25; }
.leading-snug { line-height: 1.375; }
.leading-normal { line-height: 1.5; }
.leading-relaxed { line-height: 1.625; }
.leading-loose { line-height: 2; }

/* Letter Spacing */
.tracking-tighter { letter-spacing: -0.05em; }
.tracking-tight { letter-spacing: -0.025em; }
.tracking-normal { letter-spacing: 0em; }
.tracking-wide { letter-spacing: 0.025em; }
.tracking-wider { letter-spacing: 0.05em; }
.tracking-widest { letter-spacing: 0.1em; }

/* Color Palette */

/* Background Colors */
.bg-main {
    background-color: #F7F7F7;
}

.bg-secondary {
    background-color: #E0E0E0;
}

/* Text Colors */
.text-primary {
    color: #212121;
}

.text-muted {
    color: #9E9E9E;
}

/* Accent / CTA Colors */
.accent, .text-accent {
    color: #3E2723;
}

/* Border Colors */
.border-muted {
    border-color: #9E9E9E;
}

/* Responsive Typography */
@media (max-width: 768px) {
    .header-text, .text-header {
        font-size: 20px;
    }
    
    .subheading-text, .text-subheading {
        font-size: 16px;
    }
    
    .body-text, .text-body {
        font-size: 14px;
    }
    
    .helper-text, .text-helper, .text-muted-custom {
        font-size: 12px;
    }
    
    .text-2xl { font-size: 20px; }
    .text-3xl { font-size: 24px; }
}

@media (max-width: 480px) {
    .header-text, .text-header {
        font-size: 18px;
    }
    
    .subheading-text, .text-subheading {
        font-size: 15px;
    }
    
    .body-text, .text-body {
        font-size: 13px;
    }
    
    .helper-text, .text-helper, .text-muted-custom {
        font-size: 11px;
    }
}

/* Color Palette */

/* Background Colors */
.bg-main {
    background-color: #F7F7F7;
}

.bg-secondary {
    background-color: #E0E0E0;
}

/* Text Colors */
.text-primary {
    color: #212121;
}

.text-muted {
    color: #9E9E9E;
}

/* Accent / CTA Colors */
.accent {
    color: #3E2723;
}

/* Border Colors */
.border-muted {
    border-color: #9E9E9E;
}
