/*
Theme Name:         Isegrim
Theme URI:          https://www.innobox.de
Description:        Wordpress theme für isegrim
Version:            0.0.1
Author:             innobox GmbH
Author URI:         https://www.innobox.de
Text Domain:        isegrim
Domain Path:        /lang
*/
/* Grundlegendes Styling für den Body */
body {
  font-family: Arial, sans-serif;
  color: #333;
  margin: 0;
  padding: 0;
  line-height: 1.6;
}

/* Überschrift unsichtbar für Screenreader */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* Einleitung */
.intro {
  text-align: center;
  padding: 20px;
}

.intro img {
  max-width: 200px;
  height: auto;
}

/* Abschnitt Story */
.section.story {
  padding: 40px 0;
  background-color: #f9f9f9;
}

.story-videos {
  display: flex;
  gap: 20px; /* Abstand zwischen den Videos */
  margin-top: 20px;
}

.story-video {
  flex: 1; /* Gleiche Breite für beide Videos */
}

.responsive-video {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
}

.responsive-video iframe,
.responsive-video video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* Divider-Text */
.divider-text {
  font-size: 1.5em;
  text-align: center;
  color: #555;
  margin: 40px 0 20px;
  text-transform: uppercase;
  font-weight: bold;
}

/* Abschnitt Produkte */
.section.products {
  padding: 40px 0;
  background-color: #fff;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.product-showcase {
  margin-bottom: 40px;
  padding: 20px;
  border: 1px solid #ddd;
  border-radius: 8px;
  background-color: #fafafa;
}

.products-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
}

.products-intro {
  flex: 1;
}

.products-intro p {
  margin: 0;
}

.products-header img {
  max-width: 150px;
  height: auto;
}

/* Produkte Bilder */
.product-showcase img {
  width: 100%;
  height: auto;
  max-width: 200px;
}

.products-roots__logo {
  display: block;
  margin: 20px auto;
  max-width: 200px;
}

/* Links */
a {
  color: #0073aa;
  text-decoration: none;
}

a:hover {
  color: #005177;
  text-decoration: underline;
}

/* Medienanfragen für mobile Geräte */
@media (max-width: 768px) {
  .story-videos {
    flex-direction: column;
  }

  .products-header {
    flex-direction: column;
    text-align: center;
  }

  .products-header img {
    margin: 0 auto;
  }
}
