/* Melbourne Fishing Spots - Global Styles */

:root {
  /* Colors */
  --color-ocean: #1a365d;
  --color-ocean-light: #2c5282;
  --color-water: #3182ce;
  --color-water-light: #90cdf4;
  --color-sand: #f7fafc;
  --color-text: #2d3748;
  --color-text-muted: #718096;

  /* Score colors */
  --color-excellent: #38a169;
  --color-good: #68d391;
  --color-fair: #ecc94b;
  --color-poor: #ed8936;
  --color-very-poor: #e53e3e;

  /* Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;

  /* Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
}

/* Reset */
*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family:
    -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  color: var(--color-text);
  background: var(--color-sand);
  line-height: 1.6;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: var(--color-water);
}

/* Utilities */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.text-center {
  text-align: center;
}

.text-muted {
  color: var(--color-text-muted);
}

/* Cards */
.card {
  background: white;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  padding: var(--space-lg);
}

/* Score badge colors */
.score-excellent {
  background: var(--color-excellent);
  color: white;
}
.score-good {
  background: var(--color-good);
  color: var(--color-ocean);
}
.score-fair {
  background: var(--color-fair);
  color: var(--color-ocean);
}
.score-poor {
  background: var(--color-poor);
  color: white;
}
.score-very-poor {
  background: var(--color-very-poor);
  color: white;
}

/* Responsive */
@media (max-width: 768px) {
  :root {
    --space-lg: 1rem;
    --space-xl: 1.5rem;
  }
}
