/* WebPrague Main Stylesheet v2.1.0 */
/* Compiled from SCSS – 2024-10-15 */

/* --- Reset & Base --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.6;
  color: #2d3748;
  background-color: #f7fafc;
}

a {
  color: #3182ce;
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: #2b6cb0;
}

/* --- Layout --- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.header {
  background: #ffffff;
  border-bottom: 1px solid #e2e8f0;
  padding: 1rem 0;
}

.header__logo {
  display: inline-block;
  font-size: 1.5rem;
  font-weight: 700;
  color: #1a202c;
}

.header__nav ul {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}

.header__nav a {
  font-size: 0.95rem;
  font-weight: 500;
  color: #4a5568;
}

.header__nav a.active {
  color: #3182ce;
  border-bottom: 2px solid #3182ce;
}

.main-content {
  min-height: 70vh;
  padding: 3rem 0;
}

.footer {
  background: #2d3748;
  color: #e2e8f0;
  text-align: center;
  padding: 2rem 0;
  font-size: 0.875rem;
}

/* --- Components --- */
.btn {
  display: inline-block;
  padding: 0.5rem 1rem;
  border-radius: 0.375rem;
  font-weight: 500;
  cursor: pointer;
  border: none;
  transition: background 0.2s;
}

.btn-primary {
  background: #3182ce;
  color: #ffffff;
}

.btn-primary:hover {
  background: #2b6cb0;
}

.card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 0.5rem;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

/* --- Utilities --- */
.text-center { text-align: center; }
.text-muted { color: #718096; }
.mt-4 { margin-top: 1rem; }
.mb-4 { margin-bottom: 1rem; }