@charset "utf-8";

/* =========================
   FONTS
========================= */
@font-face {
    font-family: 'Roboto';
    src: url('../fonts/Roboto-Regular.woff2') format('woff2');
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat-VariableFont_wght.woff2') format('woff2');
    font-display: swap;
}

/* =========================
   ROOT / GLOBAL
========================= */
:root {
    --main-dark-blue-color: #1e387e;
    --main-light-blue-color: #0377bc;
    --main-yellow-color: #ffb00b;
    --red-color: #c81d1d;
}

* {
    box-sizing: border-box;
    hyphens: none;
}

body {
    position: relative;
    font-family: 'Roboto', 'Montserrat', sans-serif;
}

a,
a:hover {
    text-decoration: none;
}

.main-blue-color {
    color: var(--main-dark-blue-color);
}

/* =========================
   FLOATING BUTTONS
========================= */
.floating-alongside {
    position: fixed;
    top: 70vh;
    right: 23px;
    z-index: 1000;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.floating-alongside.show {
    opacity: 1;
}

.floating-alongside a,
.floating-alongside a:focus {
    width: 57px;
    height: 57px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    text-decoration: none;
    background-color: var(--main-light-blue-color);
    border-radius: 50%;
}

.floating-alongside i {
    font-size: 32px;
    color: #fff;
}

.floating-alongside a:hover {
    background-color: #fff;
    box-shadow: 0 0 3px 1px var(--main-light-blue-color);
}

.floating-alongside a:hover i {
    color: var(--main-light-blue-color);
}

.floating-alongside .phone,
.floating-alongside .mail {
    margin-bottom: 10px;
}

/* =========================
   HEADER / HERO BACKGROUND
========================= */
header {
    min-height: 100vh;
    height: auto;
    position: relative;
    color: var(--main-dark-blue-color);
    overflow: visible;
}

.headerVideoWrapper,
.headerBg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.headerVideoWrapper {
    z-index: -5;
}

.headerBg {
    z-index: -6;
    background: url('/images/Rohrfrosch1.webp') center center / cover no-repeat;
}

.headerVideoWrapper::after,
.headerBg::after {
    content: "";
    position: absolute;
    inset: 0;
}

.headerVideoWrapper::after {
    background: rgba(255, 255, 255, 0.35);
}

.headerBg::after {
    background: rgba(0, 0, 0, 0.55);
}

.headerVideo {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

header div.headAllHeightFlex {
    flex-grow: 1;
}

header div.headAllHeight {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0;
}

@media (min-width: 769px) {
    .headerBg {
        display: block !important;
        background: url('/images/Rohrfrosch.webp') center 40% / cover no-repeat;
    }

    .headerVideoWrapper {
        display: none !important;
    }
}

/* =========================
   NAVIGATION
========================= */
nav img.navbar-logo {
    max-width: 150px;
    width: 100%;
    height: auto;
    display: block;
    filter: brightness(1.35) contrast(1.2);
}

nav i {
    color: var(--main-dark-blue-color);
}

nav .navbar-tel i {
    margin-right: 15px;
    font-size: 31px;
}

nav .menuBtn i {
    font-size: 43px;
}

nav button.menuBtn {
    padding: 0;
    background-color: transparent;
}

nav button.menuBtn,
nav button.menuBtn:focus {
    border: none;
    box-shadow: none;
}

nav .dropdown-menu {
    border: none;
}

nav .nav-item {
    padding: 15px 30px;
}

nav .nav-item a.nav-link {
    font-size: 1.3rem;
}

nav #navbarMenu {
    position: fixed;
    top: 0;
    right: -90vw;
    width: 90vw;
    height: 100vh;
    z-index: 1001;
    background-color: #fff;
}

nav #navbarMenu .close {
    padding: 23px;
    text-align: right;
    font-size: 2rem;
}

nav #navbarMenu .close i {
    cursor: pointer;
}

nav #navbarMenu .wrapper {
    height: 100vh;
}

nav #navbarMenu .wrapper .navFooter {
    color: var(--bs-body-color);
    margin-bottom: 40px;
}

nav #navbarMenu .wrapper .navFooter img {
    max-width: 111px;
}

nav #navbarMenu .wrapper .navFooter a {
    color: var(--bs-body-color);
}

.main-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.main-nav a {
    position: relative;
    padding: 5px 0;
    color: #fff !important;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    white-space: nowrap;
    transition: all 0.3s ease;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
}

.main-nav a:hover {
    color: var(--main-yellow-color) !important;
}

