/* =========================================
   HELVETIC BRANDS – PDF CORPORATE STYLE
   ========================================= */

@import url('https://fonts.googleapis.com/css2?family=Helvetica+Neue:wght@400;500;700&display=swap');

:root {
  --brand-red: #E30613;       /* Hauptfarbe Rot */
  --brand-black: #000000;     /* tiefes Schwarz */
  --brand-grey: #F2F2F2;      /* Flächen / Sektionen */
  --brand-white: #FFFFFF;     /* Hintergrund */
  --text-dark: #222222;       /* Textfarbe */
}

/* -----------------------------------------
   GLOBAL
------------------------------------------ */

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  color: var(--text-dark);
  background-color: var(--brand-white);
  line-height: 1.6;
  margin: 0;
  padding: 0;
}

h1, h2, h3 {
  color: var(--brand-black);
  font-weight: 700;
  letter-spacing: 0.3px;
}

p {
  color: var(--text-dark);
  font-size: 1.05rem;
}

/* =====================================
   FORMULAR-MELDUNG (GLOBALE STYLES)
   ===================================== */
#form-message {
  font-weight: 600;
  margin-top: 1.2rem;
  padding: 0.9rem 1.2rem;
  border-radius: 4px;
  display: inline-block;
  text-align: center;
  width: 100%;
  max-width: 100%;
  transition: all 0.3s ease;
  font-size: 0.95rem;
  letter-spacing: 0.3px;
}

/* Erfolgsmeldung */
#form-message.success {
  color: #155724;
  background-color: #e7f5eb;
  border: 1px solid #c3e6cb;
  box-shadow: 0 0 8px rgba(0, 128, 0, 0.05);
}

/* Fehlermeldung */
#form-message.error {
  color: #721c24;
  background-color: #faeaea;
  border: 1px solid #f5c6cb;
  box-shadow: 0 0 8px rgba(200, 0, 0, 0.05);
}


/* -----------------------------------------
   MODERNE NAVIGATION – HELVETIC BRANDS
------------------------------------------ */

.custom-navbar {
  background-color: #ffffff;
  backdrop-filter: blur(8px); /* moderner Glas-Effekt */
  border: none;
  border-bottom: 1px solid #e6e6e6; /* feine Linie statt dicker Block */
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
  z-index: 999;
  width: 100%;
  box-shadow: none;
    padding: 1.2rem 1.2rem;
}


.custom-navbar.scrolled {
  background-color: #ffffff; /* Wenn man scrollt, wird sie deckend */
  border-bottom: 1px solid #e6e6e6;
}

/* Brand */
.navbar-brand {
  font-weight: 800;
  letter-spacing: 1px;
  color: #000 !important;
  text-transform: uppercase;
  font-size: 1.2rem;
}

/* Links */
.nav-link {
  font-weight: 700;
  margin-left: 1rem;
  color: #111 !important;
  text-transform: uppercase;
  font-size: 0.95rem;
  position: relative;
  transition: color 0.3s ease;
}

/* Unterstrich beim Hover */
.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background-color: #E30613; /* Helvetic-Rot */
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

/* Aktiver Button (Kontakt) */
.btn-nav {
  background-color: #E30613 !important;
  color: #fff !important;
  padding: 0.5rem 1rem;
  border-radius: 3px;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-nav:hover {
  background-color: #b9000e !important;
  transform: translateY(-1px);
}

/* -----------------------------------------
   HERO SECTION – PDF DESIGNSTIL
------------------------------------------ */

.hero-image {
	
  position: relative;
  height: 100dvh; /* Dynamische Höhe für Android/iOS */
  min-height: 100vh; /* Fallback für ältere Browser */
  background-image: url('Bilder/Hero_HelveticBrands.png');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  color: #ffffff;
  margin-top: 0;
  padding-top: 140px; /* Platz für Navbar */
  padding-bottom: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: inset 0 0 0 1000px rgba(0, 0, 0, 0.3);
  overflow: hidden;
  transition: all 0.3s ease;
}

/* Overlay */
.hero-image::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.0010);
  z-index: 1;
}

/* Inhalt */
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 2rem;
  text-align: center;
  /* ❌ entfernt: top + transform, weil das den Versatz verursacht */
}

.hero-content h1 {
  font-size: 2.8rem;
  font-weight: 700;
  letter-spacing: 0.3px;
  color: #ffffff;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 1);
  text-transform: uppercase;
}

.hero-content p {
  font-size: 1.2rem;
  color: #ffffff;
  margin: 1.5rem 0 2.5rem 0;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 1);
  line-height: 1.5;
}

