<?php
/**
 * Header template
 */
?><!doctype html>
<html <?php language_attributes(); ?>>
<head>
  <meta charset="<?php bloginfo( 'charset' ); ?>">
  <meta name="viewport" content="width=device-width, initial-scale=1">

  <?php wp_head(); ?>
</head>

<body <?php body_class(); ?>>
<?php wp_body_open(); ?>

<header class="site-header" role="banner">
  <div class="header-inner container">

    <!-- LEFT: Logo / Branding -->
    <div class="header-left site-branding">
      <?php
      if ( function_exists( 'the_custom_logo' ) && has_custom_logo() ) {
        the_custom_logo();
      } else {
        $logo_path = get_template_directory() . '/assets/logo.png';
        if ( file_exists( $logo_path ) ) {
          $logo_url = get_template_directory_uri() . '/assets/logo.png';
          ?>
          <a class="custom-logo-link" href="<?php echo esc_url( home_url( '/' ) ); ?>">
            <img class="custom-logo"
                 src="<?php echo esc_url( $logo_url ); ?>"
                 alt="<?php echo esc_attr( get_bloginfo( 'name' ) ); ?>"
                 height="60" />
          </a>
          <?php
        } else {
          echo '<span class="site-title">' . esc_html( get_bloginfo( 'name' ) ) . '</span>';
        }
      }
      ?>
    </div>

    <!-- CENTER: Navigation -->
    <nav class="header-center site-navigation" role="navigation" aria-label="Primary Navigation">
      <?php
      wp_nav_menu( array(
        'theme_location' => 'primary',
        'container'      => false,
        'menu_class'     => 'primary-menu',
        'fallback_cb'    => false,
      ) );
      ?>
    </nav>

    <!-- RIGHT: Contact -->
    <div class="header-right header-cta-wrapper">
      <a href="mailto:tech@knoxvilleitpros.com"
         class="header-contact header-email">
         tech@knoxvilleitpros.com
      </a>
      <a href="tel:18658559390"
         class="header-cta">
         (865) 855-9390
      </a>
    </div>

  </div>
</header>

<main id="primary" class="site-main">

}