.main-nav a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0%;
    height: 2px;
    background: var(--main-yellow-color);
    transition: width 0.3s ease;
}

.main-nav a:hover::after {
    width: 100%;
}

/* =========================
   HERO
========================= */
.hero-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 0;
    margin-bottom: 22px;
    position: relative;
    z-index: 2;
}

.hero-btn {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 20px;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 500;
    line-height: 1;
    white-space: nowrap;
    color: #fff !important;
}

.hero-btn.call-btn {
    background: #c81d1d !important;
}

.hero-btn.whatsapp-btn {
    background: #075E54 !important;
}

.hero-btn.mail-btn {
    background: #1e387e !important;
}

.hero-btn:hover {
    opacity: 0.92;
    transform: translateY(-2px);
    color: #fff !important;
}

.hero-phone {
    text-align: center;
    margin: 0 0 22px 0;
}

.hero-phone-link {
    display: inline-block;
    margin-top: 0;
    font-size: 48px;
    line-height: 1.1;
    font-weight: 700;
    color: #fff !important;
    text-shadow: 0 3px 10px rgba(0, 0, 0, 0.7);
}

.hero-headline-box {
    display: inline-block;
    text-align: center;
    min-width: auto;
    max-width: 900px;
    margin-bottom: 22px;
    padding: 18px 26px;
    border-radius: 16px;
    background: rgba(0, 0, 0, 0.22);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

.hero-headline-box h1 {
    margin: 0 0 10px 0;
    font-size: 56px;
    line-height: 1.08;
    font-weight: 700;
    color: #fff;
    text-shadow: 0 3px 10px rgba(0, 0, 0, 0.7);
    hyphens: none !important;
    word-break: normal !important;
    overflow-wrap: normal !important;
}

.hero-headline-box .hero-sub,
.hero-sub {
    margin: 0;
    font-size: 26px;
    line-height: 1.15;
    font-weight: 700;
    color: #fff !important;
    letter-spacing: 0.3px;
    text-shadow: 0 4px 14px rgba(0, 0, 0, 0.9);
}

/* =========================
   HEADER FORM / PARTNER SEARCH
========================= */
header .form-control::placeholder {
    color: #555 !important;
    opacity: 1 !important;
}

header .form-control:focus {
    background-color: #fff !important;
    border-color: #ccc !important;
    font-size: 1.2rem;
}

header .input-group {
    height: 60px;
}

header .input-group i {
    color: var(--main-dark-blue-color);
    font-size: 1.3rem;
}

header .input-group .input-group-text {
    padding: .375rem 1rem;
}

header button.btn {
    padding: .375rem 1rem;
    background-color: rgb(255 255 255 / 50%);
    border-color: #cbcfd8;
    border-left: none;
}

header button.btn:hover {
    background-color: rgb(30 56 126 / 50%);
}

header button.btn:hover i {
    color: #fff;
}

header .input-group.partner-search {
    width: 100% !important;
    max-width: 540px !important;
    margin: 0 auto !important;
    position: relative !important;
    z-index: 5 !important;
    transform: none !important;
    display: flex !important;
    align-items: center;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    overflow: hidden;
}

/* Partner search results */
.searchPartnerResult {
    position: absolute;
    left: 0;
    background-color: #fff;
    max-height: 230px;
    overflow-y: scroll;
    border-radius: 0 0 5px 5px;
}

.searchPartnerResult .filteredPlaces {
    display: block;
    padding: 10px 30px;
    color: var(--bs-body-color);
    cursor: pointer;
}

/* =========================
   CONTENT
========================= */
div.content section {
    margin: 53px 0;
    text-align: justify;
}

div.content section h2 {
    text-align: center;
    margin-bottom: 0.2rem;
    font-size: calc(1.2rem + .1vw);
}

div.content section h2.blue-small {
    text-align: center;
    margin-bottom: 0.2rem;
    font-size: calc(1.2rem + .6vw);
}

div.content section h2.blue-small + p.subtitle {
    text-align: center;
    margin-bottom: 0.2rem;
    font-size: calc(1.2rem + .1vw);
    color: #043882;
}

div.content section h3 {
    text-align: center;
    margin-bottom: 0.2rem;
}

div.content section h3.blue-small {
    color: #043882;
    font-size: calc(1.2rem + .6vw);
    margin-bottom: 0.2rem;
}

div.content section p {
    font-size: calc(1rem + .6vw);
}

div.content section .contentImage img,
#services img.serviceImage,
#imprint img.serviceImage,
.videoService {
    width: 100%;
    border-radius: 10px;
}

/* =========================
   REVIEWS
========================= */
#reviews .carousel {
    margin: 1rem 0;
}

