﻿/* ============================================================
   UR-ARCHITECTURE — Contact Page Custom Stylesheet
   Extends style.css · Custom hero overlays & button styling
   ============================================================ */

/* ==========================================================
   1. CONTACT HERO (Cinematic Background & Centered Column)
   ========================================================== */

.contact-hero {
  position: relative;
  min-height: 80vh;
  padding: 10rem 0 7rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-green-darkest);
  background-image: url('/ssets/images/portfolio-meridian-residence.png');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  overflow: hidden;
  text-align: center;
}

.contact-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(7, 19, 10, 0.9) 0%,
    rgba(18, 43, 25, 0.85) 60%,
    rgba(252, 250, 242, 0.05) 100%
  );
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  z-index: 1;
}

.contact-hero-container {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 900px;
  margin: 0 auto;
}

.contact-hero-tagline {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-gold);
  margin-bottom: 1.5rem;
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  border: 1px solid var(--color-gold);
  border-radius: 50px;
  padding: 0.5rem 1.25rem;
  background: rgba(197, 155, 39, 0.12);
  box-shadow: 0 4px 15px rgba(197, 155, 39, 0.05);
}

.contact-badge-dot {
  width: 7px;
  height: 7px;
  background-color: var(--color-gold);
  border-radius: 50%;
  animation: pulse-dot 1.8s infinite ease-in-out;
}

.contact-hero-headline {
  font-family: var(--font-heading);
  font-size: clamp(2.25rem, 5vw, 4rem);
  font-weight: 700;
  color: #FCFAF2;
  line-height: 1.15;
  margin-bottom: 1.5rem;
  text-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.contact-hero-desc {
  font-family: var(--font-body);
  font-size: clamp(1rem, 2.5vw, 1.15rem);
  color: rgba(252, 250, 242, 0.85);
  line-height: 1.65;
  margin-bottom: 2.5rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.contact-hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.contact-hero-actions .btn-secondary {
  border-color: #FCFAF2;
  color: #FCFAF2;
}

.contact-hero-actions .btn-secondary:hover {
  background-color: #FCFAF2;
  color: var(--color-green-primary);
  border-color: #FCFAF2;
}


/* ==========================================================
   2. MOBILE & RESPONSIVE ADJUSTMENTS
   ========================================================== */

@media (max-width: 768px) {
  .contact-hero {
    padding: 8rem 0 5rem;
  }
}
