@import url('https://fonts.googleapis.com/css2?family=Marcellus&family=Nunito+Sans:ital,wght@0,300;0,400;0,600;0,700;1,400&display=swap');

*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 100%;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: 'Nunito Sans', Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    background: #fff;
}

a {
    color: #555;
    text-decoration: none;
    transition: color 0.3s;
}

a:hover {
    color: #d4838a;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Marcellus', Georgia, serif;
    font-weight: 400;
    line-height: 1.2;
    color: #222;
}

h1 { font-size: 2.2rem; }
h2 { font-size: 1.8rem; }
h3 { font-size: 1.4rem; }
h4 { font-size: 1.2rem; }

ul { list-style: none; }

.container {
    max-width: 1170px;
    margin: 0 auto;
    padding: 0 15px;
}

.site-header {
    background: #fff;
    border-bottom: 1px solid #eee;
}

.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    flex-wrap: wrap;
    gap: 10px;
}

.contact-info {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

.contact-block {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    color: #555;
}

.contact-block .icon {
    font-size: 1rem;
}

.contact-block a {
    color: #555;
}

.contact-block a:hover {
    color: #d4838a;
}

.site-branding {
    text-align: center;
    padding: 20px 0 10px;
}

.site-title {
    font-family: 'Marcellus', Georgia, serif;
    font-size: 2rem;
    color: #222;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.site-description {
    font-size: 0.85rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-top: 3px;
}

.main-navigation {
    background: #f5c5c8;
    border-top: 1px solid #eab5b8;
    border-bottom: 1px solid #eab5b8;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 12px 18px;
    background: none;
    border: none;
    gap: 5px;
}

.nav-toggle span {
    display: block;
    width: 26px;
    height: 3px;
    background: #fff;
    border-radius: 2px;
    transition: 0.3s;
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
}

.main-navigation .container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.nav-menu {
    display: flex;
    gap: 0;
    list-style: none;
}

.nav-menu li {
    position: relative;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}

@keyframes slideDown {
    from { opacity: 0; transform: translateY(-10px); }
    to   { opacity: 1; transform: translateY(0); }
}

body {
    animation: fadeIn 0.4s ease;
}

.nav-menu a {
    display: block;
    padding: 12px 22px;
    color: #fff;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: background 0.3s, transform 0.2s, letter-spacing 0.3s;
}

.nav-menu a:hover,
.nav-menu .current-menu-item a {
    background: rgba(0,0,0,0.08);
    color: #fff;
    letter-spacing: 2px;
}

.banner {
    position: relative;
    width: 100%;
    max-width: 1920px;
    margin: 0 auto;
    padding: 60px 40px;
    background: #fafafa;
}

.banner img {
    width: 100%;
    display: block;
    transition: transform 0.6s ease, filter 0.6s ease;
    border-radius: 8px;
}

.banner:hover img {
    transform: scale(1.02);
    filter: brightness(1.05);
}

.page-header {
    position: relative;
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.page-header h1 {
    position: relative;
    z-index: 1;
    color: #fff;
    font-size: 2.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    animation: fadeInUp 0.6s ease 0.2s both;
}

.service-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 4px;
    overflow: hidden;
    transition: box-shadow 0.3s, transform 0.3s;
}

.service-card:hover {
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
    transform: translateY(-4px);
}

.service-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover img {
    transform: scale(1.06);
}

.btn-readmore {
    display: inline-block;
    padding: 8px 20px;
    background: #f5c5c8;
    color: #fff;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 3px;
    transition: background 0.3s, transform 0.2s, box-shadow 0.3s;
}

.btn-readmore:hover {
    background: #eab0b4;
    color: #fff;
    transform: translateX(4px);
    box-shadow: 0 2px 12px rgba(245,197,200,0.5);
}

.service-card-content {
    padding: 20px;
    animation: fadeInUp 0.5s ease both;
}

.service-card:nth-child(1) .service-card-content { animation-delay: 0.1s; }
.service-card:nth-child(2) .service-card-content { animation-delay: 0.2s; }
.service-card:nth-child(3) .service-card-content { animation-delay: 0.3s; }

.section-title h2 {
    font-family: 'Marcellus', Georgia, serif;
    font-size: 2rem;
    color: #222;
    margin-bottom: 10px;
    animation: fadeInUp 0.5s ease 0.1s both;
}

.page-content h2,
.page-content h3,
.page-content p,
.page-content ul,
.page-content li {
    animation: fadeInUp 0.4s ease both;
}

.page-content h2 { animation-delay: 0.05s; }
.page-content h3 { animation-delay: 0.10s; }
.page-content p  { animation-delay: 0.15s; }
.page-content ul { animation-delay: 0.20s; }

.footer-widgets {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    padding-bottom: 30px;
    animation: fadeInUp 0.5s ease 0.3s both;
}

.nav-menu a:hover,
.nav-menu .current-menu-item a {
    background: rgba(0,0,0,0.08);
    color: #fff;
}

.banner {
    position: relative;
    width: 100%;
    max-width: 1920px;
    margin: 0 auto;
    overflow: hidden;
}

.banner img {
    width: 100%;
    display: block;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner-content {
    text-align: center;
    color: #fff;
}

.banner-content h1 {
    font-family: 'Marcellus', Georgia, serif;
    font-size: 3rem;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.page-header-anfahrt {
    background:
        linear-gradient(rgba(0,0,0,0.35), rgba(0,0,0,0.35)),
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='800' height='300'%3E%3Crect width='800' height='300' fill='%23f5c5c8'/%3E%3Cpath d='M0 100 Q200 80 400 110 T800 100' stroke='rgba(255,255,255,0.35)' stroke-width='4' fill='none' stroke-linecap='round'/%3E%3Cpath d='M0 140 Q300 160 500 130 T800 140' stroke='rgba(255,255,255,0.25)' stroke-width='3' fill='none' stroke-linecap='round'/%3E%3Cpath d='M0 180 Q250 200 450 170 T800 180' stroke='rgba(255,255,255,0.2)' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3Cpath d='M300 0 Q280 150 320 300' stroke='rgba(255,255,255,0.3)' stroke-width='3' fill='none' stroke-linecap='round'/%3E%3Cpath d='M550 0 Q530 150 570 300' stroke='rgba(255,255,255,0.2)' stroke-width='2.5' fill='none' stroke-linecap='round'/%3E%3Ccircle cx='420' cy='130' r='22' stroke='rgba(255,255,255,0.5)' stroke-width='3' fill='rgba(255,255,255,0.1)'/%3E%3Ccircle cx='420' cy='130' r='5' fill='%23fff'/%3E%3C/svg%3E");
    background-size: cover;
    background-position: center;
    position: relative;
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.page-header-anfahrt h1::before {
    content: "📍";
    display: block;
    font-size: 3rem;
    margin-bottom: 10px;
}

.page-header {
    position: relative;
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.page-header-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-header-anfahrt .page-header-overlay {
    background: rgba(0,0,0,0.05);
}

.page-header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.35);
}

.page-header h1 {
    position: relative;
    z-index: 1;
    color: #fff;
    font-size: 2.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.breadcrumb {
    background: #f9f9f9;
    padding: 10px 0;
    font-size: 0.85rem;
    color: #888;
    border-bottom: 1px solid #eee;
}

.breadcrumb a {
    color: #888;
}

.breadcrumb a:hover {
    color: #d4838a;
}

.breadcrumb .sep {
    margin: 0 8px;
}

.content-area {
    padding: 50px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 30px;
}

.section-title h2 {
    font-family: 'Marcellus', Georgia, serif;
    font-size: 2rem;
    color: #222;
    margin-bottom: 10px;
}

.section-title p {
    color: #888;
    font-size: 0.95rem;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

.welcome-text {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
    color: #555;
    line-height: 1.8;
    animation: fadeInUp 0.5s ease 0.15s both;
}

.welcome-text h3 {
    font-family: 'Marcellus', Georgia, serif;
    font-size: 1.6rem;
    margin-bottom: 15px;
    color: #222;
    animation: fadeInUp 0.5s ease 0.2s both;
}

.welcome-text p {
    animation: fadeInUp 0.5s ease 0.25s both;
}

.service-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.service-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 4px;
    overflow: hidden;
    transition: box-shadow 0.3s, transform 0.3s;
    flex: 0 1 350px;
    max-width: 350px;
}

@media (max-width: 768px) {
    .service-grid {
        grid-template-columns: 1fr;
    }
}

.service-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 4px;
    overflow: hidden;
    transition: box-shadow 0.3s;
}

.service-card:hover {
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.service-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.service-card-content {
    padding: 20px;
}

.service-card-content h3 {
    font-family: 'Marcellus', Georgia, serif;
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #222;
}

.service-card-content h3 a {
    color: #222;
}

.service-card-content h3 a:hover {
    color: #d4838a;
}

.service-card-content p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 15px;
}

.btn-readmore {
    display: inline-block;
    padding: 8px 20px;
    background: #f5c5c8;
    color: #fff;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 3px;
    transition: background 0.3s;
}

.btn-readmore:hover {
    background: #eab0b4;
    color: #fff;
}

.btn {
    display: inline-block;
    padding: 10px 25px;
    background: #f5c5c8;
    color: #fff;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    transition: background 0.3s;
}

.btn:hover {
    background: #eab0b4;
    color: #fff;
}

.page-content {
    max-width: 1100px;
    margin: 0 auto;
}

.page-content h2 {
    font-family: 'Marcellus', Georgia, serif;
    font-size: 1.4rem;
    color: #333;
    margin: 30px 0 12px;
    border-bottom: 2px solid #f5c5c8;
    padding-bottom: 8px;
}

.page-content h3 {
    font-family: 'Marcellus', Georgia, serif;
    font-size: 1.2rem;
    color: #444;
    margin: 25px 0 10px;
}

.page-content p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 15px;
}

.page-content ul {
    list-style: disc;
    margin: 10px 0 20px 25px;
}

.page-content ul li {
    color: #555;
    line-height: 1.8;
    margin-bottom: 5px;
}

.page-content strong {
    color: #333;
}

.service-item {
    margin-bottom: 35px;
    padding-bottom: 25px;
    border-bottom: 1px solid #eee;
}

.service-item:last-child {
    border-bottom: none;
}

.service-item h3 {
    font-family: 'Marcellus', Georgia, serif;
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 8px;
}

.service-item p {
    color: #555;
    line-height: 1.8;
}

.anfahrt-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 60px;
}

.anfahrt-card {
    background: #fff;
    border: 1px solid #f0f0f0;
    border-radius: 12px;
    padding: 28px 20px;
    text-align: center;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    transition: transform 0.3s, box-shadow 0.3s;
}

.anfahrt-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 24px rgba(0,0,0,0.1);
}

