/* kids-global.css - OVERFLOW FIXED */

/* css/global.css */
@import url("breadcrumbs.css");
@import url("../../../includes/css/header.css");
@import url("../../../includes/css/footer.css");

@font-face {
  font-family: 'Nunito';
  src: url('fonts/Nunito-Bold.woff2') format('woff2'),
       url('fonts/Nunito-Bold.woff') format('woff');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
    /* === BRAND PALETTE === */
    --color-brand-primary: #ad5207;
    --color-brand-secondary: #e88e07;
    --color-brand-background: #fff0e1;
    --color-brand-background-light: #fffaf2;
    --color-text-dark: #374151;
    --color-text-light: #ffffff;
    --color-white: #ffffff;

    /* === ACCENT COLORS === */
    --color-accent-green: #4CAF50;
    --color-accent-blue: #2196F3;
    
    /* === SHADOWS & MISC === */
    --color-placeholder: #888;
    --box-shadow-light: 0 5px 15px rgba(0,0,0,0.1);
    --box-shadow-hover: 0 12px 25px rgba(0,0,0,0.15);
    --box-shadow-cta-orange: 0 6px 20px rgba(232, 142, 7, 0.4);

    /* === FONTS === */
    --font-family-system: system-ui, sans-serif;
    --font-family-nunito: 'Nunito', sans-serif;

    /* === SPACING & RADII === */
    --spacing-xs: 5px;
    --spacing-sm: 10px;
    --spacing-md: 15px;
    --spacing-lg: 20px;
    --spacing-xl: 30px;
    --spacing-xxl: 40px;
    --spacing-section: 60px;
    --border-radius-sm: 8px;
    --border-radius-md: 12px;
    --border-radius-lg: 20px;
}

/* === BASE STYLES === */
html {
    box-sizing: border-box;
}

*,
*::before,
*::after {
    box-sizing: inherit;
}

body {
    background-color: var(--color-brand-background);
    font-family: var(--font-family-system);
    color: var(--color-text-dark);
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-family-nunito);
}

p {
    font-family: var(--font-family-system);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: var(--spacing-md);
}

.section-content-wrapper {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
    width: 100%;
    box-sizing: border-box;
}

.full-width-section {
    width: 100%;
    position: relative;
    box-sizing: border-box;
    overflow-x: hidden;
}

/* === Generic Section Title === */
.section-title {
    font-weight: 800;
    font-size: clamp(2em, 5vw, 2.8em);
    color: var(--color-brand-primary);
    text-align: center;
    margin-bottom: var(--spacing-xl);
}