/* ---------- base.css ---------- */

/* CSS Reset (modern minimal reset) */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Root Variables */
:root {
  --color-primary: #b55a00;
  --color-secondary: #0c1a35;
  --color-bg-light: #fffdf9;
  --color-badge-bg: #ffe7b3;
  --color-badge-text: #8a5800;
  --color-text: #444;
  --color-white: #ffffff;

  --copper: #C85A0A;
  --dark-bg: #0e0e0e;
  --light-bg: #ffffff;
  --text-color: #1c1c1c;

  --color-bg: #ffffff;
  --color-text: #2e2e2e;
  --color-muted: #666;
  --color-heading: #1a1a1a;
  --color-accent: #b87333; /* copper tone */
  --color-accent-dark: #8b4513;
  --color-border: #e5e5e5;
  --radius: 12px;
  --shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
  --max-width: 1080px;
  

  --transition: all 0.3s ease;
  --max-width: 1280px;

  --radius-md: 0.5rem;
  --radius-lg: 1rem;

  --font-main: "Inter", "Segoe UI", sans-serif;

  --card-bg: #ffffff;
  --card-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 1px 5px 0 rgba(0, 0, 0, 0.12);
  --muted: #6b7280;

}


/* Base Body */
body {
  font-family: var(--font-main);
  font-size: 16px;
  color: var(--color-text);
  background-color: var(--color-bg-light);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

/* Headings */
h1, h2, h3, h4, h5, h6 {
  color: var(--color-secondary);
  font-weight: 700;
  line-height: 1.2;
}

/* Links & Buttons default reset */
a {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

button {
  cursor: pointer;
  border: none;
  background: none;
}

/* ---------- BASE ELEMENT STYLES ---------- */

body {
  font-family: 'Inter', sans-serif;
  color: #1a1a1a;
  background-color: #fff;
  margin: 0;
  padding: 0;
}

h1, h2, h3, h4, h5 {
  font-weight: 700;
  margin: 0;
}

p {
  margin: 0 0 1rem;
  line-height: 1.6;
  color: #555;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  border: none;
}

.container {
  width: 90%;
  max-width: 1280px;
  margin: 0 auto;
}

/* small utility */
.grid-inner { display: grid; grid-template-columns: repeat( auto-fit, minmax(240px, 1fr) ); gap: 20px; align-items: stretch; }
.loading { opacity: 0.6; pointer-events: none; }


.iubenda-tp-btn-container{display:none;} /* hiding the unnecessary iubenda popup on the front end bottom right */