/* ==========================================================================
   FLIESEN STELZER – HEADER & BRANDING
   ========================================================================== */

header.header {
  position: relative;
  width: 100%;
  z-index: 1040;
  border-bottom: 3px solid var(--color-accent-gold);
  box-shadow: var(--box-shadow-header);
  padding: 0;
  background-color: var(--color-primary-dark);
}

/* Header Banner Background fallback (overwritten by inline PHP style if customized) */
header.header-with-bg {
  background-image: linear-gradient(rgba(25, 30, 36, 0.35), rgba(25, 30, 36, 0.55)), 
                    url('../images/header-bg.jpg');
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

/* Top Contact Bar (Phone & Email with Icons) */
.header-contact-bar {
  background-color: rgba(0, 0, 0, 0.25);
  padding: 0.6rem 2rem;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header-contact-item {
  color: var(--color-accent-gold);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  transition: var(--transition-smooth);
}

.header-contact-item:hover, .header-contact-item:focus {
  color: #ffffff;
  transform: translateY(-1px);
}

.header-contact-icon {
  font-style: normal;
  font-size: 1rem;
}

/* --- Brand Logo & Site Title Container --- */
.navbar-brand-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 100%;
  padding-top: 1.5rem;
  padding-bottom: 1.25rem;
}

/* Logo Sizing */
.brand-logo-img {
  max-height: 160px;
  width: auto;
  height: auto;
  margin-top: 5px;
  margin-bottom: 10px;
  transition: var(--transition-smooth);
}

/* Site Title (Modern, clean, balanced) */
.brand-site-title {
  font-family: var(--font-headings);
  font-size: 2.8rem;
  font-weight: 800;
  color: #ffffff;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.85), 0 1px 3px rgba(0, 0, 0, 0.9);
  letter-spacing: 1px;
  margin-top: 10px;
  margin-bottom: 5px;
  text-transform: none;
  line-height: 1.15;
  display: block;
}

.brand-site-title a {
  color: #ffffff;
}

.brand-site-title a:hover {
  color: var(--color-accent-gold);
}

/* Site Description */
.brand-site-description {
  font-family: var(--font-headings);
  font-size: 0.95rem;
  font-weight: 600;
  color: #ffffff;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 10px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.85);
}
