﻿/* ===== CSS Variables ===== */
:root {
  --primary-color: #2c3e50;   /* Dark Slate Blue */
  --secondary-color: #3498db; /* Bright Blue */
  --accent-color: #e74c3c;    /* Red for accents */
  --text-color: #34495e;      /* Wet Asphalt */
  --light-bg: #f8f9fa;        /* Lighter background */
  --header-height: 60px;

  --card-bg: #ffffff;
  --border-color: #dee2e6;    /* Lighter border */
  --header-text: #ffffff;
  --shadow: 0 4px 12px rgba(0,0,0,0.08);
  --transition: all 0.3s ease;
}

* { margin:0; padding:0; box-sizing:border-box; }
    
/* ===== Base Styles ===== */
body {
  font-family: "Segoe UI", Arial, sans-serif;
  background-color: var(--light-bg);
  color: var(--text-color);
  margin: 0;
  line-height: 1.6;
}



.headerInner {
  text-align:center;
  position: relative;
}

.headerInner h1 {
  color: var(--primary-color);
  margin-top: 0.2rem;
  margin-bottom: 0.2rem;
}


/* ===== Footer ===== */
footer {
  background: var(--primary-color);
  color: #fff;
  text-align: center;
  padding: 2rem 0;
  margin-top: 3rem;
}

footer a {
  color: #fff;
  text-decoration: none;
  transition: color 0.2s ease;
}

footer a:hover {
  color: #e0a800;
  text-decoration: underline;
}
