body {
  margin: 0;
  padding: 0;
  font-family: 'Handlee', cursive;
  background-color: #191818c9;
}

/* Hero container */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Glass card itself */
.glass-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  width: 520px;
  height: 520px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
  text-align: center;
  padding: 2rem;
}

/* Collage background */
.hero-collage {
  position: absolute;
  width: 100%;
  height: auto;
  object-fit: cover;
  z-index: 1;
  opacity: 0.15;
}

/* Overlay container for centered text & icons */
.hero-overlay {
  position: relative;
  z-index: 2;
  color: #f8f1ee;
  text-align: center;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.486);
  padding: 1rem;
}

/* Title and subtitle */
.hero-title {
  font-family: 'Licorice', cursive;
  font-size: 2.5rem;
  margin: 0;
  color: #fdf6f3;
}

.hero-subtitle {
  font-family: 'Handlee', cursive;
  font-size: 1.5rem;
  margin-top: 0;
  color: #e7d5d5;
}

/* Instagram and feels icons */
.feels-icon {
  display: block;
  margin: 0 auto;
  width: 150px;
  height: auto;
  transition: transform 0.2s ease;
  border-radius: 10px;
}

.insta-feed {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 1.5rem;
}
.instagram-icon {
  width: 60px;
  height: auto;
  filter: drop-shadow(1px 1px 2px rgba(0, 0, 0, 0.2));
}
@media (max-width: 600px) {
  .glass-card {
    width: 90vw;
    height: auto;
    padding: 2rem 1.5rem;
    border-radius: 24px;
  }

  .feels-icon {
    width: 120px;
  }

  .hero-title {
    font-size: 1.8rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .instagram-icon {
    width: 28px;
    margin-top: 1rem;
  }
}