/* Import Roboto Flex font */
@import url('https://fonts.googleapis.com/css2?family=Roboto+Flex:wght@100..1000&display=swap');

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

html {
  scroll-behavior: smooth;
}

body {
  font-family:
    'Roboto Flex',
    -apple-system,
    BlinkMacSystemFont,
    'Segoe UI',
    Roboto,
    Helvetica,
    Arial,
    sans-serif,
    'Apple Color Emoji',
    'Noto Color Emoji';
  font-size: 16px;
  line-height: 1.6;
  color: #222;
  background-color: #ffffff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* Utilities */
.text-yellow {
  color: #f2d400 !important; /* Specific yellow from live site analysis */
}

.font-bold {
  font-weight: 700;
}

.text-center {
  text-align: center;
}

/* Header / Navigation */
.site-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 120px;
  z-index: 1000;
  background: transparent;
  display: flex;
  align-items: center;
}

.site-header-inner {
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
}

.site-brand {
  display: flex;
  align-items: baseline;
}

.site-brand a {
  text-decoration: none;
  color: #fff;
  display: flex;
  align-items: baseline;
}

.site-brand-logo {
  font-size: 32px;
  font-weight: 900;
  line-height: 1;
  color: #000;
  margin-right: 15px;
}

.site-brand-tagline {
  font-size: 15px;
  font-weight: 400;
  color: #000;
  white-space: nowrap;
}

.site-brand-tagline strong {
  font-weight: 700;
}

.site-nav {
  display: flex;
  gap: 0;
  align-items: center;
}

.site-nav a {
  color: #000;
  text-decoration: none;
  padding: 0 15px;
  font-size: 15px;
  font-weight: 400;
  transition: color 0.2s ease;
  position: relative;
}

.site-nav a:hover,
.site-nav a.active {
  color: #000;
}

.site-nav a::after {
  content: '/';
  position: absolute;
  right: -2px;
  color: #000;
  font-weight: 300;
}

.site-nav a:last-child::after {
  content: '';
}

/* Hero Section */
.hero-section {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.hero-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.media-arrow {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 50px;
  border: 2px solid #fff;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.media-arrow::after {
  content: '';
  width: 12px;
  height: 12px;
  border-bottom: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg);
  margin-top: -5px;
}

.media-arrow:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

/* Section Styles */
.section {
  position: relative;
  padding: 100px 0;
}

.section-white {
  background-color: #ffffff;
}

.section-dark-bg,
.section-light-bg {
  position: relative;
  overflow: hidden;
}

.section-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.section-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section-dark-bg::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.65);
  z-index: 2;
}

.section-light-bg::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.35);
  z-index: 2;
}

