/* Mobile-first base styles */

* {
  box-sizing: border-box;
}

@import url('https://fonts.googleapis.com/css2?family=Merriweather+Sans:ital,wght@0,300..800;1,300..800&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

body {
  margin: 0;
  font-family: "Merriweather Sans", sans-serif;
  background-color: #f6f1e8;
  color: #333;
}

.wrapper {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.card {
  width: 100%;
  max-width: 320px;
  background: white;
  padding: 24px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.logo {
  width: 240px;
  max-width: 100%;
  margin-bottom: 0;
}
h3 {
  margin-top: 0;
  font-style: italic;
  color: #b5892f;
}
.contact {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px;
  font-size: 16px;
  text-decoration: none;
  color: #333;
  border-radius: 8px;
}


.contact-item i {
  font-size: 18px;
  color: #b5892f;
}

a {
	color: #111;
	text-decoration: none;
}

.contact-item:hover {
  background-color: #f5f0ea;
}

/* Tablet and up */
@media (min-width: 600px) {
  .card {
    max-width: 420px;
    padding: 32px;
  }

  .logo {
    width: 180px;
  }

  .contact-item {
    font-size: 18px;
  }
}

/* Desktop and up */
@media (min-width: 1024px) {
  .card {
    max-width: 520px;
    padding: 40px;
  }

  .logo {
    width: 320px;
  }
}
