/* ===== Contact page ===== */
.contact-main {
  padding-top: calc(var(--header-h) + var(--space-xl));
  padding-bottom: var(--space-2xl);
  min-height: 100vh;
}

.hero-contact {
  padding: 15vh 0;
  min-height: 40vh;
  margin-top: calc(-1 * var(--header-h)); /* Pull under header */
}

.hero-contact .hero-title {
  font-size: clamp(3rem, 6vw, 5rem);
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.contact-container {
  max-width: 1200px;
  margin-top: calc(-1 * var(--space-xl));
  position: relative;
  z-index: 2; /* To float above hero if needed */
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  background-color: var(--bg);
  padding: var(--space-xl);
}

@media (min-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* ===== Contact Info Blocks ===== */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}

.info-block {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
}

.info-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  color: var(--accent); /* Golden color of the logo */
}

.info-icon svg {
  width: 100%;
  height: 100%;
}

.info-content h2 {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 0 0.5rem 0;
  color: var(--text);
}

.info-content p {
  color: var(--text-muted);
  font-size: 1.1rem;
  line-height: 1.6;
  margin: 0;
}

/* ===== Social Buttons ===== */
.social-buttons {
  display: flex;
  gap: var(--space-sm);
  margin-top: var(--space-md);
  flex-wrap: wrap;
}

.btn-social {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--bg);
  background: var(--accent);
  transition: opacity 0.3s ease, transform 0.2s ease, background 0.2s ease;
  border: none;
}

.btn-social:hover {
  opacity: 0.9;
  transform: translateY(-2px);
  color: var(--bg);
  background: var(--accent-hover);
}

.btn-social svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

/* ===== Note Box ===== */
.note-block {
  margin-top: auto; /* Push to bottom if space is available */
}

.note-block p {
  color: var(--text-muted);
  font-size: 1rem;
}

/* ===== Map ===== */
.contact-map {
  width: 100%;
  height: 100%;
  min-height: 400px;
  border-radius: var(--radius);
  overflow: hidden;
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
