@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700&display=swap');

/* Policy pages shared styles */
/* :root { color-scheme: light; } */
/* * { box-sizing: border-box; } */

html,
body,
#root
{
  font-size: clamp(1vh, 16px, 2.5vh);
  margin:0; 
  font-family:"Montserrat", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif; 
  color:#333332; 
}

header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    width: 100vw;
    z-index: 12;
    height: 6%;
    background-color: transparent;
}

.menu-icon {
    width: 30px;
    height: 30px;
    max-height: 5vh;
    max-width: 8vw;
    pointer-events: auto;
    padding: 1vh 2vw;
}

.menu-icon:hover {
    cursor: pointer;
    transform: scale(1.2);
}

.container { width:1000px; max-width: 90%; margin:24px auto; padding:0 16px; }
h1 { font-weight: normal; font-size: 2rem;}
h2 { font-size: 1rem; }

/* p, li { line-height:1.6; } */

.meta { color:#666; font-size:0.9rem; margin: top 1.5rem; }
footer { text-align: center; margin:2.5rem 0 1.5rem; font-size:0.8rem; color:#666; }
footer a { color:inherit; text-decoration:none; }
footer a:hover { text-decoration:underline; }


/* Page wrap */
.contact-wrap {
    width: min(1100px, 100%);
    margin: 5vh auto 8vh;
    display: grid;
    gap: 2rem;
}
  
/* Hero */
.contact-hero {
  text-align: center;
}


.contact-hero p {
  opacity: 0.7;
  margin: 0;
}
  
/* Card */
.contact-card {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 2rem;
  padding: clamp(1rem, 2.5vw, 2rem);
  border-radius: 24px;
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(10px) saturate(120%);
  -webkit-backdrop-filter: blur(10px) saturate(120%);
  border: 1px solid rgba(0,0,0,0.06);
}
  
  /* Left column */
  .contact-primary {
    display: grid;
    gap: 1.25rem;
    align-content: start;
  }
  
  .contact-cta h2 {
    margin: 0 0 0.25rem;
    font-size: 1.25rem;
    font-weight: normal;
    
  }

  .contact-cta p {
    /* margin: 0 0 1rem; */
    opacity: 0.7;
  }
  
  /* .btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 0.85rem 1.1rem;
    border-radius: 14px;
    background: radial-gradient(120% 120% at 0% 0%, #111 0%, #333 60%, #000 100%);
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
    transition: transform .15s ease, box-shadow .15s ease, opacity .2s ease;
  } */
  /* .btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 12px 26px rgba(0,0,0,0.18);
    opacity: 0.95;
  } */
  
  /* .quick-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 16px;
    margin-top: 1rem;
  }
  .quick-link {
    text-decoration: none;
    color: inherit;
    font-size: 0.95rem;
    opacity: 0.8;
  }
  .quick-link:hover { opacity: 1; }
   */

  /* Social */
  .contact-social {
    display: grid;
    gap: 0.5rem;
    margin-top: 0.25rem;
  }
  .contact-social span {
    /* font-size: 0.9rem; */
    opacity: 0.7;
  }
  .social-row {
    display: flex;
    gap: 14px;
  }
  .social-row a {
    display: inline-flex;
    width: 36px;
    height: 36px;
    border-radius: 12px;
    align-items: center;
    justify-content: center;
    background: #f2f2f2;
    color: #111;
    text-decoration: none;
    transition: transform .15s ease, background .15s ease;
  }
  .social-row a:hover {
    transform: translateY(-1px);
    background: #eaeaea;
  }
  
  /* Right column */
  .contact-side {
    display: grid;
    gap: 1.25rem;
    align-content: start;
  }
  .info h3 {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0 0 0.25rem;
    font-size: 1rem;
  }
  .info p,
  address {
    margin: 0;
    opacity: 0.85;
    font-style: normal;
  }
  
  /* Map placeholder */
  .map-stub {
    margin-top: 0.5rem;
    border-radius: 16px;
    height: 180px;
    background: linear-gradient(135deg, #f6f6f6, #ededed);
    border: 1px solid rgba(0,0,0,0.06);
    display: grid;
    place-items: center;
    color: #777;
    font-size: 0.9rem;
  }
  
  /* Footer row */
  .contact-footer-row {
    display: flex;
    justify-content: center;
  }
  
  /* Responsive */
  @media (orientation: portrait) {
  /* @media (max-width: 900px) { */
    .contact-card {
      grid-template-columns: 1fr;
    }
    .map-stub { height: 160px; }
  }
  

  .action-button-text {
    font-size: 1.3em;
    font-weight: bold;
    text-align: center;
    margin: 1vh;
    margin-bottom: 10px; 
  }
  
  .action-button
  {
    margin-top: auto;
    padding: 10px 20px;
    background-color: #005ba3; /* Adjust as needed */
    border: none;
    border-radius: 12px; 
    cursor: pointer;
    color: white;
    pointer-events: auto;
    opacity: 1; /* no transition*/
    transition: opacity 2s;
    z-index: 100;
    text-decoration: none;
    white-space: nowrap;
  }
  

  .action-button:hover {
    background-color:#004280;
  }
  
  .action-button.visible:active {
    transform: scale(0.9);
  }
  
  .action-button.visible a {
    /* color: white; */
    color: white;
    text-decoration: none;
  }
  
