/*
 * Stylesheet für die Werbewelle Website
 *
 * Dieses CSS definiert das Erscheinungsbild der neuen Werbewelle Website.
 * Es basiert auf einer modernen, luftigen Gestaltung mit klarer Typografie
 * (Montserrat) und einer Farbpalette, die sich aus dem Werbewelle Logo
 * ableitet: kräftiges Blau für Headlines und Akzente, ein warmes Orange
 * für Buttons und Highlights sowie ein tiefes Dunkelblau für Hintergründe.
 * Alle Sektionen sind responsive gestaltet, so dass die Seite auf
 * Desktops, Tablets und Smartphones gleichermaßen gut aussieht.
 */

/* Grundlegende Einstellungen */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Montserrat', sans-serif;
  color: #0a0a23;
  background-color: #ffffff;
  line-height: 1.6;
}

/* Farbvariablen */
:root {
  --primary: #0055a5; /* kräftiges Blau */
  --secondary: #e65100; /* Orange aus dem Logo */
  --accent: #7b1fa2; /* Purpur für dezente Akzente */
  --dark: #020d28; /* dunkler Hintergrund */
  --light: #f9f9ff; /* helles Grau für Sektionen */
  --radius: 6px;
  --shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

/* Navigation */
header {
  position: relative;
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .75rem 1.25rem;
  background-color: rgba(2, 13, 40, 0.9);
  backdrop-filter: blur(6px);
  z-index: 1000;
}

.navbar .logo img {
  height: 120px;
  width: auto;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 2rem;
}

.nav-links li a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease-in-out;
}

.nav-links li a:hover {
  color: var(--secondary);
}

/* Hamburger Icon */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background-color: #ffffff;
  border-radius: 2px;
  transition: transform 0.3s ease;
}

/* Hero Section */
.hero {
  position: relative;
  background-image: linear-gradient(rgba(2, 13, 40, 0.65), rgba(2, 13, 40, 0.65)), url('hero.jpg');
  background-size: cover;
  background-position: center;
  color: #ffffff;
  padding: 7rem 1.5rem 4rem; /* Platz für die feste Navigation */
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 120vh;
}

/* Headline mit GIF rechts daneben */
.hero-headline{
  display:grid;
  grid-template-columns: 1fr 1fr; /* 50% / 50% */
  align-items:center;
  gap:24px;
}
.hero-headline h1{margin:0;text-align:left}
.headline-gif{width:100%;height:auto;border-radius:14px;box-shadow: var(--shadow)}

