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

:root {
  --color-dark: #1a1a1a;
  --color-primary: #f2baba;
}

html,
body {
  height: 100%;
}

body {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  background-image: url('../img/background02.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.container {
  background-color: #ffffff;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
  border-radius: 8px;
  width: 100%;
  max-width: 420px;
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 48px;
}

.logo img {
  width: 80%;
  height: auto;
}
/* 
.logo h1 {
  font-size: 32px;
  letter-spacing: 10px;
  font-weight: 500;
  color: var(--color-dark);
}

.logo .divider {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 6px;
}

.logo .divider span {
  font-size: 11px;
  letter-spacing: 3px;
  color: var(--color-dark);
}

.logo .divider::before,
.logo .divider::after {
  content: '';
  width: 20px;
  height: 1px;
  background-color: var(--color-dark);
} */

.book-button {
  display: inline-block;
  width: 100%;
  padding: 16px;
  border: 1px solid var(--color-primary);
  border-radius: 999px;
  background-color: #ffffff;
  color: var(--color-dark);
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  transition:
    background-color 0.2s ease,
    color 0.2s ease;
}

.book-button:hover {
  background-color: var(--color-primary);
  color: #ffffff;
}

.contact {
  margin-top: 48px;
  font-size: 14px;
  color: #444444;
  line-height: 1.8;
}

.contact a {
  color: #444444;
  text-decoration: none;
}

.contact a:hover {
  text-decoration: underline;
}

.social {
  margin-top: 12px;
}

.social a {
  display: inline-flex;
  padding: 8px;
  border-radius: 50%;
  border: 1px solid var(--color-primary);
  background-color: transparent;
  transition: all 0.2s ease;
}

.social a:hover {
  opacity: 0.6;
}

.icon-instagram {
  display: inline-block;
  width: 20px;
  height: 20px;
  background-color: #ffffff;
  background: url('../img/instagram.svg') no-repeat center / contain;
}
