@charset "UTF-8";
/*
Theme Name: BSG
Author: design-cologne
Author URI: https://design-cologne.de
Description: Theme für die Bonner Segelgemeinschaft
Version: 1.0
*/
html, body {
  height: 100%;
}

body {
  font-family: "Roboto", sans-serif;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  /* Mindesthöhe des Viewports */
}

/* Blauer Balken über Logo */
.top-bar {
  background-color: #37559e;
  height: 10px;
  width: 100%;
}

/* Logo zentrieren */
.logo {
  display: block;
  margin: 20px auto;
  max-height: 80px;
}

@media (min-width: 768px) {
  h1 {
    margin-bottom: 1rem;
  }
}
/* Desktop-Navigation wie gehabt */
.navbar {
  border-bottom: solid 1px #37559e;
  padding-bottom: 0;
}
.navbar .nav-link {
  font-family: "Roboto Condensed", sans-serif;
  text-transform: uppercase;
  color: #37559e;
  margin: 0 0.75rem;
  font-size: 1.2rem;
  text-decoration: none;
}
.navbar .nav-link:hover {
  color: #1d2c52;
}
.navbar .nav-link:active {
  color: #1d2c52;
  font-weight: 500;
}
.navbar .current-menu-item .nav-link {
  color: #1d2c52;
  font-weight: 500;
}
.navbar .fb-icon > a {
  text-indent: -9999px;
  /* Text ausblenden */
  width: 20px;
  /* Icon-Breite */
  height: 100%;
  /* Icon-Höhe */
  display: inline-block;
  background: url("../images/FB-f-Logo__blue_20.png") center center no-repeat;
  background-size: contain;
}

/* Burger-Icon nur auf Mobile sichtbar */
.menu-toggle {
  background: none;
  border: none;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 22px;
  cursor: pointer;
  z-index: 1100;
}
.menu-toggle span {
  display: block;
  height: 3px;
  width: 100%;
  background: #37559e;
  border-radius: 2px;
}

button.menu-toggle {
  background: none !important;
}

/* Overlay-Menü nur auf Mobile sichtbar */
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  background: rgba(55, 85, 158, 0.95);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  padding-top: 4rem;
  padding-bottom: 1rem;
  transform: translateY(-100%);
  transition: transform 0.4s ease-in-out;
  z-index: 1000;
}
.overlay.open {
  transform: translateY(0);
}
.overlay .overlay-menu {
  list-style: none;
  padding: 0;
  margin: 0;
}
.overlay .overlay-menu li {
  margin: 0.8rem 0;
}
.overlay .overlay-menu li a {
  font-family: "Roboto Condensed", sans-serif;
  color: #fff;
  font-size: 1.2rem;
  text-transform: uppercase;
  font-weight: bold;
  text-decoration: none;
}
.overlay .overlay-menu li a:hover {
  color: white;
}
.overlay .overlay-menu .fb-icon > a {
  text-indent: -9999px;
  /* Text ausblenden */
  width: 20px;
  /* Icon-Breite */
  height: 100%;
  /* Icon-Höhe */
  display: inline-block;
  background: url("../images/FB-f-Logo__blue_20.png") center center no-repeat;
  background-size: contain;
}
.overlay .close-btn {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 2rem;
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
}
.overlay .sub-menu {
  transform: none;
  opacity: 1;
  visibility: visible;
  display: block;
  list-style: none;
  margin-left: 0.75rem;
  padding: 0;
  background-color: transparent;
}
.overlay .sub-menu li {
  margin: 0.2rem 0;
}
.overlay .sub-menu .nav-link {
  text-transform: none;
  font-size: 1.1rem;
  font-weight: 400 !important;
  margin: 0;
  padding: 0.2rem;
}

/* Submenu*/
.sub-menu {
  transform: none;
  opacity: 1;
  visibility: visible;
  display: block;
  list-style: none;
  background-color: transparent;
}
.sub-menu .nav-link {
  text-transform: none;
  font-size: 1.1rem;
  font-weight: 400 !important;
  margin: 0;
  padding: 0.2rem 0.5rem;
}