.hero h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.125rem;
  margin-bottom: 2rem;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius);
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.btn.primary {
  background: linear-gradient(135deg, var(--secondary) 0%, #e67e00 100%);
  color: #ffffff;
  border: none;
  font-weight: 600;
  letter-spacing: 0.025em;
  text-transform: uppercase;
  font-size: 0.9rem;
  padding: 1rem 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(255, 140, 0, 0.3);
  transition: all 0.3s ease;
}

.btn.primary:hover {
  background: linear-gradient(135deg, #e67e00 0%, #d35400 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 140, 0, 0.4);
}

/* Kundenbeispiele im Hero */
.hero-examples-title{margin:2rem 0 .75rem;font-size:1.25rem;color:#cfe3ff}
.hero-examples{margin-top:1.5rem;display:grid;grid-template-columns:repeat(auto-fit,minmax(240px,1fr));gap:16px}
.hero-card{background:rgba(6,12,24,.5);border:1px solid rgba(26,41,64,.6);border-radius:14px;overflow:hidden;backdrop-filter: blur(6px)}
.hero-card img{display:block;width:100%;height:auto}
.hero-card figcaption{padding:8px 10px;font-size:.9rem;color:#cfe3ff;text-align:left}

/* Services Section */
.services {
  background-color: var(--light);
  padding: 4rem 1.5rem;
  text-align: center;
}

.services h2 {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 1rem;
}

.services .section-intro {
  max-width: 760px;
  margin: 0 auto 2rem;
  color: #333333;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.service-item {
  background-color: #ffffff;
  padding: 1.5rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: transform 0.2s ease-in-out;
}

.service-item:hover {
  transform: translateY(-4px);
}

.service-item i {
  font-size: 2rem;
  color: var(--secondary);
  margin-bottom: 0.75rem;
}

.service-item h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  color: var(--primary);
}

.service-item p {
  font-size: 0.95rem;
  color: #555555;
}

.services-image {
  margin-top: 3rem;
}

/* Senderübersicht */
.channels-section {
  margin: 3rem 0;
  text-align: center;
}

.channels-section h3 {
  font-size: 1.5rem;
  color: var(--primary);
  margin-bottom: 0.75rem;
}

.channels-intro {
  font-size: 1rem;
  color: #555555;
  margin-bottom: 1.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Logo-Marquee Styles (wie TVWerbung) */
.logo-marquee{padding:32px 0;border-top:1px solid #1a2940;border-bottom:1px solid #1a2940;background:linear-gradient(135deg,#0d1624 0%, #1a2a3a 100%)}
.logo-marquee h3{margin:0 0 8px;text-align:center;font-size:1.6rem;color:#cfe3ff}
.logo-marquee .channels-intro{margin:0 auto 16px;text-align:center;color:#b7c9e6;max-width:700px}
.logo-marquee .marquee{position:relative;overflow:hidden;mask-image:linear-gradient(90deg,transparent 0%,#000 10%,#000 90%,transparent 100%);-webkit-mask-image:linear-gradient(90deg,transparent 0%,#000 10%,#000 90%,transparent 100%)}
.logo-marquee .marquee-track{display:flex;align-items:center;gap:36px;flex-wrap:nowrap;width:max-content;will-change:transform;animation:marquee 30s linear infinite}
.logo-marquee img{height:56px;width:auto;flex:0 0 auto;filter:grayscale(10%);opacity:.9;transition:transform .3s ease, filter .3s ease, opacity .3s ease}
.logo-marquee img:hover{transform:scale(1.05);filter:grayscale(0%);opacity:1}
@keyframes marquee { from{ transform: translateX(0) } to { transform: translateX(-50%) } }
@media (max-width:860px){ .logo-marquee img{height:44px} }

.services-image {
  margin-top: 3rem;
}

.services-image img {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.services-image img {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

/* About Section */
.about {
  background-color: #ffffff;
  padding: 4rem 1.5rem;
  text-align: center;
}

.about h2 {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 1rem;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.about-item {
  background-color: var(--light);
  padding: 1.5rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: transform 0.2s ease-in-out;
}

.about-item:hover {
  transform: translateY(-4px);
}

.about-item i {
  font-size: 2rem;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.about-item h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  color: var(--primary);
}

.about-item p {
  font-size: 0.95rem;
  color: #555555;
}

/* Studio / Über uns Section */
.studio {
  background-color: var(--light);
  padding: 4rem 1.5rem;
  text-align: center;
}

.studio h2 {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 1rem;
}

.studio p {
  max-width: 800px;
  margin: 0 auto;
  color: #333333;
  line-height: 1.6;
}

/* Kontakt Section */
.contact {
  background: linear-gradient(135deg, #0d1624 0%, #1a2a3a 100%);
  padding: 4rem 1.5rem;
  text-align: center;
  border-top: 1px solid #2a3a4a;
}

.contact h2 {
  font-size: 2rem;
  color: #ffffff;
  margin-bottom: 1rem;
}

.contact-content {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 2rem;
  align-items: flex-start;
  justify-content: center;
}

.contact-content form {
  flex: 1;
  min-width: 280px;
  max-width: 450px;
  background: rgba(26, 42, 58, 0.6);
  padding: 2.5rem;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.contact-content .contact-info {
  flex: 1;
  min-width: 220px;
  max-width: 320px;
  background: rgba(26, 42, 58, 0.4);
  padding: 1.5rem;
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  text-align: left;
  color: #ffffff;
}

.contact-info p {
  margin-bottom: 0.75rem;
  color: #cfe3ff;
}

.contact-info a {
  color: var(--secondary);
  text-decoration: none;
}

.contact-info a:hover {
  text-decoration: underline;
}

.form-group {
  margin-bottom: 1rem;
  text-align: left;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: #ffffff;
  font-size: 0.95rem;
  letter-spacing: 0.025em;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  font-size: 1rem;
  font-family: inherit;
  transition: all 0.3s ease;
  background-color: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--secondary);
  background-color: rgba(255, 255, 255, 0.15);
  box-shadow: 0 0 0 3px rgba(255, 140, 0, 0.2), 0 4px 12px rgba(0, 0, 0, 0.2);
  transform: translateY(-1px);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.form-group.checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: #cfe3ff;
}

.form-group.checkbox input {
  margin-top: 0.2rem;
}

.form-group.checkbox label {
  color: #cfe3ff;
  font-size: 0.9rem;
  line-height: 1.4;
}

/* Footer */
footer {
  background: linear-gradient(135deg, var(--dark) 0%, #1a1a2e 100%);
  color: #ffffff;
  padding: 2.5rem 1.5rem;
  text-align: center;
  border-top: 3px solid var(--secondary);
}

footer .footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
  font-size: 0.95rem;
  gap: 1rem;
}

footer .footer-content p:first-child {
  font-weight: 600;
  color: #f8f9fa;
  margin-bottom: 0.5rem;
}

footer .footer-links {
  display: flex;
  gap: 0;
  align-items: center;
  justify-content: center;
}

footer .footer-links a {
  color: #e9ecef;
  text-decoration: none;
  font-weight: 500;
  padding: 0.5rem 1rem;
  transition: all 0.3s ease;
}

footer .footer-links a:not(:last-child)::after {
  content: '|';
  color: #666666;
  font-weight: 300;
  margin-left: 1.9rem;
  margin-right: 0.5rem;
  text-decoration: none !important;
}

footer .footer-links a:hover {
  color: var(--secondary);
}

footer .footer-note {
  margin-top: 1rem;
  font-size: 0.85rem;
  color: #a0a0a0;
  font-style: italic;
}

footer .footer-note strong {
  color: var(--secondary);
  font-weight: 600;
}

footer .footer-note a {
  color: var(--secondary);
  text-decoration: none;
  transition: all 0.3s ease;
}

footer .footer-note a:hover {
  color: #ffffff;
  text-decoration: underline;
}



/* Responsive Design */
@media (max-width: 768px) {
  /* Hero Section für Mobile */
  .hero {
    padding: 6rem 1rem 3rem; /* Weniger Padding auf Mobile */
    min-height: 100vh; /* Vollbildhöhe auf Mobile */
  }
  
  .hero h1 {
    font-size: 1.8rem; /* Kleinere Schrift auf Mobile */
    line-height: 1.3;
    margin-bottom: 1rem;
  }
  
  .hero p {
    font-size: 1rem; /* Kleinere Schrift für bessere Lesbarkeit */
    margin-bottom: 1.5rem;
    padding: 0 0.5rem; /* Seitlicher Abstand */
  }
  .hero-examples{grid-template-columns:1fr;gap:12px}
  .hero-headline{grid-template-columns: 1fr; gap:12px}
  .hero-headline h1{text-align:center}
  .headline-gif{width:80%; margin:0 auto; border-radius:10px}
  
  .btn {
    padding: 0.6rem 1.2rem; /* Kleinere Buttons */
    font-size: 0.9rem;
  }
  
  /* Navigation */
  .nav-links {
    position: fixed;
    top: 70px;
    right: -100%;
    flex-direction: column;
    background-color: rgba(2, 13, 40, 0.95);
    width: 200px;
    height: calc(100vh - 70px);
    padding-top: 2rem;
    gap: 1.5rem;
    transition: right 0.3s ease-in-out;
    z-index: 999;
  }
  .nav-links.open {
    right: 0;
  }
  .hamburger {
    display: flex;
  }
  .nav-links li a {
    color: #ffffff;
    font-size: 1.1rem;
  }
  
  /* Footer responsive */
  footer {
    padding: 2rem 1rem;
  }
  
  footer .footer-content {
    gap: 0.8rem;
  }
  
  footer .footer-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 0;
  }
  
  footer .footer-links a {
    padding: 0.4rem 0.8rem;
    font-size: 0.9rem;
  }
}

/* Noch kleinere Bildschirme */
@media (max-width: 480px) {
  .hero h1 {
    font-size: 1.5rem; /* Noch kleinere Schrift auf sehr kleinen Bildschirmen */
    line-height: 1.2;
  }
  
  .hero p {
    font-size: 0.9rem; /* Noch kleinere Schrift */
    padding: 0 1rem; /* Mehr seitlicher Abstand */
  }
  
  .btn {
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
  }
}
