:root {
  --accent: hsl(215, 100%, 25%);
  --text: #000000;
  --text-muted: #111111;
  --border: rgb(201, 201, 201);
}

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

body {
  min-height: 100vh;
  background: url('public/house.jpg') center / cover no-repeat fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.card {
  background: rgba(255, 255, 255, 0.20);
  backdrop-filter: blur(24px) saturate(80%);
  -webkit-backdrop-filter: blur(24px) saturate(80%);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 2rem;
  max-width: 32rem;
  width: 100%;
  text-align: center;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
}

@supports not (backdrop-filter: blur(1px)) {
  .card {
    background: rgba(255, 255, 255, 0.88);
  }
}

h1 {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.3;
  margin-bottom: 0.75rem;
}

.description {
  color: var(--text-muted);
  font-weight: 500;
  line-height: 1.65;
  margin-bottom: 1.5rem;
}

.contacts {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}

.contact-item svg {
  color: var(--accent);
  flex-shrink: 0;
}

.contact-item a {
  font-weight: 500;
  color: var(--text);
  text-decoration: none;
}

.contact-item a:hover {
  color: var(--accent);
  text-decoration: underline;
}

hr {
  border: none;
  border-top: 1px solid var(--border);
  margin: 1.5rem 0 1rem;
}

.location {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
}
