* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  min-height: 100vh;
  overflow-x: hidden;
  /*background: #f5ede4;
  color: #7d6857;
  position: relative;*/
}

.background {
  position: fixed;
  inset: 0;
  background-image: url('./IMG_5034.PNG');
  background-size: cover;
  background-position: center;
  opacity: 0.45;
  z-index: 1;
}

/*.overlay {
  position: fixed;
  inset: 0;
  background:
    linear-gradient(
      to bottom,
      rgba(249, 243, 235, 0.80),
      rgba(242, 230, 218, 0.72),
      rgba(239, 225, 210, 0.92)
    );
  z-index: 2;
}*/

.container {
  position: relative;
  z-index: 3;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
}

.logo-wrapper {
  width: 180px;
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
}

.logo-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0.95;
}

h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 68px;
  font-weight: 500;
  /*letter-spacing: 0.12em;*/
  color: #7b6658;
  text-align: center;
}

.description {
  margin-top: 20px;
  text-align: center;
  line-height: 1.8;
  color: #957c69;
  font-size: 18px;
  font-weight: 300;
  max-width: 500px;
}

.socials {
  width: 100%;
  max-width: 460px;
  margin-top: 50px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.social-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 28px;
  border-radius: 28px;
  text-decoration: none;
  background: rgba(255, 250, 246, 0.38);
  border: 1px solid rgba(234, 220, 207, 0.75);
  backdrop-filter: blur(16px);
  transition: 0.35s ease;
  box-shadow: 0 8px 32px rgba(180, 141, 115, 0.08);
}

.social-card:hover {
  transform: translateY(-4px);
  background: rgba(255, 248, 242, 0.55);
  box-shadow: 0 20px 40px rgba(181, 141, 115, 0.14);
}

.social-card h2 {
  font-size: 20px;
  font-weight: 500;
  color: #7f6959;
}

.social-card p {
  margin-top: 6px;
  color: #9d8472;
  font-size: 14px;
}

.social-card span {
  font-size: 28px;
  color: #b58d73;
  transition: 0.3s ease;
}

.social-card:hover span {
  transform: translateX(5px);
}

.footer {
  margin-top: 70px;
  font-size: 12px;
  letter-spacing: 0.35em;
  color: #a68772;
  opacity: 0.9;
}

@media (max-width: 768px) {

  h1 {
    font-size: 48px;
  }

  .description {
    font-size: 16px;
    padding: 0 10px;
  }

  .social-card {
    padding: 20px 22px;
  }

  .logo-wrapper {
    width: 140px;
    height: 140px;
  }

}