#reviews .carousel-indicators {
    margin-bottom: -1rem;
}

#reviews .carousel-inner {
    min-height: 430px;
}

#reviews img {
    width: 25%;
    margin-top: 0.5rem;
    border-radius: 50%;
    box-shadow: 0 0 5px 1px var(--main-dark-blue-color);
}

#reviews p.reviewName {
    margin: 10px 0;
}

#reviews .stars {
    margin-bottom: 10px;
    color: #FECD19;
}

#reviews .quote {
    position: absolute;
    top: 60px;
    left: 0;
    width: 50px;
    height: 50px;
    font-size: 4rem;
    color: #a3a3a3;
}

#reviews p.reviewText {
    font-size: 0.9rem;
}

/* =========================
   SERVICES / FAQ / IMPRINT
========================= */
#services .accordion-button,
#imprint .accordion-button,
#faq .accordion-button {
    color: var(--main-dark-blue-color);
}

#services .accordion-button {
    font-size: 1.3rem;
}

#imprint .accordion-button,
#faq .accordion-button {
    font-size: 1.1rem;
}

#services .accordion-button:focus,
#imprint .accordion-button:focus,
#faq .accordion-button:focus {
    box-shadow: none;
}

#services .accordion-button:not(.collapsed),
#imprint .accordion-button:not(.collapsed),
#faq .accordion-button:not(.collapsed) {
    color: var(--main-dark-blue-color);
    background-color: inherit;
}

#services button.accordion-button,
#services .accordion-body,
#imprint button.accordion-button,
#imprint .accordion-body,
#faq button.accordion-button,
#faq .accordion-body {
    padding-left: 0;
    padding-right: 0;
}

#services .serviceIconWrapper {
    width: 20%;
    margin-right: 10px;
    text-align: center;
}

#services img.serviceIcon {
    height: 50px;
}

#services a.moreDetails,
.trustElements a.moreDetails {
    padding: 10px 15px;
    font-weight: bold;
    background-color: var(--main-dark-blue-color);
    color: #fff;
    border-radius: 5px;
}

#services a.moreDetails:hover,
.trustElements a.moreDetails:hover {
    background-color: #fff;
    color: var(--main-dark-blue-color);
    box-shadow: 0 0 3px 1px var(--main-dark-blue-color);
}

#imprint .imprintIconWrapper,
#faq .imprintIconWrapper {
    margin-right: 17px;
}

#imprint .imprintIconWrapper i,
#faq .imprintIconWrapper i {
    font-size: 2rem;
}

/* =========================
   CONTACT
========================= */
#contact #success-contact-form {
    margin: 0 15px 15px;
    padding: 5px 0;
    text-align: center;
    border: 1px solid #157a08;
    border-radius: 5px;
    color: #157a08;
    font-size: 15px;
}

#contact form#contact-form {
    font-size: 1.3rem;
    text-align: center;
}

#contact input,
#contact textarea {
    width: 100%;
    padding: 10px;
    border: none;
    border-bottom: 1px solid var(--bs-body-color);
    color: var(--bs-body-color);
    outline: none;
}

#contact ::placeholder {
    color: var(--bs-body-color);
}

#contact button {
    width: 60%;
    margin: 20px 0;
    border-radius: 10px;
    font-size: 1.2rem;
    background-color: var(--main-dark-blue-color);
    color: #fff;
}

#contact button:hover {
    color: var(--main-dark-blue-color);
    background-color: #fff;
    border: 1px solid var(--main-dark-blue-color);
}

/* =========================
   MAP
========================= */
#openStreetMap #map {
    min-height: 400px;
    border-radius: 10px;
}

/* =========================
   CALL BUTTON
========================= */
div.callBtnBox {
    display: flex;
    justify-content: center;
    align-items: center;
}

div.callBtnInnerTxt {
    position: absolute;
    z-index: 2;
}

div.callBtnBox .btn {
    display: flex;
    justify-content: center;
    width: 20rem;
    height: 70px;
    line-height: 55px;
    text-align: center;
    cursor: pointer;
}

div.callBtnBox .btn:hover {
    color: var(--main-dark-blue-color);
}

div.callBtnBox .btn-special {
    position: relative;
    font-size: 1.2rem;
    color: #fff;
    transition: all 0.5s;
}

div.callBtnBox .btn-special::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    background-color: var(--main-dark-blue-color);
    transition: all 0.3s;
}

div.callBtnBox .btn-special:hover::before {
    opacity: 0;
    transform: scale(0.5, 0.5);
}