.anfahrt-card-icon {
    font-size: 2.4rem;
    margin-bottom: 12px;
}

.anfahrt-card h3 {
    font-family: 'Marcellus', Georgia, serif;
    font-size: 1.2rem;
    color: #333;
    margin: 0 0 10px 0;
}

.anfahrt-card p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0;
}

.anfahrt-card a {
    color: #d4838a;
}

.anfahrt-card a:hover {
    text-decoration: underline;
}

.anfahrt-section-title {
    text-align: center;
    font-size: 1.5rem;
    margin: 0 0 24px 0 !important;
    border: none !important;
}

.anfahrt-route-box {
    background: #fafafa;
    border: 1px solid #f0f0f0;
    border-radius: 12px;
    padding: 24px 32px;
    margin-bottom: 32px;
}

.directions-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.directions-list li {
    padding: 10px 0;
    display: flex;
    align-items: center;
    gap: 12px;
    color: #555;
    line-height: 1.6;
    border-bottom: 1px solid #f0f0f0;
    font-size: 1rem;
}

.directions-list li:last-child {
    border-bottom: none;
}

.dir-icon {
    font-size: 1.2rem;
    flex-shrink: 0;
    width: 28px;
    text-align: center;
}

.map-container {
    margin: 0;
    border: 1px solid #f0f0f0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.map-container iframe {
    width: 100%;
    height: 450px;
    border: none;
    display: block;
}

