/* =========================================================
   Fetchabl Project - Base Styles
   ========================================================= */

/* Variables */
:root {
    /* Brand Colors */
    --color-primary: #FF6E4A;    /* Main Fetchabl brand color */
    --color-secondary: #364652;  /* Deep neutral (good for nav, footers) */
    --color-accent: #61C9A8;     /* Accent color (for highlights, buttons) */
    --color-highlight: #FFD275;  /* Friendly soft highlight */
    --color-light-accent: #F8F1FF; /* Very light background accent */
  
    /* Neutral Colors */
    --color-white: #ffffff;
    --color-black: #000000;
    --color-light-grey: #f5f5f5;  /* Light background option */
    --color-grey: #cccccc;        /* Borders, dividers */
    --color-dark-grey: #666666;   /* Text subtle shading */
  
    /* Text Colors */
    --color-text-main: #364652;    /* Main text color (deep neutral) */
    --color-text-light: #ffffff;   /* Light text for dark backgrounds */
  
    /* Background Colors */
    --color-background-main: #ffffff; /* Primary page background */
    --color-background-muted: #F8F1FF; /* Soft background option for sections */
  
    /* Status Colors (optional, future-proof) */
    --color-success: #4CAF50;     /* Green success messages */
    --color-warning: #FFC107;     /* Amber warning messages */
    --color-error: #F44336;       /* Red error messages */
  }
  






/* =========================================================
   CSS Reset - Normalize basic elements
   ========================================================= */

/* Reset margins, paddings, and set box sizing */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Set default font family and text rendering */
body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--color-text-main);
    background-color: var(--color-background-main);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-text-size-adjust: 100%;
}

/* Remove blue tap highlight on devices that can't hover (touch devices) */
@media (hover: none) {
    * {
        -webkit-tap-highlight-color: transparent !important;
    }
    
    button,
    a,
    input,
    select {
        -webkit-tap-highlight-color: rgba(0, 0, 0, 0) !important;
    }
}

/* Remove list styles */
ul, ol {
    list-style: none;
}

/* Remove link underline and inherit color */
a {
    text-decoration: none;
    color: inherit;
}

/* Make images and videos easier to manage */
img, picture, video, canvas, svg {
    display: block;
    max-width: 100%;
    height: auto;
}






/* =========================================================
   Base Styles - Basic elements and typography
   ========================================================= */

/* Sections */
body {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem; /* 16px */
    line-height: 1.6;
    color: var(--color-text-main);
    background-color: var(--color-background-main);
}

header {
    background-color: #f4f4f4;
    padding: 10px 20px;
}

footer {
    background-color: #f4f4f4;
    padding: 10px 20px;
    text-align: center;
}




/* Typography */
h1 {
    font-size: 2.5rem; /* 40px */
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--color-primary);
}

h2 {
    font-size: 2rem; /* 32px */
    line-height: 1.3;
    margin-bottom: 0.75rem;
    color: var(--color-primary);
}

h3 {
    font-size: 1.5rem; /* 24px */
    line-height: 1.3;
    margin-bottom: 0.75rem;
    color: var(--color-text-main);
}

h4 {
    font-size: 1.25rem; /* 20px */
    line-height: 1.4;
    margin-bottom: 0.5rem;
}

h5 {
    font-size: 1rem; /* 16px */
    line-height: 1.5;
    margin-bottom: 0.5rem;
}

h6 {
    font-size: 0.875rem; /* 14px */
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

p {
    margin-bottom: 1rem;
}



/* Link styles */

a {
    color: var(--color-primary);
    transition: color 0.3s ease;
}

a:hover {
    color: var(--color-secondary);
}





/* ==========================================================
   Media Queries - Responsive design
   ========================================================= */

/* Mobile First - Default styles here */

/* Small Tablets (optional) */
@media (min-width: 600px) {
    body{
        font-size: 1.125rem; /* 18px */
    }
}

/* Tablets */
@media (min-width: 768px) {
    body{
        font-size: 1.25rem; /* 20px */
    }
}

/* Laptops */
@media (min-width: 1024px) {
    body{
        font-size: 1.375rem; /* 22px */
    }
}

/* Large Desktops (optional) */
@media (min-width: 1200px) {
    body{
        font-size: 1.5rem; /* 24px */
    }
}


