/*--------------------------------------------------------------
# GENERAL
--------------------------------------------------------------*/
body {
    font-family: 'Roboto', sans-serif;
    font-size: 1rem;
    font-weight: 300;
    color: rgba(30, 30, 40, 1.0);
}

@media (max-width: 767.98px) {
    body {
        font-size: 0.95rem;
        color: rgba(10, 10, 20, 1.0);
    }
}

[id] {
    scroll-margin-top: 90px;
}

@media (max-width: 767px) {
    [id] {
        scroll-margin-top: 120px;
    }
}

hr {
    border: 0;
    height: 2px;
    background-image: linear-gradient(to right, rgba(110, 110, 130, 0.1), rgba(110, 110, 130, 0.8), rgba(110, 110, 130, 0.1));
}

.col-blue {
    color: rgba(10, 110, 150, 1.0) !important;
}

.col-blue-light {
    color: rgba(20, 160, 220, 1.0) !important;
}

.col-gray {
    color: rgba(150, 150, 160, 1.0) !important;
}

.col-gray-dark {
    color: rgba(110, 110, 130, 1.0) !important;
}

.col-black {
    color: rgba(50, 50, 70, 1.0) !important;
}

.mobile-break {
    display: none;
}

@media (max-width: 767px) {
    .mobile-break {
        display: inline;
    }
}

.img-zoom {
    transition: transform 0.2s ease-in-out;
}

@media (min-width: 992px) and (hover: hover) {
    .img-zoom:hover {
        transform: scale(1.02);
    }
}

/*--------------------------------------------------------------
# HERO
--------------------------------------------------------------*/
.hero-section {
    background: linear-gradient(135deg, rgba(246, 246, 250, 1.0) 0%, rgba(236, 236, 240, 1.0) 100%);
    padding-top: 50px;
    padding-bottom: 100px;
    padding-left: 0.75rem;
    padding-right: 0.75rem;
}

@media (max-width: 767.98px) {
    .hero-section {
        padding-top: 25px;
        padding-bottom: 50px;
    }
}

#hero-desktop-img {
    position: relative;
    left: -10px;
}

@media (min-width: 768px) {
    #hero-desktop-img {
        left: 0px;
    }
}

#hero-mobile-img {
    right: 0px;
    bottom: -30px;
}

@media (min-width: 768px) {
    #hero-mobile-img {
        right: -25px;
        bottom: -35px;
    }
}

/*--------------------------------------------------------------
# FEATURES
--------------------------------------------------------------*/
.features-section {
    padding-top: 50px;
    padding-bottom: 70px;
    padding-left: 0.75rem;
    padding-right: 0.75rem;
}

@media (max-width: 767.98px) {
    .features-section {
        padding-top: 30px;
        padding-bottom: 40px;
    }
}

.feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 44px;
    padding: 9px;
    background-color: rgba(20, 160, 220, 0.6);
    color: #fff !important;
    stroke: #fff !important;
    stroke-width: 2.5;
    border-radius: 12px 0 0 0;
    margin-bottom: 0;
    margin-left: 0;
}

@media (max-width: 767.98px) {
    .feature-icon {
        width: 38px;
        height: 36px;
        padding: 7px;
        background-color: rgba(20, 160, 220, 0.4);
        border-radius: 10px 0 0 0;
    }
}

.feature-box {
    width: 100%;
}

.feature-header {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding-right: 14px;
    font-size: 1.1rem;
    font-weight: 500;
    color: rgba(110, 110, 130, 1.0);
    margin-bottom: 12px;
    background-color: rgba(20, 160, 220, 0.15);
    border-radius: 12px 12px 0 0;
    overflow: hidden;
}

@media (min-width: 768px) {
    .feature-header {
        justify-content: flex-start;
    }
}

@media (max-width: 767.98px) {
    .feature-header {
        font-size: 1.0rem;
        margin-bottom: 8px;
        background-color: rgba(20, 160, 220, 0.075);
        border-radius: 10px 10px 0 0;
    }
}

.feature-details {
    width: 100%;
}

/* DESKTOP-VIEW (Ab 768px): Keine Akkordeon-Funktion */
@media (min-width: 768px) {
    .feature-details {
        display: block;
    }

    .feature-summary {
        display: block;
        pointer-events: none;
        cursor: default;
        list-style: none;
    }

    .feature-summary::-webkit-details-marker {
        display: none;
    }

    .expand-arrow {
        display: none;
    }
}

