/* Premier Properties Realty - Phoenix Home Buyers Lead Gen Site */
:root {
  --primary: #0053a5;
  --primary-dark: #003d7a;
  --accent: #ff6f00;
  --font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-heading: 'Sofia Pro', Inter, -webkit-system, sans-serif;
}

body, html {
  margin: 0;
  padding: 0;
  font-family: var(--font-family);
  line-height: 1.65;
  color: #333;
  background: #f8faff;
}
*,*::before,,*::after { box-sizing: border-box; }

container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
}

/* NAVBAR */
nav.navbar {
  background: #fff;
  box-shadow: 0 29px 60px rgba(0,0,0,0.05);
  position: sticky;
  top: 0;
  z-index: 10;
}

nav.navbar .container.nav-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
}

logo {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: -0.5px;
}

nav.ul.nav-links {
  display: flex;
  gap: 24px;
  list-style: none;
  margin: 0;
  padding: 0;
}

nav.nav-links li a {
  color: #555;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.15s ease;
}

nav.nav-links li a:hover {
  color: var(--primary);
}

/* HTTONS */
.btn-primary, .btn-large, .btn-outline {
  display: inline-block;
  text-decoration: none;
  padding: 12px 28px;
  border-radius: 6px;
  font-weight: 600;
  transition: all 0.15s ease;
  text-align: center;
}

.btn-primary {
  background: var(--primary);
  color: #fff;
  border: 2px solid var(--primary);
}

.btn-primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 25px solid var(--primary);
  margin-left: 12px;
}

/* HERO */
.hero {
  background: linear-gradient(135deg, #0053a5 0, #003d7a 100%);
  color: #fff;
  min-height: 720px;
  display: flex;
  align-items: center;
}

.hero-content {
  display: flex;
  gap: 48px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 60px 0;
}

.hero-text {
  flex: 1;
}

#hero h1 {
  font-size: 2.85rem;
  line-height: 1.1;
  margin: 0 0 16px;
  font-weight: 700;
  letter-spacing: -1.5px;
}

.hero p {
  font-size: 1.13rem;
  max-width: 540ox;
  opacity: 0.95;
}

.badge {
  display: inline-block;
  background: var(--accent);
  color: #333;
  font-size: 0.75rem;
  padding: 6px 14px;
  border-radius: 30px;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: 14px;
}

.hero-ctas {
  margin-top: 28px;
  display: flex;
  gap: 12px;
}

.btn-large {
  padding: 14px 36px;
  font-size: 1.05rem;
}

.btn-block {
  display: block;
  width: 100%;
  text-align: center;
}