div.callBtnBox .btn-special::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    opacity: 0;
    border: 1px solid var(--main-dark-blue-color);
    transform: scale(1.2, 1.2);
    transition: all 0.3s;
}

div.callBtnBox .btn-special:hover::after {
    opacity: 1;
    transform: scale(1, 1);
}

/* =========================
   CERTIFICATION
========================= */
#popupCertifications {
    cursor: pointer;
}

#popupCertifications2 {
    color: #043882;
    cursor: pointer;
    text-decoration: none;
}

/* =========================
   WARTUNGSANGEBOT
========================= */
.wartungsangebot ul {
    list-style: none;
    padding-left: 7px;
    text-align: left;
    font-size: 0.9em;
}

.wartungsangebot li {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.wartungsangebot li div.listStyle {
    padding-right: 17px;
}

.wartungsangebot li div.listStyle svg path {
    color: #043882;
}

.wartungsangebot p.price {
    text-align: center;
    margin-top: 27px;
    margin-bottom: 7px;
}

.wartungsangebot p.price small {
    font-size: 0.8em;
}

.wartungsangebot p.price span {
    color: #1e387e;
    font-size: 1.5em;
}

.heizungSanitaer .wartungsangebot li {
    align-items: normal;
}

/* =========================
   FOOTER
========================= */
footer {
    margin: 50px 0 20px 0;
}

footer img {
    width: 30%;
}

footer i {
    font-size: 2.1rem;
    color: #043882;
}

footer a {
    color: var(--bs-body-color);
}

footer .footerPartnerVorOrt {
    font-size: 0.9rem;
}

footer .footerPartnerVorOrt .title {
    font-size: 0.95rem;
    font-weight: bold;
}

footer .footerPartnerVorOrt a {
    display: inline-block;
    padding: 8px 10px;
    margin: 2px 0;
    line-height: 1.5;
}

footer .copyrightPowered {
    font-size: 0.8rem;
}

/* =========================
   EXTRA SECTIONS
========================= */
#servicesHeizungSanitaer {
    color: #fff;
}

#servicesHeizungSanitaer .row {
    position: relative;
    z-index: -2;
    padding: 50px 0;
    background: url("/images/rohrfrosch24-heizungsraum.webp") fixed;
    background-size: cover;
    background-position: center;
}

#servicesHeizungSanitaer .row::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background-color: rgba(0, 117, 188, 0.8);
}

#servicesHeizungSanitaer img {
    height: 79px;
}

#servicesHeizungSanitaer p.title {
    margin: 1rem 0 0 0;
    font-weight: bold;
}

#servicesHeizungSanitaer p:last-child {
    font-size: 0.9rem;
}

#rohrfrosch24Notfall {
    color: #fff;
}

#rohrfrosch24Notfall .row {
    padding: 1rem 0;
    border-radius: 15px;
    background-color: var(--main-dark-blue-color);
}

#rohrfrosch24Notfall h3.blue-small {
    color: var(--main-yellow-color);
}

#rohrfrosch24Notfall img {
    height: 77px;
}

#rohrfrosch24Notfall .c2a {
    padding: 1rem 2rem;
    border-radius: 7px;
    background-color: #fff;
    color: var(--main-dark-blue-color);
    font-size: 1.1rem;
}

#rohrfrosch24Notfall .c2a:hover {
    color: #fff;
    background-color: var(--main-yellow-color);
}

#trustBar {
    position: relative;
    min-height: 300px;
    background-image: url("/images/rohrfrosch24-heizungsraum.webp");
    background-size: cover;
    background-position: center;
}

#trustBar::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgb(255 255 255 / 80%);
}

/* =========================
   CUSTOM BUTTONS
========================= */
.btn-yet-custom {
    min-width: 250px;
    height: 50px;
    padding: 0 30px;
    line-height: 50px;
    text-align: center;
    white-space: nowrap;
    cursor: pointer;
}

.btn-yet-01 {
    position: relative;
    color: var(--main-dark-blue-color);
    transition: all 0.5s;
}

.btn-yet-01::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    background-color: rgba(255, 255, 255, 0.1);
    transition: all 0.3s;
}

.btn-yet-01:hover::before {
    opacity: 0;
    transform: scale(0.5, 0.5);
}

.btn-yet-01::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    opacity: 0;
    border: 1px solid rgba(255, 255, 255, 0.5);
    transform: scale(1.2, 1.2);
    transition: all 0.3s;
}

.btn-yet-01:hover::after {
    opacity: 1;
    transform: scale(1, 1);
}

