:root {
    --bg-light: #f4f6f9;
    --container-bg: #ffffff;
    --text-main: #2c3e50;
    --text-muted: #555555;
    --gold: #b8860b;
    --gold-light: #d4af37;
    --border-gold: #d4af37;
    --card-bg: #ffffff;
    --card-shadow: 0 10px 25px rgba(0,0,0,0.05);
}
body {
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    background: var(--bg-light);
    color: var(--text-main);
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
}

.website-container {
    width: 100%;
    margin: 0;
    background: var(--bg-light);
    box-shadow: none;
    border: none;
}

.card-header {
    background: radial-gradient(circle at center, #1c1c1c 0%, #0b0b0b 100%);
    border-bottom: 4px solid var(--border-gold);
    position: relative;
    padding: 50px 15px;
    text-align: center;
    box-sizing: border-box;
    overflow: hidden;
    min-height: 220px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: inset 0 0 30px rgba(0,0,0,0.8);
}
.card-header .welcome-text {
    color: var(--gold-light);
    font-family: 'Great Vibes', cursive;
    font-size: 3rem;
    margin: 0 0 5px 0;
    font-weight: normal;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.9);
}
.card-header h1 {
    font-family: 'Great Vibes', cursive;
    margin: 0 0 5px 0;
    font-weight: normal;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.9);
    color: var(--gold-light);
    font-size: 1.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    line-height: 1.3;
}
.card-header .subtitle {
    color: var(--gold-light);
    font-family: 'Great Vibes', cursive;
    margin: 0 0 5px 0;
    font-weight: normal;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.9);
    font-size: 1.4rem;
    letter-spacing: 1px;
    margin-top: 10px;
}
.main-nav {
    background-color: #ffffff;
    border-bottom: 2px solid var(--border-gold);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}
.nav-container {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    position: relative;
}
.nav-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}
.nav-brand img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid var(--gold);
    object-fit: cover;
}
.nav-brand span {
    color: var(--text-main);
    font-family: 'Cinzel', serif;
    font-size: 1rem;
    letter-spacing: 1px;
    font-weight: bold;
}
.nav-links {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 25px;
}
.nav-links a {
    color: var(--text-main);
    text-decoration: none;
    font-family: 'Cinzel', serif;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: 0.3s;
    padding: 5px 0;
    cursor: pointer;
}
.nav-links a:hover {
    color: var(--gold);
    border-bottom: 2px solid var(--gold);
}

.burger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 21px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1200;
}
.burger-menu span {
    width: 100%;
    height: 3px;
    background: var(--text-main);
    border-radius: 3px;
    transition: 0.3s ease;
}
.burger-menu.active {
    position: fixed;
    top: 20px;
    right: 20px;
}
.burger-menu.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
    background: var(--gold);
}
.burger-menu.active span:nth-child(2) {
    opacity: 0;
}
.burger-menu.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
    background: var(--gold);
}

@media(max-width: 768px) {
    .burger-menu {
        display: flex;
    }
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        left: auto;
        transform: none;
        width: 100vw;
        height: 100vh;
        background: #ffffff;
        display: flex;
        flex-direction: column;
        justify-content: center !important;
        align-items: center !important;
        text-align: center !important;
        gap: 25px;
        box-shadow: none;
        transition: right 0.3s ease-in-out;
        z-index: 1050;
        padding: 0 !important;
        margin: 0 !important;
    }
    .nav-links.active {
        right: 0;
    }
    .nav-links a {
        font-size: 1.3rem;
        display: block;
        width: 100%;
        text-align: center !important;
        padding: 10px 0;
    }
}

