/* AHEAD Corporate Identity CSS */
:root {
  /* Color Palette */
  --primary: #BDB295;       /* Muted warm beige */
  --secondary: #0A0D11;     /* Dark navy/black */
  --accent: #9A8C6E;        /* Complementary darker beige */
  --background: #FFFFFF;
  --foreground: #0A0D11;
  --text-gray: #5A5A5A;
  --gradient: linear-gradient(45deg, var(--secondary) 0%, #08080A 100%);
  
  /* Typography */
  --heading-font: 'Inter', sans-serif;
  --body-font: 'Inter', sans-serif;
}

/* Base Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

a {
  text-decoration: none;
  color: inherit;
}
nav ul{
  margin: 0;
}
/* Core Styles */
body {
  background: var(--background);
  color: var(--foreground);
  font-family: var(--body-font);
  line-height: 1.6;
  text-align: center;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--heading-font);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin: 1.5rem 0;
  color: var(--secondary);
}

/* Header & Navigation */
header {
  background: var(--secondary);
  padding: 1rem 0;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

nav {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-weight: 900;
  font-size: 1.5rem;
  color: var(--primary);
}
.hero.hero-hochzeitsband {
  background: url(/img/heroes/hochzeiten-hero.webp) center center / cover no-repeat fixed;
}

.hero.hero-liveband {
  background: url(/img/heroes/firmenevents-hero.webp) center center / cover no-repeat fixed;
}

.hero.hero-partyband {
  background: url(/img/heroes/private-party-hero.webp) center center / cover no-repeat fixed;
}

@media (min-width: 2560px) {
  .hero.hero-hochzeitsband {
    background: url(/img/heroes/hochzeiten-hero-ultrawide.webp) center center / cover no-repeat fixed;
  }
  
  .hero.hero-liveband {
    background: url(/img/heroes/firmenevents-hero-ultrawide.webp) center center / cover no-repeat fixed;
  }
  
  .hero.hero-partyband {
    background: url(/img/heroes/private-party-hero-ultrawide.webp) center center / cover no-repeat fixed;
  }
}

@media (max-width: 1439px) {
  .hero.hero-hochzeitsband {
    background: url(/img/heroes/hochzeiten-hero-tablet.webp) center center / cover no-repeat fixed;
  }
  
  .hero.hero-liveband {
    background: url(/img/heroes/firmenevents-hero-tablet.webp) center center / cover no-repeat fixed;
  }
  
  .hero.hero-partyband {
    background: url(/img/heroes/private-party-hero-tablet.webp) center center / cover no-repeat fixed;
  }
}

@media (max-width: 767px) {
  .hero.hero-hochzeitsband {
    background: url(/img/heroes/hochzeiten-hero-mobile.webp) center center / cover no-repeat fixed;
  }
  
  .hero.hero-liveband {
    background: url(/img/heroes/firmenevents-hero-mobile.webp) center center / cover no-repeat fixed;
  }
  
  .hero.hero-partyband {
    background: url(/img/heroes/private-party-hero-mobile.webp) center center / cover no-repeat fixed;
  }
}
.content-stack {
  background-color: rgba(10, 13, 17, 0.6);
  backdrop-filter: blur(8px);
  padding: 3rem;
  border-radius: 10px;
  opacity: 0;
  transition: opacity 1s ease-in;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}
.content-stack.fade-in {
  opacity: 1;
}
nav ul {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

nav li {
  position: relative;
  padding: 0;
  border: 0px;
}
nav li a {
  background-color: var(--foreground);;
}
nav a {
  color: white;
  padding: 0.5rem;
  transition: color 0.3s ease;
}

nav a:hover,
nav a:focus {
  color: var(--primary);
}

nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width 0.3s ease;
}

nav a:hover::after {
  width: 100%;
}

/* Hero Section */
.hero {
  background: var(--secondary);
  padding: 120px 1rem 4rem;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem;
}

.main-logo {
  max-width: 400px;
  width: 100%;
  height: auto;
  margin-bottom: 2rem;
}

.hero-heading {
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--primary);
}

.hero-text {
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto 2rem;
  color: white;
  opacity: 0.95;
  line-height: 1.8;
  text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  background: var(--primary);
  color: var(--secondary);
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.1em;
  border: 2px solid transparent;
  transition: all 0.3s ease;
  margin: 1rem 0;
  border-radius: 5px;
}

