/**
 * @file
 * Base styles for Ptasie Wyprawy theme.
 */

/* Import Google Fonts - Jura */
@import url('https://fonts.googleapis.com/css2?family=Jura:wght@300..700&display=swap');

:root {
  --bg-primary: #f0f0f0;
  --bg-accent: #12403c;
  --text-primary: #0a0a0a;
  --text-inverse: #ffffff;
  --accent-color: #ff6b35;
  --bg-title-in: rgba(9, 31, 27, 0.7);
  --bg-title-out: rgba(9, 25, 24, 0.2);
}


/* Reset and base styles */
* {
  box-sizing: border-box;
}

html {
  max-width: 100%;
  overflow-x: hidden;
}

body {
  margin: 0;
  padding: 0;
  font-family: 'Jura', -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  font-weight: 400;
  line-height: 1.6;
  color: var(--text-primary);
  max-width: 100%;
  overflow-x: hidden;
  background: var(--bg-primary);
  min-height: 100vh;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  margin-top: 0;
  margin-bottom: 0.5em;
  font-weight: 400;
  line-height: 1.2;
}

p {
  margin-top: 0;
  margin-bottom: 1em;
}

a {
  color: #0073aa;
  text-decoration: none;
}

a:hover,
a:focus {
  text-decoration: underline;
}

/* Images */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