.content-section {
    max-width: 1300px;
    margin: 0 auto;
    padding: 40px 15px;
}
h2 {
    color: var(--text-main);
    font-family: 'Cinzel', serif;
    font-size: 1.7rem;
    text-align: center;
    margin-bottom: 30px;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

h2::after {
    content: '';
    display: block;
    width: 100%;
    height: 2px;
    background: var(--gold);
    margin: 0px auto 0 auto;
    border-radius: 2px;
}

.grid-leistungen {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 40px;
}
/*
.card {
    background: var(--card-bg);
    border: 1px solid rgba(212, 175, 55, 0.3);
    padding: 25px 20px;
    border-radius: 12px;
    box-shadow: var(--card-shadow);
    transition: all 0.3s ease;
}
.card:hover {
    border-color: var(--gold);
    transform: translateY(-5px);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.4), 0 10px 25px rgba(0,0,0,0.08);
}
.card h3 {
    color: var(--text-main);
    margin-top: 0;
    font-size: 1.2rem;
    text-align: center;
}
.card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 0;
}
*/
.card {
    background: var(--card-bg);
    border: 1px solid rgba(212, 175, 55, 0.3);
    padding: 30px 25px;
    border-radius: 12px;
    box-shadow: var(--card-shadow);
    transition: all 0.3s ease;
}

.card:hover {
    border-color: var(--gold);
    transform: translateY(-5px);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.4), 0 10px 25px rgba(0,0,0,0.08);
}

.card h3 {
    color: var(--text-main);
    margin-top: 0;
    margin-bottom: 1.2rem;
    font-size: 1.4rem;
    text-align: center;
}

.card h3::after {
  content: '';
  display: block;
  width: 216px;
  height: 2px;
  background: var(--gold);
  margin: 0px auto 0 auto;
  border-radius: 2px;
}

.card h4 {
    color: var(--text-main);
    font-size: 1.05rem;
    margin: 1.2rem 0 0.6rem 0;
    text-align: center;
}

.card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.card-intro {
    text-align: center;
    font-weight: 600;
}

.service-section {
    text-align: center;
}

.service-section h4::after {
  content: '';
  display: block;
  width: 261px;
  height: 2px;
  background: var(--gold);
  margin: 0px auto 0 auto;
  border-radius: 2px;
}

.card-note {
    text-align: center;
    font-weight: 600;
}

.card-cta {
    text-align: center;
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.service-list {
    list-style: none;
    padding: 0;
    margin: 0 auto 1.2rem auto;
    display: inline-block;
    text-align: left;
}

.service-list li {
    color: var(--text-muted);
    font-size: 0.95rem;
    padding: 6px 0;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-weight: 600;
}

.service-list .icon {
    margin-right: 10px;
    font-size: 1.1rem;
}
.card-highlight {
    background: rgba(212, 175, 55, 0.05);
    border-left: 3px solid var(--gold);
    border-right: 3px solid var(--gold);
    padding: 15px 20px;
    border-radius: 8px 8px 8px 8px;
    margin: 1.5rem auto;        
    width: fit-content;        
    max-width: 100%;       
    box-sizing: border-box;  
    text-align: center;            
}

.card-highlight p {
    margin-bottom: 0.5rem;
}

.card-highlight p:last-child {
    margin-bottom: 0;
}
.map-section {
    margin-bottom: 40px;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid var(--border-gold);
    background: #fff;
    box-shadow: var(--card-shadow);
}
.map-section iframe {
    width: 100%;
    height: 350px;
    border: none;
    display: block;
}
.map-overlay-badge {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    width: auto;
    max-width: 90%;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid var(--gold);
    padding: 10px 20px;
    border-radius: 6px;
    color: var(--text-main);
    font-weight: bold;
    font-size: 0.85rem;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    white-space: nowrap;
}

.timeline-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
    margin-bottom: 40px;
}
@media(min-width: 600px) {
    .timeline-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media(min-width: 900px) {
    .timeline-grid {
        grid-template-columns: repeat(5, 1fr);
    }
}

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

.timeline-item h4 {
    color: var(--text-main);
    font-size: 0.85rem;
    text-transform: uppercase;
    margin: 0 0 16px 0; 
    letter-spacing: 1px;
    position: relative;
    display: inline-block;
    align-self: center; 
}

.timeline-item h4::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: -6px; 
    height: 2px; 
    background-color: var(--gold); 
    border-radius: 2px;
}