.cta-button:hover {
  background: transparent;
  border-color: var(--primary);
  color: var(--primary);
}

/* Introduction Section */
.einleitung {
  padding: 6rem 0;
  background: var(--background);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.intro-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  padding: 4rem 0;
}

.section-title {
  font-size: 2.5rem;
  color: var(--secondary);
  margin-bottom: 2rem;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--primary);
}

.intro-text {
  font-size: 1.2rem;
  line-height: 1.8;
  color: var(--text-gray);
  margin-bottom: 3rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.cta-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  max-width: 1000px;
  margin: 2rem auto 0;
  padding: 0 1rem;
}

.cta-grid .cta-button {
  width: 100%;
  justify-content: center;
  font-size: 1.1rem;
  padding: 1.2rem 2rem;
  background: var(--secondary);
  color: var(--primary);
  border: 2px solid var(--secondary);
  transition: all 0.3s ease;
}

.cta-grid .cta-button:hover {
  background: transparent;
  color: var(--secondary);
  border-color: var(--secondary);
  transform: translateY(-2px);
}

@media (max-width: 992px) {
  .einleitung {
    padding: 4rem 0;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .intro-text {
    font-size: 1.1rem;
    padding: 0 1rem;
  }
  
  .cta-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
}

@media (max-width: 576px) {
  .cta-grid {
    grid-template-columns: 1fr;
  }
}

/* Content Sections */
.block-section {
  padding: 4rem 1rem;
  max-width: 1200px;
  margin: 0 auto;
}

.block-section h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
  position: relative;
}

.block-section h2::after {
  content: '';
  display: block;
  width: 50px;
  height: 2px;
  background: var(--primary);
  margin: 1rem auto;
}

/* Lists */
ul {
  list-style: none;
  max-width: 600px;
  margin: 2rem auto;
  padding: 0;
}

li {
  padding: 1rem;
  margin: 1rem 0;
  background: #f8f8f8;
  border-left: 3px solid var(--primary);
  text-align: left;
}

/* Contact Page */
.contact-details {
  background: var(--background);
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 2px 15px rgba(0,0,0,0.1);
  margin: 2rem auto;
  max-width: 600px;
  text-align: left;
}

.contact-details p {
  margin: 1rem 0;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.contact-details a {
  color: var(--primary);
  transition: color 0.3s ease;
}

.contact-details a:hover {
  color: var(--accent);
}

.contact-form {
  max-width: 600px;
  margin: 2rem auto;
  padding: 2rem;
  background: var(--background);
  border-radius: 8px;
  box-shadow: 0 2px 15px rgba(0,0,0,0.1);
}

.contact-form label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--secondary);
  font-weight: 600;
  text-align: left;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.8rem;
  margin-bottom: 1.5rem;
  border: 2px solid #eee;
  border-radius: 4px;
  font-family: var(--body-font);
  transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--primary);
}

.contact-form button {
  width: 100%;
  padding: 1rem;
  font-size: 1.1rem;
}

/* Footer */
footer {
  background: var(--gradient);
  color: var(--foreground);
  padding: 4rem 1rem 2rem;
  margin-top: 4rem;
  position: relative;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  text-align: left;
}

.footer-col {
  flex: 1;
  min-width: 250px;
}

.footer-col h3 {
  margin-bottom: 1.5rem;
  color: var(--primary);
  font-size: 1.5rem;
  padding-bottom: 0.5rem;
  position: relative;
}

.footer-col h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 2px;
  background: var(--accent);
}

.footer-col p,
.footer-col a {
  margin-bottom: 0.5rem;
  line-height: 1.8;
  color: var(--background);
}
.footer-bottom {
  text-align: right;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 0.9rem;
  color: var(--primary);
}

#logoSmall {
  height: 35px;
}

/* Success Page */
.success-message {
  background: var(--background);
  padding: 3rem;
  border-radius: 8px;
  box-shadow: 0 2px 15px rgba(0,0,0,0.1);
  margin: 2rem auto;
  max-width: 600px;
  text-align: center;
}

.success-message p {
  margin: 1.5rem 0;
  font-size: 1.1rem;
  color: var(--text-gray);
  line-height: 1.8;
}

.button-container {
  margin-top: 3rem;
}

/* Video Overlay Modal */
.video-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.video-overlay.active {
  display: flex;
}

