/**
 * base.css - Core styles, variables, and reset
 * Used across all pages of Glasul Țării
 */

/* CSS Variables */
:root {
  --blue: #1A3B6B;
  --gold: #D9B56B;
  --muted: #777777;
  --bg: #ffffff;
  --card: #fbfbfd;
  --maxw: 980px;
}

/* Box Model Reset */
* {
  box-sizing: border-box;
}

/* HTML & Body Base */
html {
  overflow-x: hidden;
}

html, body {
  height: 100%;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Lato", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: #222;
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  width: 100%;
}

/* Typography Base */
h1, h2, h3, h4, h5, h6 {
  font-family: "Playfair Display", serif;
  color: var(--blue);
  margin: 0;
}

p {
  margin: 0;
  line-height: 1.5;
}

a {
  color: var(--blue);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* Container Wrapper */
.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 24px;
  width: 100%;
  overflow-x: hidden;
}

/* Responsive Typography */
@media (max-width: 600px) {
  .wrap {
    padding: 12px;
  }
}
