body {
  margin: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-image: url('background-stones.jpg');
  background-size: cover;
  background-position: center;
  display: flex;
  justify-content: center;
  align-items: start;
  padding-top: 2rem;
  min-height: 100vh;
}

.overlay {
  background-color: rgba(255, 255, 255, 0.6);
  padding: 1.5rem;
  border-radius: 12px;
  text-align: center;
  max-width: 800px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  animation: fadeIn 1.5s ease-out;
}

.fade-in {
  animation: fadeIn 1.2s ease-out;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.main-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  font-style: italic;
  color: #8B5E3C;
  margin-bottom: 0.5rem;
}

.subtitle {
  font-style: italic;
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  color: #5C4033;
}

.description {
  font-size: 1rem;
  margin-bottom: 1.5rem;
  color: #3E3029;
}

.links {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  margin-bottom: 2rem;
}

.google-link img {
  height: 40px;
  transition: transform 0.2s;
}

.google-link img:hover {
  transform: scale(1.1);
}

a {
  color: #333;
  text-decoration: none;
  font-size: 1.1rem;
}

a:hover {
  text-decoration: underline;
}

.instagram-gradient {
  font-weight: bold;
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  transition: opacity 0.3s;
}

.instagram-gradient:hover {
  opacity: 0.8;
  text-decoration: underline;
}

.about, 

.card {
  background-color: rgba(255, 255, 255, 0.6);
  padding: 1rem 1.5rem;
  margin-bottom: 1.5rem;
  border-radius: 16px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

.card h2 {
  margin-top: 0;
  color: #6B4B30;
}


@media (max-width: 768px) {
  body {
    padding: 1rem;
    align-items: start;
  }

  .overlay {
    padding: 1rem;
    max-width: 95%;
  }

  .card {
    padding: 1rem;
    margin-bottom: 1rem;
  }

  h1.main-title {
    font-size: 2rem;
  }

  .subtitle {
    font-size: 1rem;
  }

  .description {
    font-size: 0.95rem;
  }

  .links a {
    font-size: 1rem;
  }
}
