/* Hero Background Image */
.hero-image {
  background-image: url('phero6.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 70vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 0rem;
  padding-top: 0rem;
  margin: 0;
  flex-direction: column;
}

.hero {
  text-align: center;
  padding: 1.5rem 2.5rem 2.5rem 2.5rem;
  max-width: 900px;
  margin: 0 auto;
  margin-top: 0rem;
}


/* Title */
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  font-weight: 700;
  color: rgb(0, 0, 0);
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
  display: block;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  margin-top: 0rem;
}

/* Description */
.hero-description {
  font-size: 1.25rem;
  font-family: 'Lora', serif;
  color: #000000;
  margin-bottom: 3rem;
  font-weight: 500;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.8;
  text-align: center;
  letter-spacing: 0.3px;

  /* Layered text shadow for glow + depth */
  text-shadow:
    0 0 10px rgba(255, 255, 255, 0.3),   /* soft white glow */
    2px 2px 6px rgba(0, 0, 0, 0.25),      /* subtle depth */
    0 0 4px rgba(255, 255, 255, 0.4);    /* ambient shimmer */
}


.hero-link {
  text-align: center;
  font-size: 1.4rem;
  font-family: 'Lora', serif;
  font-weight: 600;
  color: #000000;
  margin-top: 2rem;
  margin-bottom: 2rem;
  line-height: 1.7;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.gallery-link {
  color: #753831;
  font-weight: 600;
  text-decoration: none;
  border-bottom: 2px solid #753831;
  transition: all 0.3s ease;
  text-shadow: 0 0 8px rgba(255, 255, 255, 0.2);
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.2);
  font-family: 'Lora', serif;
  font-weight: 700;
}

.gallery-link:hover {
  color: ##753831;
  border-bottom-color: #753831;
  background-color: #f0eae7;
  padding: 0.2rem 0.4rem;
  border-radius: 8px;
}


/* Button Container */
.hero-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  /* ✨ Add these lines */
  animation: fadeIn 0.8s ease-out;
  animation-fill-mode: both;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 1rem 2rem;
  background: rgba(255, 255, 255, 0.9);
  color: #574937;
  text-decoration: none;
  border-radius: 20px;
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  font-family: 'Georgia', serif;
  margin-bottom: 0rem;
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.3);
  background: white;
}

@media (max-width: 600px) {
  .hero-image {
    text-align: center;
    align-items: center;
    justify-content: center;
  }

  .hero {
    width: min(94vw, 720px);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1.2rem 1rem 2rem 1rem;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-title {
    width: 100%;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-description {
    font-size: 1.1rem;
    width: 100%;
    max-width: 36rem;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-link {
    font-size: 1.25rem;
    line-height: 1.8;
    margin-left: 1.25rem;
    margin-right: 1.25rem;
    margin-top: 1rem;
    margin-bottom: 1rem;
    max-width: none;
  }

  .hero-buttons {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    justify-items: center;
    align-items: center;
    gap: 0.8rem;
    width: min(94vw, 420px);
    margin: 0 auto;
  }

  .btn {
    width: 100%;
    box-sizing: border-box;
    padding: 0.9rem 1rem;
    font-size: 1rem;
    text-align: center;
  }
}

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

