/* Загальні скидання */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-image: url('2021_12_06_pizza.jpg');
  position: relative;
  color: #fff;
  font-family: 'Segoe UI', sans-serif;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 100vh;
  overflow-x: hidden;
  z-index: 0;
}

body::before {
  content: '';
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-image: url('1614444689_53ac158b3556b63c2b8b.jpg');
  background-size: cover;
  background-position: center;
  filter: brightness(50%);
  z-index: -2;
}

body::after {
  content: '';
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: -1;
}

header {
  width: 100%;
  background-color: #ffffff;
  color: #333;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
  padding: 40px 30px;
  border-radius: 10px;
  text-align: center;
  margin-bottom: 20px;
  z-index: 10;
}

header h1 {
  font-family: 'Lobster', cursive;
  font-size: 64px;
  color: #b30000;
}

nav ul {
  display: flex;
  justify-content: center;
  gap: 30px;
  list-style: none;
  margin-top: 20px;
}

nav ul li a {
  text-decoration: none;
  font-size: 18px;
  color: #6a040f;
  font-weight: bold;
  transition: color 0.3s ease;
}

nav ul li a:hover,
nav ul li a.active {
  color: #b30000;
}

.content-wrapper {
  max-width: 1300px;
  width: 100%;
  padding: 40px 20px;
  display: flex;
  justify-content: center;
  z-index: 5;
}

/* Факти про піцу */

.facts-section {
  width: 100%;
  max-width: 900px;
  background-color: #ffffffdd;
  border-radius: 12px;
  padding: 30px 40px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
  color: #333;
  font-size: 18px;
  line-height: 1.6;
  user-select: none;
}

.facts-section h2 {
  font-family: 'Lobster', cursive;
  font-size: 38px;
  color: #b30000;
  text-align: center;
  margin-bottom: 25px;
  text-shadow: 1px 1px 2px rgba(179, 0, 0, 0.6);
}

.fact-card {
  background-color: #fff;
  padding: 20px 25px;
  margin-bottom: 20px;
  border-radius: 10px;
  box-shadow: 0 6px 15px rgba(179, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: default;
}

.fact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(179, 0, 0, 0.4);
}

.fact-card h3 {
  font-family: 'Lobster', cursive;
  font-size: 26px;
  margin-bottom: 12px;
  color: #b30000;
}

.fact-card p {
  font-size: 17px;
  color: #444;
}

/* Футер */

footer {
  width: 100%;
  background-color: #6a040f;
  color: white;
  padding: 20px 0;
  text-align: center;
  font-size: 16px;
  margin-top: auto;
  user-select: none;
}