body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    color: #333333;
}

@font-face {
    font-family: 'Roboto';
    src: url('/fonts/Roboto-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Roboto';
    src: url('/fonts/Roboto-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}

/* HTML und Body auf volle Höhe setzen */
html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
}

/* Wrapper auf volle Höhe setzen */
.wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.content {
    flex: 1;
}

.nav-container {
    display: flex;
    align-items: center;
    padding: 10px;
    max-width: 80rem;
    margin: 0 auto;
    position: relative;
}

nav {
    display: flex;
    gap: 15px;
    z-index: 1;
}

header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: #FF6600;
    padding: 0;
    transition: background-color 0.3s ease;
}

nav a {
    color: white;
    text-decoration: none;
    margin: 0 15px;
    padding: 10px;
    font-size: 1.1rem;
}

nav a:hover {
    background-color: #e06c00;
    border-radius: 5px;
}

.logo {
    max-width: 200px;
    position: relative;
    z-index: 2;
    margin-bottom: -30px;
    transition: max-width 0.3s ease, margin-bottom 0.3s ease;
    background-color: #FF6600;
    padding: 15px;
    border-radius: 8px;
}

.menu-icon {
    display: none;
    font-size: 2em;
    cursor: pointer;
    color: white;
}

.hero-content {
    text-align: center;
    background: rgba(0, 0, 0, 0.5);
    padding: 20px 40px;
    border-radius: 10px;
    display: inline-block;
}

@media screen and (max-width: 768px) {
    nav {
        display: none;
        flex-direction: column;
        background-color: #FF6600;
        width: 100%;
        position: absolute;
        top: 60px;
        left: 0;
        z-index: 1000;
        box-shadow: 0 4px 2px -2px gray;
    }

    nav a {
        padding: 10px;
        text-align: center;
        border-top: 1px solid rgba(255, 255, 255, 0.2);
    }

    #menu-toggle:checked + .menu-icon + nav {
        display: flex;
    }

    .menu-icon {
        display: block;
    }

    .nav-container {
        justify-content: space-between;
    }

    .logo {
        max-width: 150px;
        margin-bottom: 0;
        padding: 0px;
        border-radius: 0px;
    }

    .hero-content {
        padding: 20px 0px 20px 0px;
        border-radius: 0px;
    }
}

/* Hero-Section */

.hero {
    position: relative;
    background-image: url('/img/Schmalnau.JPG');
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
}


.hero h1, .hero p {
    margin: 0;
    padding: 10px 0;
}

.hero h1 {
    font-size: 3em;
    margin-bottom: 0.5em;
}

.hero p {
    font-size: 1.5em;
}


.hero.hero--plain {
    background: #1e2a36;
    border-bottom: 3px solid #FF6600;
    padding: 3rem 1.5rem;
}

.hero.hero--plain h1,
.hero.hero--plain .hero-subline {
    color: #ffffff;
}

.hero.hero--plain .hero-kicker {
    color: #FF6600;
}

.hero.hero--plain .hero-tag {
    border-color: #FF6600;
    color: #FF6600;
    background: rgba(255, 102, 0, 0.08);
}

@media (max-width: 600px) {
    .hero.hero--plain {
        padding: 2.2rem 1.2rem;
    }

    .hero.hero--plain h1 {
        font-size: 1.7rem;
    }

    .hero.hero--plain .hero-subline {
        max-width: 100%;
    }
}

.hero.hero--plain .hero-inner {
    border-left: 5px solid #FF6600;
    padding-left: 1.4rem;
}

.hero-separator {
    line-height: 0;
}

.hero-separator svg {
    display: block;
    width: 100%;
    height: 24px;
}

.hero-separator path {
    fill: #FF6600;
}

.hero.hero--plain.hero--dark {
    border-bottom: none;
}

.cta-button {
    background-color: #FF6600;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1.2em;
    display: inline-block;
    margin-top: 15px;
}

.cta-button:hover {
    background-color: #e68a00;
}

.services {
    display: flex;
    justify-content: space-around;
    padding: 20px;
    background-color: #f7f7f7;
}

.service-item {
    text-align: center;
    flex-basis: 23%;
    border-radius: 10px;
    padding: 20px;
}

.service-item:hover {
    background-color: #FF6600;
    color: white;
    cursor: pointer;
}

.service-item img {
    width: 50px;
    height: auto;
}

.content {
    padding: 20px;
    text-align: center;
}

.timeline {
    width: 80%;
    margin: 0 auto;
    padding: 20px;
    text-align: center;
}

.timeline h2 {
    margin-bottom: 20px;
}

.timeline-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.timeline-item div {
    flex-basis: 45%;
}

.timeline-item img {
    width: 50px;
    height: auto;
    margin-right: 10px;
}

.offers {
    background-color: #FF6600;
    color: white;
    padding: 20px;
    text-align: center;
}

.offers img {
    width: 100px;
    height: auto;
}

.map {
    padding: 20px;
    text-align: center;
}

.map iframe {
    width: 100%;
    height: 400px;
    border: 0;
}

.footer-separator {
    display: block;
    line-height: 0;
    padding: 0;
    margin-bottom: -1px;
}


.footer-separator svg {
    display: block;
    width: 100%;
    height: 26px;
    margin: 0;
    padding: 0;
}

.footer-separator path {
    fill: #FF6600;
}

footer {
    background: #FF6600;
    color: #ffffff;
    padding: 2.8rem 1.5rem 2.2rem;
    font-size: 0.9rem;
    margin-top: 0;
}

/* Container */
.footer-container {
    max-width: 80rem;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem 3rem;
    justify-content: space-between;
    align-items: flex-start;
}

