html, body {
  height: 100%;
  overflow-x: hidden;
}

body {
  background: #ffffff;
  font-family: 'Segoe UI', sans-serif;
  color: #797a87;
  height: 100dvh;
}

a {
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.page-wrapper {
  min-height: 100vh;
}

.card-container {
  max-width: 420px;
  background: #faf4f2;
  border-radius: 24px;
  overflow: hidden;
  margin: auto;
}

.cover-image {
  height: 220px;
  background-image: url("../img/cover-image.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.profile-img-wrapper {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  border: 6px solid darkgoldenrod;
  overflow: hidden;
  margin-top: -70px;
}

.profile-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 10%;
  transform: scale(1.25);
}

.gold-text {
  color: #8a7350;
}

.gold-bg {
  background: radial-gradient(circle, #ffee9a 0%, #b88a2e 100%);
}

.divider {
  width: 60px;
  height: 2px;
  background: #b89a5b;
  margin: 12px auto;
}

.social-icons i {
  font-size: 2rem;
  margin: 0 6px;
  color: #555;
}

.button {
  border: 1px solid #b88a2e;
}

.button:hover {
  background: radial-gradient(circle, #ffee9a 0%, #b88a2e 100%);
}

.footer-bar {
  font-size: 0.75rem;
  letter-spacing: 1px;
}

@media (max-width: 768px) {
  body {
    margin: 0;
    overflow: hidden;
  }

  .page-wrapper {
    min-height: auto;
  }

  .card-container {
    width: 100%;
    height: 100dvh;
    max-width: 100%;
    border-radius: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

  .profile-img-wrapper {
    width: 120px;
    height: 120px;
  }

  .p-4 {
    padding: 1rem !important;
  }

  .footer-bar {
    padding-bottom: calc(0.75rem + env(safe-area-inset-bottom));
  }
}