/**
 * Base Styles
 * Peas Digital Pro
 */

:root {
    --pd-primary: #6DBE45;
    --pd-primary-dark: #4E9A2D;
    --pd-accent: #A3D977;

    --pd-heading: #111827;
    --pd-text: #4B5563;
    --pd-muted: #6B7280;

    --pd-background: #F8FAFC;
    --pd-surface: #FFFFFF;
    --pd-border: #E5E7EB;

    --pd-font: "Inter", "Segoe UI", Roboto, Arial, sans-serif;

    --pd-container: 1200px;
    --pd-radius: 20px;
    --pd-radius-lg: 30px;

    --pd-shadow: 0 20px 50px rgba(17, 24, 39, 0.08);
    --pd-shadow-hover: 0 30px 70px rgba(17, 24, 39, 0.14);

    --pd-transition: 0.3s ease;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: var(--pd-font);
    background: var(--pd-background);
    color: var(--pd-text);
    line-height: 1.6;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
    margin-top: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--pd-heading);
    line-height: 1.15;
}

.pd-container {
    width: min(var(--pd-container), 92%);
    margin: 0 auto;
}

.pd-section {
    padding: 110px 0;
}