/* Основные цвета */
:root {
  --color-bg: #ffffff;
  --color-text: #333333;
  --color-accent: #0d3b66;
  --color-burgundy: #800020;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Segoe UI', system-ui, sans-serif;
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.6;
}

.header {
  position: relative;
  background: url('eiffel_tower.jpeg') no-repeat center/cover;
  height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.header::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
}
.header-content {
  position: relative;
  z-index: 1;
  color: #ffffff;
  padding: 20px;
}
.header-content .logo {
  font-family: Georgia, serif;
  font-size: 2rem;
  font-weight: bold;
  color: var(--color-burgundy);
  margin-bottom: 1rem;
}
.header-content h1 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}
.header-content p {
  font-size: 1.2rem;
}

.nav {
  position: absolute;
  top: 20px;
  right: 20px;
}
.nav a {
  color: #fff;
  text-decoration: none;
  margin-left: 1em;
  font-size: 1rem;
}

.container {
  max-width: 800px;
  margin: 2rem auto;
  padding: 0 1rem;
}

h1, h2 {
  font-weight: bold;
  color: var(--color-accent);
}
h2 {
  margin-top: 1.5rem;
  margin-bottom: 1rem;
  font-size: 1.8rem;
}
p {
  margin-bottom: 1rem;
}

.footer {
  text-align: center;
  padding: 1rem;
  border-top: 1px solid #ccc;
  margin-top: 2rem;
}
.footer a {
  color: var(--color-accent);
  text-decoration: none;
  font-weight: bold;
}




#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #f7f7f7;
  border-top: 2px solid var(--color-burgundy);
  padding: 1rem;
  font-size: 0.9rem;
  z-index: 1000;
  display: none;
}
#cookie-banner p {
  margin-bottom: 0.5rem;
  color: var(--color-text);
  text-align: center;
}
#cookie-banner a {
  color: var(--color-accent);
  text-decoration: underline;
}
.cookie-buttons {
  text-align: center;
  margin-top: 0.5rem;
}
.cookie-buttons button {
  margin: 0 0.5rem;
  padding: 0.5rem 1rem;
  font-size: 1rem;
  border: none;
  background: var(--color-burgundy);
  color: #fff;
  cursor: pointer;
}
.cookie-buttons button:hover {
  opacity: 0.9;
}