@media (max-width: 768px) {
    .anfahrt-info-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .anfahrt-route-box {
        padding: 16px 20px;
    }
    .map-container iframe {
        height: 300px;
    }
}

.contact-details-box {
    background: #f9f9f9;
    padding: 25px;
    border-radius: 4px;
    margin: 20px 0;
    border-left: 4px solid #f5c5c8;
}

.contact-details-box p {
    margin-bottom: 5px;
}

.site-footer {
    background: #efa7ac;
    color: #fff;
    padding: 40px 0 0;
}

.footer-widgets {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    padding-bottom: 30px;
}

.footer-widget h3 {
    font-family: 'Marcellus', Georgia, serif;
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 15px;
}

.footer-widget p {
    font-size: 0.9rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.9);
}

.footer-widget a {
    color: rgba(255,255,255,0.9);
}

.footer-widget a:hover {
    color: #fff;
    text-decoration: underline;
}

.footer-widget ul li {
    margin-bottom: 6px;
}

.footer-widget ul li a {
    font-size: 0.9rem;
}

.footer-bottom {
    background: rgba(0,0,0,0.08);
    padding: 15px 0;
    text-align: center;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.85);
}

.footer-bottom a {
    color: rgba(255,255,255,0.85);
}

.footer-bottom a:hover {
    color: #fff;
    text-decoration: underline;
}

