<header class="header-section">
  <div class="header-top">
    <div class="header-contact">
      {% if site.address %}
        <span><i class="icon-location"></i> {{ site.address }}</span>
      {% endif %}
      {% if site.phone and site.phone_link %}
        <a href="{{ site.phone_link }}"><i class="icon-phone"></i> {{ site.phone }}</a>
      {% endif %}
      {% if site.mail and site.mail_link %}
        <a href="{{ site.mail_link }}"><i class="icon-mail"></i> {{ site.mail }}</a>
      {% endif %}
    </div>
    <div class="header-social">
      {% for social in site.social %}
        <a href="{{ social.url }}" target="_blank" rel="noopener" class="header-social-link">
          <i class="icon-{{ social.icon }}"></i>
        </a>
      {% endfor %}
    </div>
  </div>

  <div class="header-main">
    <a href="{{ base_url_absolute }}" class="header-logo">
      {% if site.logo %}
        <img src="{{ url('theme://images/' ~ site.logo) }}" alt="Logo umbrella22" />
      {% else %}
        <img src="{{ url('theme://images/Logo.jpg') }}" alt="Logo umbrella22" />
      {% endif %}
      <span>umbrella22</span>
    </a>

    <nav class="header-nav">
      {% include 'partials/navigation.html.twig' %}
    </nav>
  </div>
</header>