.video-container {
  position: relative;
  width: 90%;
  max-width: 1200px;
  aspect-ratio: 16/9;
}

.video-container iframe {
  width: 100%;
  height: 100%;
  border-radius: 8px;
}

.close-video {
  position: absolute;
  top: -40px;
  right: 0;
  background: none;
  border: none;
  color: white;
  font-size: 2rem;
  cursor: pointer;
  z-index: 1001;
  padding: 0.5rem;
  line-height: 1;
}

.close-video:hover {
  color: var(--primary);
}

/* Play Icon */
.play-icon {
  display: inline-block;
  margin-right: 0.5rem;
  font-size: 1em;
}

/* Contact Page Luxury Styling */
.contact-hero {
  background: linear-gradient(135deg, var(--secondary) 0%, #08080A 100%);
  padding: 8rem 2rem 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.contact-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="0.5" fill="%23BDB295" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  opacity: 0.3;
}

.contact-hero-content {
  position: relative;
  z-index: 2;
}

.contact-title {
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--primary);
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  text-shadow: 0 4px 20px rgba(189, 178, 149, 0.3);
}

.contact-subtitle {
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.contact-main {
  padding: 4rem 0;
  background: linear-gradient(to bottom, #fafafa 0%, #ffffff 100%);
}

.contact-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.contact-card {
  background: linear-gradient(135deg, var(--primary) 0%, #D4C5A0 100%);
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(189, 178, 149, 0.3);
  border: 1px solid rgba(189, 178, 149, 0.2);
}

.contact-header h2 {
  color: var(--secondary);
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  text-align: center;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.contact-person {
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.person-name {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--secondary);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-method {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.contact-method:hover {
  background: rgba(255, 255, 255, 0.3);
}

.method-icon {
  font-size: 1.2rem;
  width: 40px;
  height: 40px;
  background: var(--secondary);
  color: white;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.method-content {
  flex: 1;
}

.method-label {
  font-size: 0.9rem;
  color: var(--text-gray);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.3rem;
}

.method-value {
  font-size: 1.1rem;
  color: var(--secondary);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.method-value:hover {
  color: var(--primary);
}

.contact-form-section {
  background: white;
  border-radius: 12px;
  padding: 2.5rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(189, 178, 149, 0.2);
}

.form-header {
  text-align: center;
  margin-bottom: 3rem;
}

.form-header h2 {
  color: var(--secondary);
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.form-header p {
  color: var(--text-gray);
  font-size: 1.1rem;
  line-height: 1.6;
}

.luxury-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group.full-width {
  grid-column: 1 / -1;
}

.luxury-form label {
  font-weight: 600;
  color: var(--secondary);
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.luxury-form input,
.luxury-form textarea {
  padding: 1rem;
  border: 2px solid rgba(189, 178, 149, 0.2);
  border-radius: 10px;
  font-size: 1rem;
  background: rgba(255, 255, 255, 0.8);
  transition: all 0.3s ease;
  font-family: inherit;
}

.luxury-form input:focus,
.luxury-form textarea:focus {
  outline: none;
  border-color: var(--primary);
  background: white;
  box-shadow: 0 0 0 3px rgba(189, 178, 149, 0.1);
  transform: translateY(-2px);
}

.luxury-form textarea {
  resize: vertical;
  min-height: 120px;
}

.form-submit {
  margin-top: 2rem;
  text-align: center;
}

.luxury-submit-btn {
  position: relative;
  background: var(--primary);
  color: var(--secondary);
  border: none;
  padding: 1rem 2.5rem;
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 8px;
  cursor: pointer;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(189, 178, 149, 0.3);
}

.luxury-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(189, 178, 149, 0.4);
}

.luxury-submit-btn span {
  position: relative;
  z-index: 2;
}

.btn-shine {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.6s ease;
}

.luxury-submit-btn:hover .btn-shine {
  left: 100%;
}

.response-time {
  margin-top: 1rem;
  color: var(--text-gray);
  font-size: 0.95rem;
  font-weight: 500;
}

@media (max-width: 768px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .contact-hero {
    padding: 6rem 1rem 3rem;
  }
  
  .contact-title {
    font-size: 2.5rem;
  }
  
  .contact-subtitle {
    font-size: 1.1rem;
  }
  
  .contact-card,
  .contact-form-section {
    padding: 2rem;
    margin: 0 1rem;
  }
  
  .contact-main {
    padding: 2rem 0;
  }
}