@media (min-width: 768px) {
  .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    display: block;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
    z-index: 1000;
    padding: 0;
    margin-left: 0.75rem;
    background-color: #fff;
    border-left: solid 1px #37559e;
    border-right: solid 1px #37559e;
    border-bottom: solid 1px #37559e;
  }
  .sub-menu .nav-link {
    text-transform: none;
    font-size: 1.1rem;
    font-weight: 400 !important;
    margin: 0;
    padding: 0.2rem 0.5rem;
  }

  .dropdown:hover .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
}
/* Elementor Container an Bootstrap angleichen */
.elementor-container {
  max-width: 1140px;
  /* entspricht container-lg */
  margin: 0 auto;
  padding-left: 15px;
  padding-right: 15px;
}

/* Elementor Column an Bootstrap-Grid angleichen */
.elementor-column {
  padding-left: 15px;
  padding-right: 15px;
}

/* Fix für Elementor Sections mit Bootstrap Rows */
.elementor-section.container,
.elementor-section .container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
}

.e-con.two-column {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}
.e-con.two-column .left-column {
  flex: 0 0 60%;
  max-width: 60%;
}
.e-con.two-column .right-column {
  flex: 0 0 35%;
  max-width: 35%;
}

@media (max-width: 768px) {
  .e-con.two-column > .left-column,
.e-con.two-column > .right-column {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .elementor-element .contact {
    row-gap: 0.2rem;
  }
}
/* Hero-Bild */
.hero {
  position: relative;
  margin: 0;
  padding: 0;
}
.hero img {
  width: 100% !important;
  height: auto;
  display: block;
}
.hero img {
  height: 30vh;
  object-fit: cover;
}

@media (min-width: 992px) {
  .hero img {
    width: 100%;
    height: auto;
    display: block;
  }
}
/* Infoboxen Sektion */
.info-section {
  margin-top: -100px;
  /* Boxen nach oben ziehen */
  position: relative;
  z-index: 2;
  /* Boxen über das Bild legen */
}

/* Infoboxen selbst */
.info-box {
  background-color: #37559e;
  border-radius: 0;
  padding: 1rem !important;
  color: #fff;
  text-align: center;
}
.info-box .text-link a {
  border: none;
  color: #fff !important;
  text-decoration: underline;
}
.info-box a {
  display: inline-block;
  border: 2px solid #fff;
  overflow: hidden;
  border-radius: 0;
  color: #fff !important;
}
.info-box p {
  color: #fff;
  margin-bottom: 0;
}
.info-box img {
  display: block;
  width: 100%;
  height: auto;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.info-box a:hover img {
  transform: scale(1.08);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}
.info-box .title {
  font-size: 1.2rem;
  text-align: center;
  margin-top: 0;
  margin-bottom: 0.5rem;
  font-weight: 600;
  line-height: 1.2;
  text-transform: uppercase;
  hypens: auto;
}
.info-box .title p {
  color: #fff;
  margin-bottom: 0;
}

@media (min-width: 768px) {
  .info-box {
    text-align: left;
    height: 100% !important;
  }
  .info-box .title {
    font-size: 1.4rem;
  }
}
/* Textblock */
.text-block {
  max-width: 800px !important;
  margin: 2rem auto;
  text-align: left;
}
.text-block h1 {
  font-size: 1.8rem;
  line-height: 1;
  font-weight: 600;
}
.text-block h2 {
  font-size: 1.8rem;
  line-height: 1;
  font-weight: 600;
}

.contact p {
  margin-bottom: 0.2rem !important;
  line-height: 1.2;
}

.mail-link a:hover img {
  transform: scale(1.1);
}

/* media queries */
@media (min-width: 768px) {
  .text-block h1 {
    font-size: 1.8rem;
    line-height: 1;
    font-weight: 600;
  }
  .text-block h2 {
    font-size: 1.8rem;
    line-height: 1;
    font-weight: 600;
  }
}
/* Footer sticky */
footer {
  background-color: #37559e;
  color: #fff;
  padding: 1rem 0;
  height: 140px;
  margin-top: auto;
  /* Footer unten halten */
}
footer p {
  font-size: 0.9rem;
}

.footer-logo {
  max-height: 70px;
}
.footer-logo img {
  max-height: 70px;
  width: auto;
}

/* Footercontainer */
.footer-content {
  width: 100%;
  max-width: 800px;
  padding: 0.4rem 1rem;
}
.footer-content p {
  margin-bottom: 0;
}

/* media queries */
@media (min-width: 768px) {
  footer {
    height: 100px;
  }
  footer p {
    font-size: 0.9rem;
  }

  .footer-content {
    padding: 0 1rem;
  }
}

/*# sourceMappingURL=bsg-style.css.map */