.section-content {
  position: relative;
  z-index: 3;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Typography Overrides */
h1 {
  font-size: 55px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 30px;
  color: #222;
}

h2 {
  font-size: 28px;
  font-weight: 400;
  line-height: 1.4;
  margin-bottom: 20px;
}

p {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.section-dark-bg .section-content h1,
.section-dark-bg .section-content h2,
.section-dark-bg .section-content p,
.section-light-bg .section-content h1,
.section-light-bg .section-content h2,
.section-light-bg .section-content p {
  color: #ffffff;
}

/* Topic Headlines */
.topic-large {
  font-size: 55px;
  font-weight: 800;
  margin: 10px 0;
  display: block;
}

.cta-heading {
  font-size: 40px;
  font-weight: 800;
  margin-top: 40px;
  color: #fff;
}

/* Icon Grid */
.icon-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin: 40px 0;
}

.icon-item {
  text-align: center;
  color: #fff;
}

.icon-svg {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
}

.icon-svg svg {
  width: 100%;
  height: 100%;
  stroke: #fff;
}

.icon-item p {
  font-size: 18px;
  font-weight: 700;
}

.hero-kontakt {
  height: 50vh;
  min-height: 400px;
}

.hero-kontakt .hero-background img {
  object-position: bottom center;
}

.contact-section {
  padding: 60px 0;
  background-color: #ffffff;
}

.contact-intro {
  color: #393939;
  font-size: 28px;
  font-weight: 400;
  text-align: left;
  line-height: 1.35;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.contact-heading {
  color: #393939;
  font-size: 55px;
  font-weight: 700;
  text-align: center;
  line-height: 1.3;
  margin-top: 40px;
  margin-bottom: 60px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}

.contact-map-container {
  position: relative;
  width: 100%;
  height: 300px;
  overflow: hidden;
}

.contact-map {
  width: 100%;
  height: 100%;
  border: 0;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-left: 20px;
}

.contact-item {
  display: flex;
  gap: 15px;
  align-items: flex-start;
}

.contact-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 6px;
}

.contact-icon svg {
  width: 100%;
  height: 100%;
  stroke: #585858;
  stroke-width: 2;
}

.contact-text {
  flex: 1;
}

.contact-text h3 {
  font-size: 19px;
  font-weight: 700;
  color: #393939;
  margin: 0;
  line-height: 1.2;
}

.contact-text p {
  font-size: 15.2px;
  color: #393939;
  margin: 4px 0 0;
  line-height: 1.4;
}

/* Closing Section */
.closing-section {
  position: relative;
  overflow: hidden;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.closing-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.closing-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 95% center;
}

.closing-content {
  position: relative;
  z-index: 2;
  width: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.closing-box {
  background-color: #ffffff;
  padding: 10px 25px;
  display: inline-block;
}

.closing-box h1 {
  margin: 0;
  color: #393939;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.2;
  white-space: nowrap;
}

/* Footer */
.site-footer {
  background: #000;
  color: #fff;
  padding: 40px 20px;
  text-align: center;
}

.site-footer div {
  font-size: 14px;
  opacity: 0.8;
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #1a1a1a;
  color: #fff;
  padding: 20px;
  z-index: 10000;
}

.cookie-bar {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.cookie-buttons {
  display: flex;
  gap: 10px;
}

.cookie-btn {
  background: #fff;
  color: #000;
  border: none;
  padding: 10px 20px;
  font-weight: 700;
  cursor: pointer;
  border-radius: 4px;
}

.cookie-close {
  background: transparent;
  color: #fff;
  border: none;
  font-size: 24px;
  cursor: pointer;
}

/* Mobile Nav & Burger Menu Redesign */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 20px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
}

.menu-toggle span {
  width: 100%;
  height: 2px;
  background: #000;
  transition: all 0.3s ease;
}

.nav-close {
  display: none;
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  font-size: 24px;
  color: #999;
  cursor: pointer;
  padding: 10px;
}

/* Responsive Overrides */
@media (max-width: 768px) {
  .site-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background: transparent;
    z-index: 1000;
    border: none;
  }

  .site-header-inner {
    padding: 20px;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }

  .site-brand-logo {
    color: #000;
    font-size: 1.5rem;
  }

  .site-brand-tagline {
    display: block;
    color: #000;
    font-size: 0.8rem;
    margin-top: 5px;
    max-width: 250px;
    white-space: normal;
  }

  .menu-toggle {
    display: flex;
    margin-top: 10px;
  }

  .site-nav {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: 85%;
    background: #fff;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
    z-index: 2000;
    padding: 80px 0 0 0;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
  }

  .site-nav.active {
    transform: translateX(0);
  }

  .site-nav .nav-close {
    display: block;
  }

  .site-nav a {
    margin: 0;
    padding: 20px 30px;
    font-size: 1.1rem;
    color: #999;
    text-align: left;
    border-bottom: 1px solid #eee;
    width: 100%;
    font-weight: 400;
  }

  .site-nav a.active {
    color: #000;
    font-weight: 600;
  }

  .site-nav a::after {
    display: none;
  }

  /* Section Responsiveness */
  .section-content {
    padding: 60px 30px;
  }

  h1 {
    font-size: 2.2rem !important;
    line-height: 1.2 !important;
  }

  .text-center h1 {
    text-align: center;
  }

  .hero-section {
    height: 100vh;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 30px;
  }
  .topic-large {
    font-size: 30px;
  }
  .section {
    padding: 60px 0;
  }
}
