body, html {
  margin: 0;
  padding: 0;
  height: 100%;
  overflow: hidden; /* Prevent scrolling */
}

.hero {
  background-image: url('/images/banner.jpg'); /* Your image path */
  background-size: cover;
  background-position: center;
  height: 100vh;
  position: relative;
  color: white;
  padding-bottom: 80px!important; /* or more based on your content */
}

.hero .container {
    position: absolute;
    bottom: 40px; /* Distance from bottom */
    left: 50px;   /* Margin from left */
}

/****************************************************************************************************************************
********************************************* Media Query *******************************************************************
****************************************************************************************************************************/

@media (max-width: 768px) {
  .hero {
      background-position: center center;
  }
}

@media (max-width: 480px) {
  .couple-name {
      font-size: 1.8rem;
      white-space: normal; /* Allow gentle wrap on very narrow screens */
  }

  .hero-message,
  .upload-message {
      font-size: 0.85rem;
  }

  .btn-light {
      font-size: 0.85rem;
  }
}

/****************************************************************************************************************************
****************************************************************************************************************************/



.heart-icon {
  color: #E91E63; /* Romantic pink */
  font-size: 1.5rem;
}

/******************************************************************************/


.hero-text {
  position: absolute;
  bottom: 20%;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  color: #fff;
  max-width: 90%;
  padding: 0 1rem;
  word-break: keep-word;
}

.couple-name {
  font-family: 'Great Vibes', cursive;
  font-size: 2.2rem;
  margin-bottom: 0.4rem;
  white-space: nowrap; /* Prevents wrapping */
}

.hero-message {
  font-family: 'Lora', serif;
  font-size: 0.95rem;
  margin-bottom: 0.4rem;
  line-height: 1.3;
}

.upload-message {
  font-family: 'Lora', serif;
  font-size: 0.9rem;
  font-style: italic;
  color: #ffeef5;
  line-height: 1.2;
}

.btn-light {
  background-color: #fff0f6;
  border: none;
  color: #8B3A62;
  font-weight: bold;
  font-size: 0.9rem;
  padding: 0.45rem 1rem;
  transition: background-color 0.3s ease;
}

.btn-light:hover {
  background-color: #ffd9ec;
}