.footer-col {
    min-width: 180px;
}

/* Überschriften im Footer */
.footer-contact h4,
.footer-links h4,
.footer-legal h4 {
    margin: 0 0 0.6rem;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #ffffff;
    opacity: 0.9;
}

/* Text */
.footer-contact p {
    margin: 0 0 0.5rem;
    line-height: 1.5;
    color: #ffffff;
}

/* Icons */
.footer-icon {
    display: inline-block;
    width: 1.2rem;
    opacity: 0.9;
}

/* Links */
.footer-links a,
.footer-legal a,
.footer-contact a {
    display: block;
    margin-bottom: 0.25rem;
    color: #ffffff;
    text-decoration: none;
    opacity: 0.95;
    transition: opacity 0.2s ease, text-decoration 0.2s ease;
}

.footer-links a:hover,
.footer-legal a:hover,
.footer-contact a:hover {
    opacity: 1;
    text-decoration: underline;
}

/* Footer-Bottom */
.footer-bottom {
    max-width: 80rem;
    margin: 1.6rem auto 0;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.35);
    text-align: center;
    font-size: 0.85rem;
    color: #ffffff;
    opacity: 0.95;
}

.footer-bottom a {
    color: #ffffff;
    text-decoration: underline;
    font-weight: 500;
}

.footer-bottom a:hover {
    opacity: 0.9;
}

.footer-heart {
    color: #ffffff;
    margin: 0 0.15rem;
    font-size: 0.95em;
    vertical-align: middle;
    animation: pulse 1.6s ease-in-out infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.15);
    }
    100% {
        transform: scale(1);
    }
}

/* Mobile */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        gap: 1.5rem;
    }

    .footer-col {
        text-align: left;
    }
}

/* Mobile view adjustments for other elements */
@media screen and (max-width: 768px) {
    .services {
        flex-direction: column;
        align-items: center;
    }

    .timeline-item {
        flex-direction: column;
        align-items: center;
    }

    .timeline-item div {
        text-align: center;
        margin-bottom: 10px;
    }

    .footer-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-links {
        margin: 10px 0;
    }

    .w-80 {
        width: 100%;
    }
}

.w-80 {
    width: 80%;
    margin: 0 auto;
}

/* Checkbox für Hamburger-Menü verstecken */
#menu-toggle {
    display: none;
}

/* Entfernen der Unterstreichung der Menüpunkte */
a {
    text-decoration: none;
    color: inherit;
}

/* Cookie-Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 20px;
    text-align: center;
    z-index: 1000;
}

.cookie-banner p {
    margin: 0 0 10px;
}

.cookie-banner input {
    margin-right: 10px;
}

.cookie-banner button {
    background-color: #FF6600;
    color: white;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    margin-top: 10px;
    font-size: 1rem;
}

.cookie-banner button:hover {
    background-color: #e06c00;
}

/* Platzhalter für Google Maps */
.map-placeholder {
    background-color: #f0f0f0;
    color: #333;
    text-align: center;
    border: 2px dashed #ccc;
    margin-top: 20px;
}

.header-image {
    background-size: cover;
    background-position: center;
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.header-image h1 {
    font-size: 3em;
    margin: 0;
    width: 100%;
}

.content {
    padding: 20px;
}

.location-details-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.location-left {
    max-width: 400px;
}

.location-left h2, .location-right h2, .location-map h2 {
    margin-top: 0;
}

.location-left, .location-right, .location-map {
    flex: 2;
    min-width: 300px;
}

.location-left ul, .location-right ul {
    list-style-type: none;
    padding: 0;
}

.location-left ul li, .location-right ul li {
    margin-bottom: 10px;
}

.location-left p, .location-right p {
    margin-bottom: 15px;
}

.location-map {
    margin-bottom: 40px;
}

@media (max-width: 768px) {
    .location-details-container {
        flex-direction: column;
    }
}

.breadcrumb {
    margin: 20px auto;
    font-size: 1em;
    color: #666;
}

.breadcrumb a {
    color: inherit;
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.breadcrumb span {
    color: #FF6600;
}

.text-align-left {
    text-align: left;
}

.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #FF6600;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    display: none;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    transition: opacity 0.3s ease-in-out;
}

.scroll-to-top svg {
    width: 80%;
    height: 80%;
}

.scroll-to-top:hover {
    background-color: #E65500;
}

.wunschpreis-form {
    max-width: 600px;
    margin: 0 auto;
}

.wunschpreis-form label {
    display: block;
    margin-top: 10px;
    font-weight: bold;
}

.wunschpreis-form input, .wunschpreis-form textarea {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    border-radius: 5px;
    border: 1px solid #ccc;
}

.wunschpreis-form button {
    background-color: #FF6600;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 20px;
}

.wunschpreis-form button:hover {
    background-color: #E65500;
}

.alert {
    padding: 20px;
    margin-top: 20px;
    border-radius: 5px;
    font-size: 16px;
}

.alert.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}


.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.2rem;
    margin-bottom: 1.2rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.55rem 1.4rem;
    border-radius: 999px;
    font-size: 0.95rem;
    text-decoration: none;
    cursor: pointer;
    border: 1px solid transparent;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.btn--primary {
    background: #FF6600;
    color: #ffffff;
    border-color: #FF6600;
}

.btn--primary:hover {
    background: #e45a00;
    border-color: #e45a00;
}

.btn--ghost {
    background: transparent;
    color: #FF6600;
    border-color: #FF6600;
}

.btn--ghost:hover {
    background: rgba(255, 102, 0, 0.08);
}
