/* style_bundle_prices.css */

html {
    box-sizing: border-box;
}

*, *::before, *::after {
    box-sizing: inherit;
}

/* Schriftarten */
@font-face {
    font-family: 'Roboto';
    src: url('fonts/Roboto-VariableFont_wdth,wght.ttf') format('truetype');
    font-weight: 100 900;
    font-style: normal;
}

@font-face {
    font-family: 'Roboto';
    src: url('fonts/Roboto-Italic-VariableFont_wdth,wght.ttf') format('truetype');
    font-weight: 100 900;
    font-style: italic;
}

/* Grundlegende Styles */
body {
    color: #050608;
    background-color: #ffffff;
    font-family: "Roboto", sans-serif;
    font-size: 20px;
    font-weight: 400;
    margin: 0;
    padding: 0;
}

/* Header */
header {
    position: relative;
    text-align: center;
    padding: 2em;
    background-color: #0000ff;
    color: #efefef;
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

header .header-logo {
    position: absolute;
    top: 10px;
    left: 20px;
    max-width: 370px;
    height: auto;
    margin-bottom: 2em;
}

header .nav-items {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 1.2em;
    display: flex;
    align-items: center;
    margin-right: 50px;
    gap: 18px;
    margin-top: 0;
    margin-bottom: 2em;
}

header .fas.fa-phone {
    font-size: 20px;
    color: #fff;
}

header .header-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    max-width: 800px;
}

header h1 {
    margin: 0;
    font-size: 3.5em;
    font-weight: 700;
}

header p {
    margin: 0.5em 0 0;
    font-size: 1.2em;
}

header .split-paragraph {
    margin: 0.5em 0 0;
}

header .first-sentence {
    display: block;
}

header .second-sentence {
    display: block;
}

header .contact-button {
    display: inline-block;
    background-color: #e6f0ff;
    color: #0000ff;
    padding: 0.7em 1.5em;
    text-decoration: none;
    border: 1px solid #0000ff;
    border-radius: 5px;
    font-size: 1.2em;
    font-weight: 500;
    margin-top: 1.5em;
}

header .contact-button:hover {
    background-color: #cce0ff;
}

/* Navbar */
#navbar {
    display: none;
}

/* Packages Sektion */
.packages {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    background-color: #ffffff;
}

.section-header {
    text-align: center;
    padding-top: 50px;
    font-size: 2em;
    font-family: "Roboto", sans-serif;
    font-weight: 700;
    color: #050608;
    margin-bottom: 1em;
}

.rate-hint-container {
    max-width: 67.5em;
    margin: 0 auto;
    padding: 10px;
    display: flex;
    justify-content: space-around;
    gap: 20px;
    margin-bottom: 1em;
}

.rate-hint-column {
    width: 100%;
    max-width: 500px;
    text-align: left;
    font-family: "Roboto", sans-serif;
    color: #050608;
}

.rate-hint-column h3 {
    margin: 0 0 0.5em 55px;
    color: #0000ff;
    font-size: 1.5em;
}

.rate-hint-column p {
    font-size: 1em;
    line-height: 1.4;
    margin-left: 30px;
    padding: 20px;
    text-align: left;
}

.rate-hint-extra {
    text-align: center;
    font-size: 1em;
    color: #fff;
    margin: 0.5em 0 1.5em;
    font-family: "Roboto", sans-serif;
    line-height: 1.4;
}

.packages .card-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 10px;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: nowrap;
}