/* MOBILE-VIEW (Bis 767.98px): Akkordeon aktiv */
@media (max-width: 767.98px) {
    .feature-summary {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        cursor: pointer;
        outline: none;
        list-style: none;
        position: relative;
        padding-bottom: 25px;
        transition: padding-bottom 0.2s ease;
    }

    .feature-summary::-webkit-details-marker {
        display: none;
    }

    .feature-details:not([open]) .feature-text {
        display: -webkit-box;
        -webkit-line-clamp: 1;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
        margin-bottom: 0 !important;
    }

    .feature-details[open] .feature-text {
        display: block;
    }

    .expand-arrow {
        position: absolute;
        left: 50%;
        transform: translateX(-50%) rotate(45deg);
        bottom: 10px;
        width: 12px;
        height: 12px;
        border-right: 2px solid rgba(10, 110, 150, 0.6);
        border-bottom: 2px solid rgba(10, 110, 150, 0.6);
        transition: transform 0.2s ease, bottom 0.2s ease;
    }

    .feature-details[open] .expand-arrow {
        transform: translateX(-50%) rotate(-135deg);
        bottom: 20px;
    }
}

/*--------------------------------------------------------------
# DEMOS
--------------------------------------------------------------*/
.demos-section {
    background: linear-gradient(135deg, rgba(10, 110, 150, 0.075) 0%, rgba(10, 110, 150, 0.175) 100%);
    padding-top: 50px;
    padding-bottom: 70px;
    padding-left: 0.75rem;
    padding-right: 0.75rem;
}

@media (max-width: 767.98px) {
    .demos-section {
        padding-top: 30px;
        padding-bottom: 50px;
    }
}

@media (min-width: 768px) {
    .demos-section .row.g-5 > div {
        display: flex;
    }
}

.demo-desktop-img {
    position: relative;
    left: -10px;
}

@media (min-width: 768px) {
    .demo-desktop-img {
        left: 0px;
    }
}

.demo-mobile-img {
    width: 32%;
    z-index: 10;
    border: 3px solid #FFF;
    right: -10px;
    bottom: -20px;
}

@media (min-width: 768px) {
    .demo-mobile-img {
        right: -15px;
        bottom: -25px;
    }
}

.demo-content h4 {
    color: rgba(110, 110, 130, 1.0);
    font-size: 1.4rem;
}

.demo-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    width: 100%; 
}