.hero-content .btn-primary {
  background-color: #E30613;
  border: none;
  border-radius: 0;
  padding: 0.9rem 2.4rem;
  font-weight: 600;
  text-transform: uppercase;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  cursor: pointer;
}

.hero-content .btn-primary:hover {
  background-color: #b9000e;
  transform: translateY(-2px);
}


/* -----------------------------------------
   SECTIONS
------------------------------------------ */

section {
  padding: 5rem 0;
}

section.bg-light {
  background-color: #fafafa !important;
}

section h2 {
  color: var(--brand-black);
  font-weight: 700;
  margin-bottom: 1.5rem;
}

ul.list-unstyled li {
  margin-bottom: 0.6rem;
  font-size: 1.05rem;
}

section + section {
  border-top: 1px solid #e6e6e6;
}

section:nth-of-type(even) {
  background-color: #fafafa;
}


/* ==========================================
   PHASE SECTIONS – HELVETIC BRANDS DESIGN
   ========================================== */

.phase-section {
  background-color: #ffffff; /* Klarer, heller Hintergrund */
  padding: 5rem 0;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.phase-section .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;    
  gap: 12rem; /* Abstand zwischen Bild und Text */
  max-width: 1200px;
  margin: 0 auto;
}

/* ======================
   Bilder / Illustration
   ====================== */
.phase-section img {
  width: 100%;
  max-width: 520px;
  border-radius: 8px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.phase-section img:hover {
  transform: scale(1.03);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
}

/* ======================
   Überschriften & Text
   ====================== */
.phase-section h2 {
  font-weight: 800;
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: #2f2f2f;
  text-transform: none;
  letter-spacing: 0.3px;
}

.phase-section ul {
  list-style: none;
  padding: 0;
  margin-bottom: 1.5rem;
}

.phase-section ul li {
  margin-bottom: 0.9rem;
  font-size: 1.05rem;
  color: #333;
  position: relative;
  padding-left: 1.5rem;
  line-height: 1.5;
}

.phase-section ul li::before {
  content: "•";
  color: #E30613; /* Helvetic-Rot */
  font-weight: bold;
  position: absolute;
  left: 0;
  top: 0;
}

/* ======================
   Buttons
   ====================== */
.phase-section .btn {
  display: inline-block;
  background-color: transparent;
  border: 2px solid #E30613;
  color: #E30613;
  font-weight: 600;
  text-transform: uppercase;
  margin-top: 0.5rem;
  padding: 0.65rem 1.6rem;
  border-radius: 3px;
  transition: all 0.3s ease;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
}

.phase-section .btn:hover {
  background-color: #E30613;
  color: #fff;
  transform: translateY(-2px);
}

/* ======================
   Anordnung
   ====================== */
.phase-left img {
  order: 1;
}

.phase-left .text {
  order: 2;
}

.phase-right img {
  order: 2;
}

.phase-right .text {
  order: 1;
}

section + section {
  border-top: 1px solid #e6e6e6;
}

section:nth-of-type(even) {
  background-color: #fafafa;
}


/* -----------------------------------------
   PARTNER SECTION
------------------------------------------ */

#partner {
    background-color: #ffffff; /* Klarer, heller Hintergrund */
    text-align: center;
    padding: 4rem 2rem;

}

#partner h2 {
  color: #000000;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
    margin-bottom: 2rem;

}

#partner p {
  color: #333333;
  max-width: 700px;
  margin: 0 auto 2rem;
    font-size: 1.1rem;
        line-height: 1.6;
        margin-bottom: 3rem;

}

.partner-logo {
  max-height: 250px;
  transition: transform 0.3s ease, opacity 0.3s ease;
  opacity: 0.9;
    margin: 0 1.5rem;
    vertical-align: middle;
    display: inline-block;
    margin-bottom: 1.5rem;

}

.partner-logo:hover {
  transform: scale(1.05);
  opacity: 1;

}

section + section {
  border-top: 1px solid #e6e6e6;
}

section:nth-of-type(even) {
  background-color: #fafafa;
}


/* -----------------------------------------
   FORMULAR
------------------------------------------ */

form input,
form textarea {
  border: 1px solid #ccc;
  border-radius: 0;
  padding: 0.8rem;
  transition: border-color 0.2s ease;
}

form input:focus,
form textarea:focus {
  border-color: var(--brand-red);
  box-shadow: none;
  outline: none;
}

