body
{
  margin: 0;
  padding-top: 80px;
  font-family: 'Lato', Roboto, Arial, sans-serif;
  background-image: url('../icons/ethan.png');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-color: black;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

body::before
{
  content: '';
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  z-index: 0;
  pointer-events: none;
}


/* =========================
   Contact page layout
========================= */
.contactpage
{
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  margin: 70px 20px 40px 60px;
  position: relative;
  z-index: 1;
  flex: 1;
}

.contact-heading
{
  margin-bottom: 32px;
}

.contact-eyebrow
{
  display: block;
  font-family: 'Lato', Arial, sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 10px;
}

.contact-title
{
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 600;
  font-style: italic;
  color: white;
  margin: 0 0 16px;
  letter-spacing: 0.03em;
  line-height: 1.1;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.4);
}

.contact-rule
{
  width: 48px;
  height: 1px;
  background: rgba(255, 255, 255, 0.5);
}

.contact-section
{
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 50px;
  position: relative;
  z-index: 1;
  padding: 60px 70px 60px 10%;
  min-height: calc(100vh - 80px);
}

.contact-text
{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
}

.ethan-photo
{
  width: 340px;
  height: 340px;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid rgba(255, 255, 255, 0.8);
  flex-shrink: 0;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.5);
}

.minister,
.email,
.phone-number
{
  margin-bottom: 28px;
}

.phone-number
{
  margin-bottom: 0;
}

/* Labels */
.minister-label,
.email-label,
.phone-number-label
{
  font-family: 'Lato', Arial, sans-serif;
  font-weight: 400;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.3em;
  display: block;
  margin-bottom: 8px;
}

/* Values */
.minister-text,
.email-text,
.phone-number-text
{
  font-family: 'Lato', Arial, sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 300;
  color: white;
  text-decoration: none;
  display: block;
  letter-spacing: 0.08em;
  line-height: 1.2;
  transition: opacity 0.2s ease;
}

.minister-text:hover,
.email-text:hover,
.phone-number-text:hover
{
  opacity: 0.75;
  text-decoration: none;
}

.contact-spacer
{
  display: none;
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media screen and (max-width: 700px) {
  .contact-section {
    padding: 32px 28px;
    justify-content: center;
  }
  .contact-text {
    align-items: center;
    text-align: center;
  }
  .contact-rule {
    margin: 0 auto;
  }
  .contact-spacer {
    display: none;
  }
}

@media screen and (max-width: 480px) {
  .contact-section {
    margin: 24px 16px;
    padding: 24px 20px;
  }
  .minister-text,
  .email-text,
  .phone-number-text {
    font-size: clamp(1.3rem, 6vw, 1.8rem);
  }
  .contact-title {
    font-size: clamp(1.8rem, 7vw, 2.4rem);
  }
}

/* iOS Safari fix — background-attachment: fixed doesn't work on touch devices */
@media (hover: none) and (pointer: coarse) {
  body {
    background-attachment: scroll;
  }
  body::before {
    background-attachment: scroll;
  }
}
