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

@font-face {
  font-family: "Raleway";
  src: url("assets/fonts/Raleway-Regular.woff2") format("woff2"), url("assets/fonts/Raleway-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Raleway";
  src: url("assets/fonts/Raleway-Bold.woff2") format("woff2"), url("assets/fonts/Raleway-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
body {
  position: relative;
  min-height: 100vh;
  background: #f4efe7;
  color: #3a3632;
  font-family: "Raleway", sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.background {
  position: fixed;
  inset: 0;
  z-index: 0;
}
.background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.wrapper {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: stretch;
  min-height: 100vh;
}

.card {
  background: #ffffff;
  width: 100%;
  max-width: 640px;
  padding: 3.5rem 4rem 4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: 0 0 80px rgba(0, 0, 0, 0.12);
  will-change: transform, opacity;
}

.logo {
  width: 340px;
  max-width: 80%;
  height: auto;
  margin-bottom: 2.75rem;
}

.resa-title {
  font-size: 1.35rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #a8392e;
  margin-bottom: 1.75rem;
}

.resa-links {
  width: 100%;
  max-width: 420px;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  margin-bottom: 3rem;
}

.btn {
  position: relative;
  display: block;
  overflow: hidden;
  padding: 1rem 1.5rem;
  font-size: 1.15rem;
  font-weight: 700;
  color: #a8392e;
  border: 1.5px solid #a8392e;
  border-radius: 12px;
  text-decoration: none;
  transition: background-color 0.25s ease, color 0.25s ease;
}
.btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.35) 50%, rgba(255, 255, 255, 0) 100%);
  transform: skewX(-20deg);
  transition: left 0.6s ease;
  pointer-events: none;
}
.btn:hover, .btn:focus-visible {
  background: #a8392e;
  color: #ffffff;
  outline: none;
}
.btn:hover::before, .btn:focus-visible::before {
  left: 130%;
}

.group-title {
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1.35;
  color: #a8392e;
  margin-bottom: 2rem;
}

.places {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  margin-bottom: 3rem;
}

.place h3 {
  font-size: 1.05rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #c8102e;
  margin-bottom: 0.35rem;
}
.place address {
  font-style: normal;
  font-size: 1rem;
  color: #3a3632;
  line-height: 1.55;
}
.place a {
  color: #3a3632;
  text-decoration: none;
  transition: color 0.2s ease;
}
.place a:hover {
  color: #c8102e;
}

.refonte h2 {
  font-size: 1.4rem;
  font-weight: 700;
  color: #a8392e;
  margin-bottom: 0.75rem;
}
.refonte p {
  font-size: 1rem;
  color: #3a3632;
  text-wrap: balance;
  max-width: 420px;
  margin: 0 auto;
}

@media (max-width: 600px) {
  .card {
    padding: 2.5rem 1.75rem 3rem;
  }
  .logo {
    margin-bottom: 2rem;
  }
  .resa-title,
  .group-title {
    font-size: 1.05rem;
  }
  .btn {
    font-size: 1.05rem;
  }
}