button.btn-primary {
  background-color: var(--brand-red);
  border: none;
  border-radius: 0;
  padding: 0.8rem 2rem;
  font-weight: 600;
  text-transform: uppercase;
}

button.btn-primary:hover {
  background-color: #b9000e;
}

/* -----------------------------------------
   KONTAKT SECTION – EDLER LOOK
------------------------------------------ */

.contact-section {
  background-color: #ffffff;
  padding: 6rem 0;
  color: #222;
}

.contact-section h2 {
  color: #000;
  font-weight: 700;
  font-size: 2rem;
  margin-bottom: auto;
  text-transform: uppercase;
  letter-spacing: 0.8px;  


} 

.contact-section p {
  font-size: 1.05rem;
  line-height: 1.6;
}

.contact-section .col-md-5 {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* sorgt dafür, dass Titel und Text oben ausgerichtet bleiben */
.contact-header {
  margin-bottom: 7rem;
  
}

/* E-Mail & Telefon bleiben unten */
.contact-info {
  margin-top: auto;
}

.contact-info a {
  color: #E30613;
  text-decoration: none;
  margin-top: auto
}

.contact-info a:hover {
  text-decoration: underline;
}

/* Formularfelder */
.contact-form label {
  font-weight: 600;
  font-size: 0.95rem;
  color: #111;
}

.contact-form .form-control {
  border: none;
  border-bottom: 2px solid #ddd;
  border-radius: 0;
  background: transparent;
  padding: 0.75rem 0;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.contact-form .form-control:focus {
  border-color: #E30613;
  box-shadow: none;
  outline: none;
}

/* Button */
.btn-submit {
  background-color: #E30613;
  color: #fff;
  border: none;
  border-radius: 0;
  padding: 0.8rem 2.2rem;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

.btn-submit:hover {
  background-color: #b9000e;
  transform: translateY(-2px);
}


/* -----------------------------------------
   FOOTER – EDLER HELVETIC STYLE
------------------------------------------ */

/* Roter Trennbalken */
.footer-divider {
  height: 4px;
  background-color: #E30613;
}

/* Hauptfooter */
.footer {
  background-color: #2F2F2F;
  color: #FFFFFF;
  padding: 3rem 0;
  font-size: 0.95rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-logo {
  max-height: 160px;
  margin: 0 auto 1rem;
  opacity: 0.95;
  transition: opacity 0.3s ease;
  width: auto;
}

.footer-logo:hover {
  opacity: 1;
}

.footer p {
  margin-bottom: 0.3rem;
  font-size: 0.95rem;
  opacity: 0.9;
  color: #FFFFFF;
  font-weight: 400;
  line-height: 1.5;
}

/* Footer Links */
.footer-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
}

.footer-links a {
  color: #FFFFFF;
  text-decoration: none;
  font-weight: 500;
  letter-spacing: 0.3px;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #E30613;
}

/* Social Icons */
.footer .footer-social {
  font-size: 1.3rem;
  color: #FFFFFF;
  transition: color 0.3s ease;
}

.footer .footer-social:hover {
  color: #E30613;
}

/* E-Mail */
.footer .footer-link {
  color: #FFFFFF;
  text-decoration: none;
  font-weight: 500;
}

.footer .footer-link:hover {
  color: #E30613;
}

.footer a {
  text-decoration: none; /* entfernt die Unterstreichung */
  color: #FFFFFF;        /* Standardfarbe Weiss */
  transition: color 0.3s ease, transform 0.2s ease;
  }

.footer a:hover {
  text-decoration: none; /* auch beim Hover keine Linie */
  color: #E30613;        /* bleibt nur die Farbänderung */
  transition: color 0.3s ease;
  transform: translateY(-1px); /* leichter Aufwärts-Effekt */
}

.legal-section h1 {
  font-size: 2rem;
  color: #000;
  margin-bottom: 1.5rem;
}

.legal-section h5 {
  color: #000;
  margin-top: 2rem;
  margin-bottom: 0.5rem;
}

.legal-section p {
  color: #333;
  line-height: 1.7;
}


/* -----------------------------------------
   RESPONSIVE
------------------------------------------ */

/* Navigation */

@media (max-width: 992px) {
  .navbar-collapse {
    background-color: #ffffffcc; /* leicht transparentes Weiss */
    backdrop-filter: blur(8px);
    padding: 1rem;
    border-radius: 5px;
    margin-top: 0.5rem;
  }
  .nav-link {
    margin: 0.5rem 0;
    font-size: 1.1rem;
  }
  .btn-nav {
    width: 100%;
    text-align: center;
    margin-top: 0.5rem;
  }
}

/* Partner */
@media (max-width: 768px) {
  header {
    padding: 4rem 0;
  }
  header h1 {
    font-size: 2rem;
  }


@media (max-width: 992px) {
  .hero-image {
    height: 80vh; /* Tablets */
  }
}

@media (max-width: 576px) {
  .hero-image {
    height: 70vh; /* Smartphones */
  }
}

  .hero-content h1 {
    font-size: 2rem;
  }

  .hero-content p {
    font-size: 1rem;
  }

  .hero-content .btn-primary {
    padding: 0.7rem 1.8rem;
    font-size: 0.9rem;
  }

/* Partner */
@media (max-width: 768px) {
  .partner-logo {
    max-height: 90px;
    margin: 0 1rem;
    margin-bottom: 1rem;
      }
}

@media (max-width: 576px) {
  .partner-logo {
    max-height: 80px;
    margin: 0 0.5rem;
    margin-bottom: 1rem;
      }


}

/* Formular */

/* Optional: mehr optische Balance */
@media (min-width: 992px) {
  .contact-header {
    margin-top: 2rem;
  }
}

  .contact-info {
    margin-top: 6rem; /* optional: steuert, wie tief E-Mail & Telefon sitzen */
  }

@media (max-width: 768px) {
  .contact-section {
    text-align: center;
    padding: 4rem 1rem;
    }
}

@media (min-width: 768px) {
  .col-md-5 {
    display: block !important; /* auf Mobile normaler Fluss */
  }
  
  .contact-info {
    margin-top: 2rem; /* kleiner Abstand auf Mobile */
    
  }
}

/* Footer */
@media (max-width: 768px) {
  .footer {
    text-align: center;
  }

  .footer-links {
    flex-direction: column;
    gap: 0.5rem;
  }

  .footer .footer-social {
    margin-top: 1rem;
  }
}

/* Legal Section */
@media (max-width: 768px) { 

.legal-section h1 {
  font-size: 2rem;
  color: #000;
  margin-bottom: 1.5rem;
}

.legal-section h5 {
  color: #000;
  margin-top: 2rem;
  margin-bottom: 0.5rem;
}

.legal-section p {
  color: #333;
  line-height: 1.7;
}

/* --- Fix für Mobile Querformat (Samsung, iPhone etc.) --- */
@media screen and (max-height: 600px) and (orientation: landscape) {
  .hero-image {
    height: auto;              /* passt sich automatisch an */
    padding: 4rem 0;           /* sorgt für gleichmässige Abstände */
    background-attachment: scroll; /* verhindert Verzerrung */
	background-position: center center;
  	background-size: cover;
  }

  .hero-content {
    padding: 2rem 1rem;
  }

  .hero-content h1 {
    font-size: 1.8rem;
  }

  .hero-content p {
    font-size: 1rem;
  }
}
	
	
/* PHASE SECTION */

@media (max-width: 992px) {
  .phase-section {
    padding: 3rem 1rem;
  }

  .phase-section .container {
    display: flex;
    flex-direction: column-reverse; /* Bild unten, Text oben */
    text-align: center;
    gap: 2rem;
  }

  .phase-section img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  }

  .phase-section h2 {
    font-size: 1.8rem;
    margin-bottom: 1.2rem;
    color: #111;
  }

  .phase-section ul {
    list-style: none;
    padding: 0;
    margin: 0 auto 1.5rem;
    max-width: 90%;
  }

  .phase-section ul li {
    position: relative;
    padding-left: 1.2rem;
    text-align: left;
    margin: 0.6rem 0;
    line-height: 1.5;
    font-size: 1rem;
  }

  .phase-section ul li::before {
    content: "•";
    color: #E30613;
    font-weight: bold;
    position: absolute;
    left: 0;
  }

  .phase-section .btn {
    margin-top: 1rem;
    padding: 0.9rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    background-color: #E30613;
    color: #fff;
    border: none;
    border-radius: 0;
    text-transform: uppercase;
    transition: background-color 0.3s ease, transform 0.2s ease;
  }

  .phase-section .btn:hover {
    background-color: #b9000e;
    transform: translateY(-2px);
  }
}
  

@media (max-width: 576px) {
  .phase-section h2 {
    font-size: 1.5rem;
  }

  .phase-section ul li {
    font-size: 0.95rem;
    padding-left: 1rem;
    margin: 0.5rem 0;
    text-align: left;
    max-width: 100%;
      }
}

}

}


/* Ende style.css */