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

body {
  font-family: 'Roboto', sans-serif;
  background: url('leather-bg.jpg') center/cover no-repeat fixed;
  color: #f5f5f5;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.overlay {
  background: rgba(0, 0, 0, 0.65);
  padding: 3rem;
  border-radius: 10px;
  text-align: center;
  max-width: 500px;
  width: 90%;
}

.logo {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  letter-spacing: 2px;
  margin-bottom: 1rem;
  color: #c19a6b;
}

main h2 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  font-family: 'Playfair Display', serif;
}

main p {
  margin-bottom: 1.5rem;
  line-height: 1.5;
  font-weight: 300;
}

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

.subscribe-form input {
  padding: 0.8rem;
  border: none;
  border-radius: 5px;
  outline: none;
}

.subscribe-form button {
  padding: 0.8rem;
  background-color: #c19a6b;
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.subscribe-form button:hover {
  background-color: #a17c52;
}

footer {
  margin-top: 2rem;
  font-size: 0.9rem;
}

.socials {
  margin-top: 0.5rem;
}

.socials a {
  color: #c19a6b;
  text-decoration: none;
  margin: 0 0.5rem;
  transition: color 0.3s;
}

.socials a:hover {
  color: #fff;
}