.demo-content {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.demo-content .w-100.d-flex {
    margin-top: auto;
    padding-top: 0.25rem;
}
/*--------------------------------------------------------------
# CONTACT
--------------------------------------------------------------*/
.contact-section {
    padding-top: 50px;
    padding-bottom: 90px;
    padding-left: 0.75rem;
    padding-right: 0.75rem;
}

@media (max-width: 767.98px) {
    .contact-section {
        padding-top: 30px;
        padding-bottom: 50px;
    }
}

.privacy-link {
    color: rgba(10, 110, 150, 1.0);
    font-weight: 500;
}

.privacy-link:hover,
.privacy-link:focus {
    color: rgba(110, 110, 130, 1.0);
    outline: none;
}

.form-control:focus::placeholder {
    color: transparent;
}

.form-control::placeholder {
    color: rgba(150, 150, 160, 1.0);
    opacity: 1;
}

/*--------------------------------------------------------------
# SCREENSHOTS (Mit Reiter-Design)
--------------------------------------------------------------*/
.screenshots-section {
    background: linear-gradient(135deg, rgba(10, 110, 150, 0.05) 0%, rgba(10, 110, 150, 0.15) 100%);
    padding-top: 60px; 
    padding-bottom: 90px;
    padding-left: 0.75rem;
    padding-right: 0.75rem;
}

@media (max-width: 767.98px) {
    .screenshots-section {
        padding-top: 50px;
        padding-bottom: 50px;
    }
}

.demo-card {
    position: relative;
}

.screenshots-head {
    position: absolute;
    top: 0;
    left: 0;
    transform: translateY(-100%); 
    background-color: rgba(10, 110, 150, 0.6); 
    color: #ffffff !important;
    font-size: 0.8rem;
    font-weight: 500;
    padding: 0.15rem 0.6rem;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    white-space: nowrap;
    z-index: 2;
}

@media (max-width: 767.98px) {
    .screenshots-head {
        font-size: 0.9rem;
    }
}

.screenshot-container {
    width: 100%;
    height: auto; 
    aspect-ratio: 1 / 1; 
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.screenshot-img {
    width: 100%; 
    height: 100%; 
    display: block;
    object-fit: cover; 
    background-color: rgba(150, 150, 160, 0.1) !important;
    border: 1px solid rgba(10, 110, 150, 0.6); 
    border-top-left-radius: 0px !important;
    border-top-right-radius: 6px !important;
    border-bottom-left-radius: 6px !important;
    border-bottom-right-radius: 6px !important;
}

/*--------------------------------------------------------------
# MODAL SCREENSHOT LAYER
--------------------------------------------------------------*/
.modal-text-layer {
    background: rgba(10, 110, 150, 0.7); 
    color: #ffffff;
    padding: 2rem 2rem;
    margin: 0rem;    
    max-width: 580px;  
    border-radius: 0 0.5rem 0 0.5rem;
    border: 1px solid rgba(255, 255, 255, 0.15);
    z-index: 10;
    pointer-events: none;
}

.modal-layer-title {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.modal-layer-desc {
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.45;
    margin-bottom: 0;
}

/* Optimierung für Mobilgeräte */
@media (max-width: 575.98px) {
    .modal-text-layer {
        margin: 0rem;
        padding: 1.25rem 1.25rem;
        max-width: calc(100% - 9rem);
        border-radius: 0 8px 0 8px;
    }
    
    .modal-layer-title {
        font-size: 1.1rem;
    }
    
    .modal-layer-desc {
        font-size: 0.8rem;
    }
}

/*--------------------------------------------------------------
# BADGE
--------------------------------------------------------------*/
.badge {
    background-color: #FFF !important;
    color: rgba(10, 110, 150, 1.0);
    font-weight: 500;
    font-size: 0.95rem;
    text-align: left !important;
    line-height: 1.4 !important;
    white-space: normal !important;
    padding-top: 15px !important;
    padding-bottom: 14px !important;
    border-left: 10px solid rgba(10, 110, 150, 0.6) !important;
    border-right: 10px solid rgba(10, 110, 150, 0.6) !important;
    padding-left: 16px !important;
    padding-right: 12px !important;
    border-radius: 10px 10px 10px 10px !important;
    margin-left: 2.75rem !important;
    width: 59% !important;
}

@media (max-width: 767.98px) {
    .badge {
        font-size: 0.85rem;
        padding-left: 15px !important;
        padding-right: 10px !important;
        margin-left: 0rem !important;
        width: 100% !important;
    }
}

/*--------------------------------------------------------------
# Buttons
--------------------------------------------------------------*/
.btn-mops {
    display: inline-flex;
    align-items: center;
    flex: none;
    width: auto; 
    min-width: 160px; 
    height: 50px;
    padding: 0 20px 0 0; 
    border: none;
    border-radius: 25px;
    background-color: rgba(20, 160, 220, 0.8);
    color: #fff;
    font-size: 17px;
    font-weight: 500;
    overflow: hidden;
    cursor: pointer;
    transition: background-color 0.2s ease-in-out, max-width 0.2s ease-in-out;
}

@media (min-width: 992px) {
    .btn-mops .btn-icon-wrapper {
        font-size: 18px;
        margin-right: 0;
    }
}

.btn-mops .btn-icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0; 
    width: 50px;   
    height: 100%;
    background: rgba(0, 0, 0, 0.15);
    border-top-right-radius: 35px;
    margin-right: 8px; 
}

.btn-mops .btn-icon-wrapper i,
.btn-mops .btn-icon-wrapper svg {
    width: 22px !important;
    height: 22px !important;
    stroke-width: 2;
}

.btn-mops .btn-text {
    flex-grow: 1;
    white-space: nowrap; 
    overflow: hidden;
    text-overflow: ellipsis; 
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    text-align: center;
}

@media (hover: hover) {
    .btn-mops:hover {
        background-color: rgba(15, 135, 190, 1.0);
    }
}

.btn-mops:disabled {
    background: #cccccc !important;
    color: #666666 !important;
    cursor: not-allowed;
    box-shadow: none !important;
}

.btn-mops:disabled:hover {
    transform: none !important;
    box-shadow: none !important;
}
.btn-modal {
    background: rgba(20,160,220,1.0);
    border: none;
    color: #FFF;
    font-weight: 500;
    border-radius: 20px;
    padding: 10px 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-modal svg {
    width: 28px; 
    height: 28px;
    stroke-width: 2; 
    stroke: rgba(255, 255, 255, 0.6);
}

.btn-modal:hover {
    background: rgba(10,110,150,1.0);
    color: #FFF;
}

.button-leiste {
    padding-bottom: 0.5rem;
    padding-left: 0rem;
}

@media (min-width: 768px) {
    .button-leiste {
        max-width: 85% !important;
        padding-bottom: 1rem;
        padding-left: 2.75rem;
    }
}

/*--------------------------------------------------------------
# NAVIGATION
--------------------------------------------------------------*/
.navbar {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.navbar-nav .nav-link {
    color: rgba(10, 110, 150, 1.0) !important;
    font-weight: 500;
    display: inline-block;
    font-size: 1.15rem;
    transition: color 0.1s ease-in-out, transform 0.15s ease-in-out;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link:focus {
    color: rgba(150, 150, 160, 1.0) !important;
    transform: scale(1.06);
}

.navbar-brand {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

.navbar-brand i {
    vertical-align: text-bottom;
}

.navbar-logo {
    max-height: 26px;
    width: auto;
    transition: transform 0.2s ease-in-out;
}

.navbar-brand:hover .navbar-logo {
    transform: scale(1.04);
}

.navbar-subline {
    font-size: 0.65rem;
    font-weight: 400;
    padding-top: 2px;
}

@media (max-width: 991.98px) {
    .bg-light-mobile {
        background-color: #FFF;
        margin-left: -1.5rem;
        margin-right: -1.5rem;
        margin-bottom: -0.5rem;
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }

    .bg-light-mobile .navbar-nav {
        text-align: left;
    }

    .btn-close-menu {
        background: none;
        border: none;
        padding: 0;
        color: rgba(10, 110, 150, 1.0);
        cursor: pointer;
        display: inline-flex;
        align-items: center;
        transition: transform 0.2s ease;
        position: absolute;
        bottom: 10px;     
        right: 10px; 
        z-index: 10;
    }

    .btn-close-menu:active {
        transform: scale(0.9);
    }

    .btn-close-menu svg {
        width: 22px;
        height: 22px;
        stroke: rgba(20, 160, 220, 1.0) !important;
        stroke-width: 4px;
    }

    .navbar-toggler {
        border-color: rgba(10, 110, 150, 1.0) !important;
        border-width: 2px !important;
    }
}

/* Desktop-Modus (992px und größer) */
@media (min-width: 992px) {
    .navbar .container {
        align-items: center;
    }

    .navbar-brand {
        padding-top: 0.75rem;
        padding-bottom: 0.75rem;
        margin-right: 2rem;
    }

    .navbar-nav {
        flex-direction: row;
        padding-bottom: 0 !important;
    }

    .navbar-nav .nav-link {
        font-size: 1.1rem;
        padding-top: 0 !important;
        padding-bottom: 0 !important;
        line-height: 1.1;
    }

    .navbar-logo {
        max-height: 30px;
    }

    .navbar-subline {
        font-size: 0.75rem;
    }
}

/*--------------------------------------------------------------
# FOOTER
--------------------------------------------------------------*/
.footer-bg {
    background: linear-gradient(135deg, rgba(249, 249, 254, 1.0) 0%, rgba(245, 245, 249, 1.0) 100%);
}

.footer-links .list-inline-item a {
    font-weight: 500;
    transition: color 0.10s ease-in-out;
    color: rgba(10, 110, 150, 1.0) !important;
}

.footer-links .list-inline-item a:hover,
.footer-links .list-inline-item a:focus {
    color: rgba(110, 110, 130, 1.0) !important;
}

/*--------------------------------------------------------------
# COOKIES
--------------------------------------------------------------*/
.btn-cookie-accept {
    background-color: rgba(20, 160, 220, 1.0);
    border-color: rgba(20, 160, 220, 1.0);
    color: #fff;
    transition: background-color 0.2s ease, border-color 0.2s ease;
}

.btn-cookie-accept:hover,
.btn-cookie-accept:focus,
.btn-cookie-accept:active {
    background-color: rgba(10, 110, 150, 1.0) !important;
    border-color: rgba(10, 110, 150, 1.0) !important;
    color: #fff !important;
    box-shadow: 0 0 0 0.25rem rgba(20, 160, 220, 0.25);
}

.cookie-border-top {
    border-top: 1px solid rgba(150, 150, 160, 0.6);
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.1);
}

.cookie-link {
    color: rgba(10, 110, 150, 1.0);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
    display: inline-block;
}

.cookie-link:hover,
.cookie-link:focus {
    color: rgba(20, 160, 220, 1.0);
    text-decoration: none;
    outline: none;
}

@media (max-width: 991.98px) {
    .cookie-btn-container {
        display: flex;
        flex-direction: column-reverse; 
        gap: 10px;
    }
    .cookie-btn-container .btn {
        width: 100%;
        padding: 12px; 
        font-size: 1rem;
    }
}

/*--------------------------------------------------------------
# TYPOGRAFIE
--------------------------------------------------------------*/
.fett {
    font-weight: 600 !important;
}

.halbfett {
    font-weight: 400 !important;
}

.leicht {
    font-weight: 300 !important;
}

.groesser {
    font-size: 1.1rem !important;
}

.kleiner {
    font-size: 0.9rem !important;
    line-height: 1.3;
     !important;
}

.klein {
    font-size: 0.8rem !important;
    line-height: 1.3;
}

.micro {
    font-size: 0.7rem !important;
    font-weight: 500 !important;
}

.hero-head,
.features-head,
.demos-head,
.contact-head {
    color: rgba(110, 110, 130, 1.0);
    font-size: 1.7rem;
    font-weight: 500;
    line-height: 1.3;
    margin-bottom: 1rem;
}

@media (min-width: 768px) {

    .hero-head,
    .features-head,
    .demos-head,
    .contact-head {
        font-size: 2.4rem;
        line-height: 1.35;
    }
}

.hero-lead {
    font-size: 1.0rem;
    line-height: 1.5;
}

@media (min-width: 768px) {
    .hero-lead {
        font-size: 1.2rem;
        padding-left: 2.75rem;
    }
}

/* roboto-100 - latin */
@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 100;
    src: url('../../includes/roboto/roboto-v30-latin-100.woff2') format('woff2');
}

/* roboto-100italic - latin */
@font-face {
    font-family: 'Roboto';
    font-style: italic;
    font-weight: 100;
    src: url('../../includes/roboto/roboto-v30-latin-100italic.woff2') format('woff2');
}

/* roboto-300 - latin */
@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 300;
    src: url('../../includes/roboto/roboto-v30-latin-300.woff2') format('woff2');
}

/* roboto-300italic - latin */
@font-face {
    font-family: 'Roboto';
    font-style: italic;
    font-weight: 300;
    src: url('../../includes/roboto/roboto-v30-latin-300italic.woff2') format('woff2');
}

/* roboto-regular - latin */
@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 400;
    src: url('../../includes/roboto/roboto-v30-latin-regular.woff2') format('woff2');
}

/* roboto-italic - latin */
@font-face {
    font-family: 'Roboto';
    font-style: italic;
    font-weight: 400;
    src: url('../../includes/roboto/roboto-v30-latin-italic.woff2') format('woff2');
}

/* roboto-500 - latin */
@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 500;
    src: url('../../includes/roboto/roboto-v30-latin-500.woff2') format('woff2');
}

/* roboto-500italic - latin */
@font-face {
    font-family: 'Roboto';
    font-style: italic;
    font-weight: 500;
    src: url('../../includes/roboto/roboto-v30-latin-500italic.woff2') format('woff2');
}

/* roboto-700 - latin */
@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 700;
    src: url('../../includes/roboto/roboto-v30-latin-700.woff2') format('woff2');
}

/* roboto-700italic - latin */
@font-face {
    font-family: 'Roboto';
    font-style: italic;
    font-weight: 700;
    src: url('../../includes/roboto/roboto-v30-latin-700italic.woff2') format('woff2');
}

/* roboto-900 - latin */
@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 900;
    src: url('../../includes/roboto/roboto-v30-latin-900.woff2') format('woff2');
}

/* roboto-900italic - latin */
@font-face {
    font-family: 'Roboto';
    font-style: italic;
    font-weight: 900;
    src: url('../../includes/roboto/roboto-v30-latin-900italic.woff2') format('woff2');
}