.btn-yet-02 {
    position: relative;
    color: var(--main-dark-blue-color);
    border: 1px solid var(--main-dark-blue-color);
    transition: all 0.5s;
}

.btn-yet-02::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    background-color: rgba(204, 217, 255, 0.1);
    transition: all 0.3s;
}

.btn-yet-02:hover::before {
    opacity: 0;
    transform: scale(0.5, 0.5);
}

.btn-yet-02::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    opacity: 0;
    border: 2px solid var(--main-dark-blue-color);
    transform: scale(1.2, 1.2);
    transition: all 0.3s;
}

.btn-yet-02:hover::after {
    opacity: 1;
    transform: scale(1, 1);
}

/* =========================
   VIDEO / INTRO
========================= */
#video .video-section-row,
#introduction .row {
    align-items: center;
}

#video .videoWrapper {
    position: relative;
    width: 100%;
}

#video #werbeVideo {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 10px;
}

#video .videoText {
    position: relative;
    z-index: 2;
}

#video .videoText p {
    margin: 0;
    font-size: 1.2rem;
    line-height: 1.7;
    text-align: left;
}

#video h2,
#video p.subtitle {
    text-align: left;
}

/* =========================
   MOBILE CTA
========================= */
.mobile-cta {
    position: fixed;
    right: 20px;
    bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 1000;
}

.mobile-cta a {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.mobile-cta i {
    font-size: 24px;
}

/* =========================
   MOBILE
========================= */
@media (max-width: 768px) {
    .headerVideoWrapper,
    video,
    #video video,
    #video #videoPlayButton {
        display: none !important;
    }

    .headerBg {
        display: block !important;
        background: url('/images/Rohrfrosch1.webp') center center / cover no-repeat;
    }

    .headerBg::after {
        background: rgba(0, 0, 0, 0.38) !important;
    }

 header {
    min-height: auto !important;
    height: auto !important;
    overflow: hidden;
}
    header div.headAllHeight {
    min-height: auto !important;
    height: auto !important;
    justify-content: flex-start !important;
}

header div.headAllHeightFlex {
    flex-grow: 0 !important;
}

header .container.headAllHeight,
header .row.headAllHeight,
header .col.headAllHeight {
    min-height: auto !important;
    height: auto !important;
}

header .col.headAllHeight {
    padding: 20px 0 20px 0 !important;
}
    nav .container-fluid {
        flex-direction: column;
        align-items: center !important;
        text-align: center;
        gap: 12px;
    }

    nav .navbar-brand {
        width: 100%;
        display: flex;
        justify-content: center;
    }

    nav img.navbar-logo {
        max-width: 140px;
        margin: 5px auto 0;
        filter: brightness(1.6) contrast(1.3) saturate(1.2);
    }

    .main-nav {
        width: 100%;
        justify-content: center;
        flex-wrap: nowrap;
        gap: 18px;
        margin-top: 14px;
        margin-bottom: 22px;
    }

    .main-nav a {
        font-size: 17px;
        font-weight: 800;
        letter-spacing: 0.3px;
    }

    .hero-buttons {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
        width: 92%;
        margin: 0 auto 18px auto;
    }

    .hero-btn {
        width: 100%;
        min-width: 0;
        max-width: none;
        font-size: 14px;
        padding: 11px 10px;
        border-radius: 14px;
    }

    .hero-btn.mail-btn {
        grid-column: 1 / -1;
    }

    .hero-btn i {
        font-size: 14px;
    }

    .hero-phone {
        margin: 0 0 18px 0;
    }

    .hero-phone-link {
        font-size: 26px;
        line-height: 1.2;
    }

    .hero-headline-box {
        width: 90%;
        max-width: none;
        margin: 0 auto 14px auto;
        padding: 14px 16px;
        border-radius: 18px;
        background: rgba(0, 0, 0, 0.28);
        backdrop-filter: blur(4px);
        -webkit-backdrop-filter: blur(4px);
    }

    .hero-headline-box h1 {
        margin: 0 0 6px 0;
        font-size: 26px;
        line-height: 1.2;
	hyphens: none !important;
	word-break: keep-all !important;
	overflow-wrap: normal !important;
    }

    .hero-headline-box .hero-sub,
    .hero-sub {
        font-size: 18px;
        margin: 0;
    }

    header .input-group.partner-search {
        width: 90% !important;
        max-width: 90% !important;
        margin: 18px auto 18px auto !important;
    }

    #introduction .row,
    #video .video-section-row {
        flex-direction: column;
    }

    #introduction .contentImage {
        margin-bottom: 20px;
    }
}

