:root {
  --primary-color: #c62828;
  --primary-dark: #8e0000;
  --secondary-color: #1565c0;
  --text-dark: #212121;
  --text-light: #757575;
  --bg-light: #f5f5f5;
  --white: #ffffff;
}
/* Ensure Contact page uses the same global typography as the site */
.page-header,
.content,
.card,
.contact-list,
.loc-block {
  font-family: inherit;
}


/* Page header */
.page-header {
  margin-top: 0;
  padding: 3rem 3rem 2rem;
  background: linear-gradient(135deg, #1a237e, #283593);
  color: white;
}

.page-header-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.page-title {
  font-size: 2.4rem;
  margin-bottom: 0.5rem;
}

.page-subtitle {
  font-size: 1rem;
  opacity: 0.95;
  max-width: 700px;
}

/* Layout */
.content {
  max-width: 1200px;
  margin: 2.5rem auto 4rem;
  padding: 0 3rem;
}

.grid {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 2rem;
  align-items: flex-start;
}

/* Cards */
.card {
  background: white;
  border-radius: 16px;
  padding: 1.8rem;
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
  border: 1px solid #e0e0e0;
}

.card h2 {
  font-size: 1.4rem;
  margin-bottom: 0.8rem;
}

/* Contact list */
.contact-list {
  list-style: none;
  padding-left: 0;
}

.contact-list li {
  margin-bottom: 1rem;
}

.contact-label {
  font-size: 0.85rem;
  text-transform: uppercase;
  color: var(--text-light);
  letter-spacing: 1px;
}

.contact-value {
  font-size: 1rem;
}

.contact-value a {
  text-decoration: none;
  color: var(--primary-color);
  font-weight: 600;
}

/* Buttons */
.actions-row {
  margin-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.actions-row-tight {
  margin-top: 1rem;
}

.btn-outline {
  padding: 0.7rem 1.2rem;
  border-radius: 999px;
  border: 1px solid var(--primary-color);
  color: var(--primary-color);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
}

.btn-outline:hover {
  background: var(--primary-color);
  color: white;
}

/* Location block */
.loc-block {
  margin-top: 0.25rem;
}

.loc-name {
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--text-dark);
  font-weight: 600;
}

.loc-address {
  margin-top: 0.35rem;
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--text-light);
}

.map-frame {
  margin-top: 1rem;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid #e0e0e0;
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}
/* Prevent horizontal overflow from embedded content */
.card, .grid, .content { max-width: 100%; }
.map-frame { max-width: 100%; }

/* Make iframe responsive */
.map-iframe {
  display: block;
  width: 100%;
  height: 320px;
  border: 0;
}


.visit-note {
  margin-top: 1rem;
  font-size: 0.9rem;
  color: var(--text-light);
}

/* Responsive */
@media (max-width: 968px) {
  .content { padding: 0 1.5rem; }
  .page-header { padding: 2.5rem 1.5rem 1.5rem; }
  .grid { grid-template-columns: 1fr; }
}


/* Slightly shorter map on small phones */
@media (max-width: 600px) {
  .map-iframe { height: 260px; }
}

/* Contact page: never hide the navbar toggle on mobile */
@media (max-width: 968px) {
  .nav-toggle, .navbar-toggle, .hamburger, .menu-toggle {
    display: inline-flex !important;
    visibility: visible !important;
    opacity: 1 !important;
  }
}

.contact-aux-link{
  align-self:center;
  text-decoration:none;
  font-weight:600;
  color: var(--primary-color);
}
.contact-aux-link:hover{ text-decoration: underline; }
