/*
Theme Name: MATIMA Partners (v2)
Theme URI: https://matimapartners.com
Author: MATIMA Partners
Description: Single-page hero theme for MATIMA Partners — fueling strategies and execution. Mirrors the source PowerPoint slide: dark navy hero, centered M-logo, brand wordmark, tagline, and contact email.
Version: 1.2.0
Requires at least: 5.0
Tested up to: 6.7
Requires PHP: 7.4
License: GPL v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: matima
*/

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:    #162F3F;
  --blue:  #4FADEA;
  --gray:  #BFBFBF;
}

html, body { height: 100%; }

body {
  background: var(--bg);
  color: var(--gray);
  font-family: "Helvetica Neue", Arial, "Segoe UI", system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  line-height: 1.5;
}

.hero {
  width: 100%;
  max-width: 720px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(20px, 4vw, 36px);
}

.logo {
  width: clamp(140px, 26vw, 260px);
  height: auto;
  display: block;
}

/* When admin uploaded a Site Logo via Customizer */
.logo--custom { width: auto; }
.logo--custom .custom-logo-link { display: inline-block; line-height: 0; }
.logo--custom img,
.logo--custom .custom-logo {
  width: clamp(140px, 26vw, 260px);
  height: auto;
  display: block;
}

.brand {
  font-weight: 300;
  font-size: clamp(18px, 3.2vw, 28px);
  letter-spacing: 0.08em;
  color: var(--gray);
  text-transform: uppercase;
  line-height: 1.25;
  margin-top: -6px;
}

.tagline {
  font-weight: 400;
  font-size: clamp(14px, 2.2vw, 20px);
  letter-spacing: 0.14em;
  color: var(--gray);
  text-transform: uppercase;
  margin-top: clamp(6px, 1.5vw, 16px);
}

.email {
  display: inline-block;
  margin-top: clamp(4px, 1vw, 10px);
  font-size: clamp(13px, 1.8vw, 17px);
  letter-spacing: 0.04em;
  color: var(--gray);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color .2s ease, border-color .2s ease;
}

.email:hover,
.email:focus-visible {
  color: var(--blue);
  border-bottom-color: var(--blue);
  outline: none;
}

@media (max-width: 480px) {
  body { padding: 16px; }
  .hero { gap: 22px; }
  .brand { letter-spacing: 0.06em; }
  .tagline { letter-spacing: 0.10em; }
}

@media (prefers-reduced-motion: reduce) {
  .email { transition: none; }
}