.step-card {
    height: 255px;
    background-color: var(--card-bg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border: 2px solid var(--border-gold);
    border-radius: 12px;
    box-shadow: var(--card-shadow);
    transition: all 0.3s ease;
}

.step-card:hover {
    border-color: var(--gold);
    transform: translateY(-4px);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
}

.contact-box {
    background: var(--card-bg);
    border: 1px solid rgba(212, 175, 55, 0.4);
    border-radius: 12px;
    padding: 25px 15px;
    /*margin: 40px auto 0 auto;*/
    box-shadow: var(--card-shadow);
}

@media(min-width: 768px) {
    .contact-box {
        padding: 40px;
    }
}
.contact-form-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 20px;
}
@media(min-width: 768px) {
    .contact-form-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
}
.form-column {
    display: flex;
    flex-direction: column;
    gap: 15px;
    height: 100%;
}
.form-group {
    display: flex;
    flex-direction: column;
    text-align: left;
}
.form-group input, .form-group textarea {
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 1rem;
    background: #fafafa;
    color: #000000;
    width: 100%;
    box-sizing: border-box;
}
.form-group input:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    background: #fff;
    box-shadow: 0 0 5px rgba(184, 134, 11, 0.2);
}
.form-group input::placeholder, 
.form-group textarea::placeholder {
    color: #4a5568;
    opacity: 1;
}
.form-group input:-ms-input-placeholder, 
.form-group textarea:-ms-input-placeholder {
    color: #4a5568;
    opacity: 1;
}
.form-group input::-ms-input-placeholder, 
.form-group textarea::-ms-input-placeholder {
    color: #4a5568;
    opacity: 1;
}
@media(min-width: 768px) {
    .form-group-textarea, 
    .form-group-textarea textarea {
        height: 100%;
        box-sizing: border-box;
    }
}
.form-group textarea {
    resize: vertical;
    min-height: 120px;
}
.captcha-container {
    background: #f1f3f5;
    border: 1px solid #dcdcdc;
    border-radius: 8px;
    padding: 10px;
    text-align: center;
}
.captcha-label {
    font-size: 0.8rem;
    color: #555;
    margin-bottom: 5px;
    display: block;
}
.slider-track {
    position: relative;
    height: 44px;
    background: #e4e6eb;
    border-radius: 22px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    user-select: none;
    touch-action: none;
}
.slider-thumb {
    position: absolute;
    left: 0;
    top: 0;
    width: 50px;
    height: 44px;
    background: var(--gold);
    border-radius: 22px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: bold;
    z-index: 2;
}
.slider-text {
    position: absolute;
    width: 100%;
    font-size: 0.85rem;
    color: #777;
    pointer-events: none;
    text-align: center;
    z-index: 1;
}
.captcha-success {
    color: #2b8a3e;
    font-weight: bold;
    font-size: 0.9rem;
    display: none;
}
.form-full-width {
    grid-column: 1 / -1;
    text-align: center;
    margin-top: 10px;
}
.form-submit-btn {
    background: var(--gold);
    color: #fff;
    border: none;
    padding: 14px 30px;
    font-family: 'Cinzel', serif;
    font-size: 1rem;
    font-weight: bold;
    border-radius: 8px;
    cursor: pointer;
    text-transform: uppercase;
    width: 100%;
    transition: 0.3s;
}
@media(min-width: 768px) {
    .form-submit-btn {
        width: auto;
    }
}
.form-submit-btn:hover:not(:disabled) {
    background: var(--gold-light);
    color: #000;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.5);
}
.form-submit-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
}
#formFeedback {
    margin-bottom: 15px;
    text-align: center;
    font-weight: bold;
    font-size: 0.95rem;
}
.site-footer {
    background-color: #1c1c1c;
    border-top: 3px solid var(--border-gold);
    padding: 40px 20px 20px 20px;
    color: #ddd;
    margin-top: 60px;
}
.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
    max-width: 1300px;
    margin: 0 auto;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    text-align: center;
}
@media(min-width: 768px) {
    .footer-content {
        grid-template-columns: 1.5fr 1fr 1fr 0.8fr;
        text-align: left;
    }
}
.footer-col {
    align-self: start;
}
.footer-logo-box {
    overflow: visible;
    margin: 0;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}
