/*
Theme Name: VFV Spndau
Description:
Author: VFV Spandau
Theme URI: 
Author URI: 
Version: 1.0.0
License: GNU General Public License
License URI: license.txt
*/

/* Header Basis */
.hc-header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: #000000;
  box-shadow: 0 2px 8px rgba(0,0,0,.08);
  color: #ffffff;
}

.hc-header-inner {
  display: flex;
  justify-content: space-between; /* Logo links, rechte Gruppe rechts */
  align-items: center; /* ⭐ vertikal auf Höhe des Logos */
  padding:0px;
}

.hc-header-right {
  display: flex;
  flex-direction: column; /* Social oben, Menü unten */
  align-items: flex-end; 
  justify-content: center; /* auf Höhe des Logos */
  gap: 6px;
}

/* Social Icons */
.hc-social {
  justify-content: flex-end;
}

/* Navigation */
.hc-nav {
  justify-content: flex-end;
}

.wp-block-navigation a {
  padding: 6px 12px;
  font-weight: 600;
  text-decoration: none;
}

.wp-block-navigation a:hover {
  color: #D72638;
}

/* Logo */
.wp-block-site-logo {
	padding: 0px 0px 0px 20px;
}

.wp-block-site-logo img {
  max-height: 100px;
  width: auto;
}

nav {
	padding: 0px 20px;
  border-radius: 19px;
}

/* Mobile */
@media (max-width: 900px) {
  .hc-header-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }

  .hc-header-right {
    width: 100%;
    align-items: flex-start;
  }

  .hc-social,
  .hc-nav {
    justify-content: flex-start;
  }

  .wp-block-site-logo img {
    max-height: 50px;
  }
}

hc-nav {
  flex-grow: 0;
}