/* Contact Us */
.contact-hero-page {
  position: relative;
  background: url("../images/contact.jpg") no-repeat center center/cover;
  height: 500px;
  margin: auto;
  font-size: 60px !important;
  background-position: center; /* default */
  transition: background-position 0.1s ease-out;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  flex-direction: column;
}
.contact-hero-page::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 1;
}
.contact-hero-div {
  max-width: 90%;
  z-index: 2;
  position: relative;
}
.contact-hero-page-title {
  font-family: "Times New Roman", Times, serif;
  color: #d0a852;
  font-size: 48px;
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 1.2s ease forwards 0.3s;
  text-shadow: 0 10px 30px rgba(0,0,0,0.4);
}
.contact-hero-page-sub {
  font-size: 18px;
  color: #ffffff;
  letter-spacing: 1px;
  text-transform: none;
  font-style: italic;    
  text-align: center;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 1.2s ease forwards 0.3s;
  text-shadow: 0 10px 30px rgba(0,0,0,0.4);
}
@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.info-section {
  margin: 0 auto;
  padding: 40px 20px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  /* background: var(--background-gold-shimmer); */
}

.card {
  background: #fff;
  color: #0e2146;
  flex: 1;
  padding: 20px 30px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.card i {
  display: block;
  font-size: 2.5rem;      /* icon size */
  color: #501063;         /* icon color */
  margin: 0 auto 12px;
  display: inline-block;
}

.card .icon {
  display: block;         
  margin: 0 auto 12px;    
  stroke: #007bff;
  stroke-width: 1.5;
  width: 36px;
  height: 36px;
}

.card h3 {
  margin: 0 0 12px;
  font-size: 1.2rem;
  font-weight: 600;
}

.card a {
  color: #007bff;
  text-decoration: none;
  font-weight: 500;
}

.card p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.5;
}

.map-container {
  margin: 40px auto;     /* space outside */
  padding: 20px;         /* space inside the box */
  height: 500px;
  box-sizing: border-box; /* keeps padding inside height */
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: 2px solid #f3d449;
  border-radius: 25px;
}

/* Subscription form starts */
.header-style {
  font-weight:600;
  font-size: 34px;  
}

.signup-text {
  color: #ffffff;
}

.btn.submit-text {
  background-color: #cdaaff;
  color: #ffffff;
}

.btn-purple-gold {
  background: var(--background-radial-center);
  border: none;
  color: #fff;
  transition: 0.3s ease;
}

.btn-purple-gold:hover {
  background: linear-gradient(90deg, #4e087f, #b08a2f);
  color: white;
}

.btn.rounded-pill {
  border-width: 2px; 
}

.contact-btn.gold-blank {
  display: inline-block;
  padding: 12px 28px;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #d0a852; /* gold text */
  background-color: #ffffff; /* white fill */
  border: 2px solid #d0a852; /* gold outline */
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.contact-btn.gold-blank:hover {
  background-color: #d0a852; /* gold fill */
  color: #ffffff; /* white text */
  box-shadow: 0 6px 18px rgba(208, 168, 82, 0.35);
  transform: translateY(-2px);
}

/* .btn.submit-btn:hover {
  background-color: #f3d449;
} */

.sub {
  margin-top: 2rem;
  height: 10vh;
}

.sub h3 {
  text-align: center;
}

form {
  text-align: center;
  margin: 0.4rem 2rem;
}

.email-sub {
  padding: 0.2rem;
  border: 1px solid var(--primary-color);
  border-radius: 4px;
}

.email-sub:focus {
  border: 1px solid var(--secondary-color);
  outline: none;
}
/* Subscription form ends */

@media (max-width: 768px) {
  .contact-hero-page::before {
    background-position: 30% center;
  }
}

@media (max-width: 420px) {
  .contact-hero-page::before {
    background-position: 10% center;
  }
  .contact-hero-page-title {
    font-size: 25px;
    padding: 0 15px;
  }
}