@media(min-width: 768px) {
    .footer-logo-box {
        justify-content: flex-start;
    }
}
.footer-logo-box img {
    width: 100%;
    max-width: 450px;
    height: auto;
    display: block;
}
.social-container {
    display: flex;
    justify-content: center;
}
.social-icon-box {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: #FFFFFF;
    border: 1px solid var(--border-gold);
    border-radius: 50%;
    color: #ea4c89;
    font-size: 1.1rem;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    transition: 0.3s;
}
.social-icon-box:hover {
    transform: scale(1.1);
    color: #ea4c89;
}
.social-icon-box i {
    font-size: 2.1rem;
}
.footer-col h3 {
    color: var(--gold-light);
    font-family: 'Cinzel', serif;
    font-size: 1.1rem;
    margin-top: 0;
    margin-bottom: 5px;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
    padding-bottom: 4px;
}
.footer-col h3::after {
    content: '';
    display: block;
    width: 100%;
    height: 2px;
    background: var(--gold);
    margin: 0px auto 0 auto;
    border-radius: 2px;
}
.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-col ul li {
    margin-bottom: 10px;
}
.footer-col ul li a, .footer-col p, .footer-col p a {
    color: #ccc;
    text-decoration: none;
    font-size: 0.95rem;
    line-height: 1.6;
}
.footer-col ul li a:hover, .footer-col p a:hover {
    color: var(--gold-light);
}
.footer-icon {
    color: var(--gold-light);
    margin-right: 8px;
    font-style: normal;
}
.footer-time-row {
    display: inline-flex;
    align-items: flex-start;
    gap: 10px;
    text-align: left;
    margin: 0 auto;
}

.footer-time-row .footer-icon {
    flex-shrink: 0;
}

.footer-time-text {
    margin-left: 0; 
    padding-right: 0;
}
.footer-bottom {
    text-align: center;
    padding-top: 20px;
    font-size: 0.85rem;
    color: #aaa;
    max-width: 1300px;
    margin: 0 auto;
}
.footer-bottom span {
    color: var(--gold-light);
}
.custom-popover-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 2000;
    justify-content: center;
    align-items: center;
    padding: 15px;
    box-sizing: border-box;
}
.custom-popover-overlay.active {
    display: flex;
}
.custom-popover-box {
    background: var(--card-bg, #ffffff);
    border: 2px solid var(--border-gold, #d4af37);
    border-radius: 12px;
    padding: 30px;
    width: 100%;
    max-width: 600px;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    position: relative;
    color: var(--text-main, #2c3e50);
    text-align: left;
}
.custom-popover-box h3 {
    color: var(--text-main, #2c3e50);
    font-family: 'Cinzel', serif;
    margin-top: 0;
    border-bottom: 2px solid var(--gold, #b8860b);
    padding-bottom: 8px;
    text-transform: uppercase;
}
.custom-popover-box p {
    color: var(--text-muted, #555555);
    font-size: 0.95rem;
    line-height: 1.6;
}
.popover-close-btn {
    background: var(--gold, #b8860b);
    color: #fff;
    border: none;
    padding: 10px 20px;
    font-family: 'Cinzel', serif;
    font-size: 0.9rem;
    font-weight: bold;
    border-radius: 6px;
    cursor: pointer;
    text-transform: uppercase;
    display: block;
    margin: 20px auto 0 auto;
    transition: 0.3s;
}
.popover-close-btn:hover {
    background: var(--gold-light, #d4af37);
    color: #000;
}
#cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--card-bg, #1a1a1a);
    color: var(--text-main, #ffffff);
    border-top: 2px solid var(--border-gold, #d4af37);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.5);
    z-index: 9999;
    padding: 20px;
    box-sizing: border-box;
    transition: opacity 0.3s ease;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}

.cookie-content p {
    margin: 0;
    font-size: 0.9rem;
    flex: 1;
    min-width: 280px;
}

.cookie-content a {
    color: var(--gold, #d4af37);
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
}

.cookie-btn {
    padding: 10px 20px;
    border-radius: 6px;
    font-size: 0.85rem;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.2s ease;
    border: none;
}

.cookie-btn-accept {
    background-color: var(--gold, #d4af37);
    color: #000000;
}

.cookie-btn-accept:hover {
    filter: brightness(1.1);
}

.cookie-btn-essential {
    background-color: transparent;
    color: var(--text-main, #ffffff);
    border: 1px solid var(--border-gold, #d4af37);
}

.cookie-btn-essential:hover {
    background-color: rgba(212, 175, 55, 0.1);
}