.skip-link {
    position: absolute;
    left: -9999px;
    top: -9999px;
}

.skip-link:focus {
    left: 10px;
    top: 10px;
    background: #fff;
    padding: 10px;
    z-index: 999;
}

.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 9999;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(37,211,102,0.4);
    transition: transform 0.3s, box-shadow 0.3s;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 24px rgba(37,211,102,0.55);
}

.whatsapp-float svg {
    width: 32px;
    height: 32px;
    fill: #fff;
}

@media (max-width: 768px) {
    .header-top {
        flex-direction: column;
        text-align: center;
    }

    .contact-info {
        justify-content: center;
    }

    .nav-toggle {
        display: flex;
    }

    .main-navigation .container {
        display: block;
    }

    .nav-menu {
        max-height: 0;
        opacity: 0;
        overflow: hidden;
        flex-direction: column;
        width: 100%;
        transition: max-height 0.4s ease, opacity 0.3s ease;
    }

    .nav-menu.active {
        max-height: 500px;
        opacity: 1;
    }

    .nav-menu a {
        padding: 14px 20px;
        font-size: 0.9rem;
        border-top: 1px solid rgba(255,255,255,0.15);
}

    .page-header {
        height: 180px;
    }

    .page-header h1 {
        font-size: 1.8rem;
    }

    .site-title {
        font-size: 1.5rem;
    }

    .section-title h2 {
        font-size: 1.5rem;
    }

    .map-container iframe {
        height: 300px;
    }
}

.error-404-section {
    text-align: center;
}

.error-404 {
    max-width: 720px;
    margin: 40px auto 60px;
    padding: 50px 40px;
    background: #fff;
    border: 1px solid #f0f0f0;
    border-radius: 12px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
    animation: fadeInUp 0.5s ease both;
}

.error-404-icon {
    line-height: 0;
    margin-bottom: 12px;
    animation: fadeInUp 0.5s ease 0.1s both;
}

.error-404-icon svg {
    width: 52px;
    height: 52px;
    margin: 0 auto;
    display: block;
    filter: drop-shadow(0 2px 6px rgba(212,131,138,0.25));
}

.error-404-title {
    font-family: 'Marcellus', Georgia, serif;
    font-size: 6rem;
    line-height: 1;
    color: #f5c5c8;
    margin-bottom: 5px;
    animation: fadeInUp 0.5s ease 0.15s both;
}

.error-404-subtitle {
    font-family: 'Marcellus', Georgia, serif;
    font-size: 1.6rem;
    color: #222;
    margin-bottom: 15px;
    animation: fadeInUp 0.5s ease 0.2s both;
}

.error-404-text {
    color: #666;
    line-height: 1.8;
    margin-bottom: 25px;
    animation: fadeInUp 0.5s ease 0.25s both;
}

.error-404-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    animation: fadeInUp 0.5s ease 0.3s both;
}

.btn-secondary {
    background: #efa7ac;
}

.btn-secondary:hover {
    background: #d4838a;
}

@media (max-width: 480px) {
    .error-404 {
        padding: 30px 20px;
        margin: 20px auto 40px;
    }

    .error-404-title {
        font-size: 4rem;
    }

    .error-404-subtitle {
        font-size: 1.2rem;
    }

    .contact-info {
        flex-direction: column;
        gap: 8px;
    }

    .nav-menu a {
        padding: 8px 10px;
        font-size: 0.75rem;
    }

    .page-header {
        height: 150px;
    }

    .page-header h1 {
        font-size: 1.4rem;
    }
}