.package-card {
    background-color: #eef0f3;
    border: 2px solid #e9edf3;
    border-radius: 5px;
    padding: 1.5em;
    width: 25%;
    max-width: none;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.package-card h3 {
    margin: 0 0 0.5em;
    color: #0000ff;
    font-size: 1.5em;
}

.package-card .price {
    font-size: 1.8em;
    font-weight: 700;
    color: #050608;
    margin: 0.5em 0;
}

.package-card ul {
    padding: 0;
    list-style: none;
    margin: 0.5em 0 1em;
}

.package-card ul li {
    margin: 0.3em 0;
    font-size: 1em;
}

.cta-container {
    text-align: center;
    margin: 15px 0 30px;
}

.cta-button {
    display: inline-block;
    background-color: #0000ff;
    color: #ffffff;
    padding: 1em 2em;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1.3em;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #0000cc;
}

/* Location Sektion */
.location {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.location h2 {
    text-align: center;
    margin-bottom: 20px;
    font-size: 2em;
    color: #fff;
}

.location .card-container {
    display: flex;
    justify-content: space-around;
    gap: 20px;
}

.location .card {
    background-color: transparent;
    border: none;
    padding: 0;
    width: 100%;
}

.location .map-wrapper {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
}

.location .map-wrapper iframe {
    position: absolute;
    top: -60px;
    left: 0;
    width: 100%;
    height: 540px;
    border: none;
    display: block;
}

.location .card-einsatzgebiet {
    margin-top: -5em;
    padding: 5em;
    width: 100%;
    text-align: left;
}

.rate-hint-extra-index {
    text-align: left;
    font-size: 1em;
    color: #050608;
    margin: 0.5em 0;
    font-family: "Roboto", sans-serif;
    line-height: 1.4;
}

/* Footer */
.footer {
    text-align: center;
    padding: 1em;
    background-color: #0000ff;
    color: #efefef;
    width: 100%;
}

.footer h2 {
    color: #fff;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 10px;
}

.footer-link {
    color: #e6f0ff;
    text-decoration: none;
    font-size: 0.8em;
    font-weight: 400;
}

.footer-link:hover {
    color: #cce0ff;
    text-decoration: underline;
}

.footer-copyright {
    font-size: 0.8em;
}

/* Responsive Design für max-width: 1024px */
@media (max-width: 1024px) {
    header {
        padding: 1.5em;
        min-height: 100vh;
    }
    header .header-logo {
        max-width: 320px;
        top: 80px;
        left: 50%;
        transform: translateX(-50%);
        margin-bottom: 9em;
    }
    header .nav-items {
        top: 20px;
        right: 20px;
        font-size: 1.1em;
        margin-right: 30px;
        margin-bottom: 2.5em;
    }
    header h1 {
        font-size: 3em;
    }
    header p {
        font-size: 1.1em;
    }
    header .split-paragraph {
        font-size: 1.1em;
    }
    header .first-sentence {
        white-space: normal;
        overflow-wrap: break-word;
    }
    header .second-sentence {
        white-space: normal;
    }
    header .contact-button {
        margin-top: 2em;
        font-size: 1.1em;
    }
    .rate-hint-container {
        gap: 15px;
    }
    .rate-hint-column {
        width: 48%;
        max-width: 500px;
    }
    .rate-hint-column h3 {
        margin-left: 25px;
    }
    .rate-hint-column p {
        margin-left: 15px;
        padding: 0 15px 15px;
    }
    .section-header {
        font-size: 1.8em;
        padding-top: 40px;
    }
    .cta-container {
        margin: 20px 0 40px;
    }
    .cta-button {
        font-size: 1.2em;
    }
    .packages .card-container {
        flex-wrap: nowrap;
        gap: 15px;
    }
    .package-card {
        width: 25%;
        padding: 1.2em;
    }
    .package-card h3 {
        font-size: 1.4em;
    }
    .package-card .price {
        font-size: 1.6em;
    }
    .location .card-container {
        flex-direction: row;
        justify-content: space-around;
        gap: 20px;
    }
    .location .card,
    .location .card-einsatzgebiet {
        max-width: none;
        width: 100%;
    }
    .location .map-wrapper {
        height: 450px;
    }
    .location .map-wrapper iframe {
        height: 490px;
    }
}

/* Responsive Design für max-width: 768px */
@media (max-width: 768px) {
    body {
        font-size: 18px;
    }
    header {
        padding: 1.5em;
        min-height: 100vh;
    }
    header .header-logo {
        max-width: 280px;
        top: 80px;
        left: 50%;
        transform: translateX(-50%);
        margin-bottom: 4em;
    }
    header .nav-items {
        top: 20px;
        right: 20px;
        font-size: 1em;
        margin-right: 20px;
        margin-bottom: 2em;
    }
    header .header-content {
        margin-top: 14em;
    }
    header h1 {
        font-size: 2.5em;
    }
    header p {
        font-size: 1em;
    }
    header .split-paragraph {
        font-size: 1em;
    }
    header .first-sentence {
        white-space: normal;
        overflow-wrap: break-word;
        margin-left: 15px;
        margin-right: 15px;
    }
    header .second-sentence {
        white-space: normal;
        margin-left: 15px;
        margin-right: 15px;
    }
    header .contact-button {
        font-size: 1em;
        padding: 0.6em 1.2em;
        margin-top: 2em;
    }
    .section-header {
        font-size: 1.8em;
        padding-top: 30px;
    }
    .packages {
        padding: 0; 
    }
    .rate-hint-container {
        flex-direction: column;
        align-items: center;
        justify-content: center; 
        gap: 20px; /* ERGÄNZUNG: Vertikalen Abstand zwischen Spalten erhöht (von 10px auf 20px) */
        padding: 20px 0; /* ERGÄNZUNG: Vertikales Padding hinzugefügt für mehr Luftigkeit */
        max-width: 340px; 
        margin: 0 auto;
    }
    .rate-hint-column {
        max-width: 320px; 
        margin: 0 auto 15px auto;
    }
    .rate-hint-column h3 {
        margin: 1em 0 0.5em 0; /* ERGÄNZUNG: Mehr Abstand nach oben für h3 "Büroservice" (1em top margin) */
        font-size: 1.4em;
        text-align: left; 
    }
    .rate-hint-column p {
        margin: 0; 
        padding: 0 5px 15px;
        font-size: 0.9em;
        text-align: left; 
    }
    .packages .card-container {
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }
    .package-card {
        width: 100%;
        max-width: 90%;
        margin-bottom: 10px;
        padding: 1em;
    }
    .package-card h3 {
        font-size: 1.4em;
    }
    .package-card .price {
        font-size: 1.6em;
    }
    .cta-button {
        font-size: 1.1em;
        padding: 0.8em 1.5em;
    }
    .location .card-container {
        flex-direction: column;
        align-items: center;
    }
    .location .card {
        max-width: 90%;
    }
    .location .card-einsatzgebiet {
        padding: 1em;
        margin-top: -1em;
        max-width: 90%;
    }
    .location .map-wrapper {
        height: 400px;
    }
    .location .map-wrapper iframe {
        height: 440px;
    }
}

/* Responsive Design für max-width: 480px */
@media (max-width: 480px) {
    body {
        font-size: 16px;
    }
    header {
        padding: 0.8em;
        min-height: 100vh;
    }
    header .header-logo {
        max-width: 240px;
        top: 90px;
        left: 50%;
        transform: translateX(-50%);
        margin-bottom: 9em;
    }
    header .nav-items {
        top: 15px;
        right: 15px;
        margin-right: 0;
        font-size: 0.9em;
        gap: 10px;
        margin-bottom: 2em;
    }
    header .header-content {
        margin-top: 16em;
    }
    header h1 {
        font-size: 2em;
        white-space: normal;
    }
    header p {
        font-size: 0.9em;
    }
    header .split-paragraph {
        font-size: 0.9em;
    }
    header .first-sentence {
        margin-left: 10px;
        margin-right: 10px;
    }
    header .second-sentence {
        margin-left: 10px;
        margin-right: 10px;
    }
    header .contact-button {
        font-size: 0.9em;
        padding: 0.6em 1.2em;
        margin-top: 2em;
        margin-bottom: 0.5em;
    }
    .section-header {
        font-size: 1.5em;
        padding-top: 30px;
    }
    .packages {
        padding: 0; 
    }
    .rate-hint-container {
        flex-direction: column;
        align-items: center;
        justify-content: center; 
        gap: 20px; /* ERGÄNZUNG: Vertikalen Abstand zwischen Spalten erhöht (von 10px auf 20px) */
        padding: 20px 0; /* ERGÄNZUNG: Vertikales Padding hinzugefügt für mehr Luftigkeit */
        max-width: 260px; 
        margin: 0 auto;
    }
    .rate-hint-column {
        max-width: 240px; 
        margin: 0 auto 15px auto;
    }
    .rate-hint-column h3 {
        margin: 1em 0 0.5em 0; /* ERGÄNZUNG: Mehr Abstand nach oben für h3 "Büroservice" (1em top margin) */
        font-size: 1.2em;
        text-align: left; 
    }
    .rate-hint-column p {
        margin: 0; 
        padding: 0 5px 10px; 
        font-size: 0.85em;
        text-align: left;
    }
    .rate-hint-extra {
        font-size: 0.85em;
    }
    .packages .card-container {
        flex-wrap: wrap;
        justify-content: center;
    }
    .package-card {
        width: 100%;
        max-width: 100%;
        padding: 1em;
        margin-left: auto;
        margin-right: auto;
    }
    .package-card h3 {
        font-size: 1.3em;
    }
    .package-card .price {
        font-size: 1.5em;
    }
    .cta-button {
        font-size: 1em;
        padding: 0.7em 1.2em;
    }
    .location .card-container {
        flex-direction: column;
        align-items: center;
    }
    .location .card {
        max-width: 100%;
    }
    .location .card-einsatzgebiet {
        padding: 1em;
        max-width: 100%;
    }
    .location .map-wrapper {
        height: 350px;
    }
    .location .map-wrapper iframe {
        height: 390px;
    }
    .footer-links {
        flex-direction: column;
        gap: 8px;
    }
    .footer-link {
        font-size: 0.75em;
    }
    .footer-copyright {
        font-size: 0.7em;
    }
}