/* Lokale Fonts - kein Google */
@font-face {
    font-family: 'Lobster';
    font-style: normal;
    font-weight: 400;
    font-display: fallback;
    src: url('../fonts/lobster.woff2') format('woff2');
}

@font-face {
    font-family: 'Ubuntu';
    font-style: normal;
    font-weight: 300;
    font-display: fallback;
    src: url('../fonts/ubuntu-300.woff2') format('woff2');
}

@font-face {
    font-family: 'Ubuntu';
    font-style: normal;
    font-weight: 400;
    font-display: fallback;
    src: url('../fonts/ubuntu-400.woff2') format('woff2');
}

@font-face {
    font-family: 'Ubuntu';
    font-style: normal;
    font-weight: 500;
    font-display: fallback;
    src: url('../fonts/ubuntu-500.woff2') format('woff2');
}


:root {
    --primary-color: #ccb691; /* Original warm gold/beige */
    --secondary-color: #f3f3f3; /* Original light grey background */
    --text-color: #777;
    --heading-color: #31383a;
    --heading-font: 'Lobster', cursive;
    --body-font: 'Ubuntu', sans-serif;
}

body {
    font-family: var(--body-font);
    color: var(--text-color);
    background-color: var(--secondary-color);
    padding-top: 76px; /* Adjusted for navbar */
    font-weight: 300;
    font-size: 18px; /* Slightly larger base size like original */
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--heading-font);
    color: var(--heading-color);
    font-weight: 400;
}

h1 { font-size: 3rem; }
h2 { font-size: 2.5rem; margin-bottom: 1.5rem; }
h3 { font-size: 1.8rem; }

.navbar {
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    font-family: var(--body-font);
}

.navbar-brand {
    font-family: var(--heading-font);
    font-size: 2rem;
    color: var(--heading-color) !important;
}

.nav-link {
    color: #555 !important;
    font-weight: 400;
    text-transform: uppercase;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    padding: 10px 15px !important;
}

.nav-link.active, .nav-link:hover {
    color: var(--primary-color) !important;
}

.hero-section {
    position: relative;
    /* Use the high-res image from the server */
    background: url('../images/header-highres.jpg') no-repeat center center scroll; 
    background-size: cover;
    display: flex;
    /* Align content to top left instead of bottom right */
    align-items: flex-start; 
    justify-content: flex-start;
    box-shadow: inset 0 0 50px rgba(0,0,0,0.2);
}

.hero-overlay {
    background-color: rgba(255, 255, 255, 0.7); /* More transparent */
    padding: 30px 40px;
    border-bottom-right-radius: 15px; 
    border-top-left-radius: 0;
    text-align: left; 
    backdrop-filter: blur(3px); /* Slightly less blur */
    margin-top: 50px; 
    margin-left: 50px; 
    box-shadow: 0 5px 25px rgba(0,0,0,0.1);
    max-width: 500px; /* Reduced width */
}

@media (max-width: 768px) {
    .hero-section {
        align-items: flex-start; /* Ensure top alignment on mobile too */
        justify-content: flex-start;
    }
    .hero-overlay {
        margin: 0; /* Remove all margins */
        border-radius: 0; /* No rounded corners */
        border-bottom-right-radius: 10px; /* Optional: small curve on bottom right */
        width: 100%; /* Full width */
        max-width: none;
        text-align: center;
        background-color: rgba(255, 255, 255, 0.85); /* A bit more readable on mobile */
        padding: 20px;
    }
}



.section-padding {
    padding: 80px 0;
}



.btn-custom {
    background-color: var(--primary-color);
    color: #fff;
    border: none;
    padding: 10px 30px;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: background-color 0.3s;
    font-family: var(--body-font);
    font-weight: 500;
    border-radius: 2px;
}

.btn-custom:hover {
    background-color: #bfa37a; /* Darker shade */
    color: #fff;
}

/* =========================================
   UNIFIED DESIGN CONCEPT
   ========================================= */

/* 1. Global Backgrounds */
body {
    background-color: var(--secondary-color); /* Light Grey #f3f3f3 */
}

/* 2. Unified Card Style (Used for Features & Testimonials) */
.feature-box, 
.recommendation-card {
    background: #fff;
    padding: 40px;
    border-radius: 4px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border-bottom: 3px solid var(--primary-color); /* Uniform Gold Accent */
    transition: transform 0.3s ease;
    height: 100%;
    margin-bottom: 0; /* Handled by grid/layout */
    position: relative;
    text-align: center;
}

.feature-box:hover,
.recommendation-card:hover {
    transform: translateY(-5px);
}

/* Specific adjustments for Feature Box images */
.feature-box img {
    max-width: 100%;
    height: 220px;
    width: 100%;
    object-fit: cover;
    margin-bottom: 20px;
    border-radius: 2px;
}

.feature-box h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--heading-color);
}

/* Specific adjustments for Recommendation Content */
.recommendation-text {
    font-family: var(--body-font);
    font-style: italic;
    color: #555;
    margin-bottom: 20px;
    font-size: 1.1rem;
    line-height: 1.6;
}

.recommendation-author {
    font-family: var(--heading-font);
    color: var(--heading-color);
    font-size: 1.3rem;
    margin-top: 10px;
}

.recommendation-author::before {
    content: "— ";
    color: var(--primary-color);
}

/* 3. Simplified Quote Section */
.quote-section {
    background: #fff; /* Clean White - no pattern, no beige */
    padding: 100px 0;
    text-align: center;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.quote-section h4 {
    font-family: var(--body-font);
    line-height: 1.6;
    color: #333;
    font-weight: 300;
    font-size: 1.5rem;
}

/* 4. Fixed Round Arrows */
.carousel-control-prev,
.carousel-control-next {
    width: 50px; /* Fixed width container */
    height: 50px; /* Fixed height */
    top: 50%;
    transform: translateY(-50%);
    opacity: 1;
}

.carousel-control-prev {
    left: -20px; /* Pull slightly outside on large screens */
}

.carousel-control-next {
    right: -20px;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: var(--primary-color); /* Gold background */
    border-radius: 50%; /* Perfectly round */
    width: 40px;
    height: 40px;
    background-size: 50%; /* Icon size inside circle */
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

/* Adjust layout on small screens for arrows */
@media (max-width: 768px) {
    .carousel-control-prev { left: 0; }
    .carousel-control-next { right: 0; }
}

.recommendation-text {
    font-family: var(--body-font);
    font-style: italic;
    color: #666;
    margin-bottom: 20px;
    font-size: 0.95rem;
    line-height: 1.6;
}

.recommendation-author {
    font-family: var(--heading-font);
    color: var(--heading-color);
    font-size: 1.2rem;
    margin-top: auto; /* Push to bottom */
    text-align: right;
}

.recommendation-author::before {
    content: "— ";
    color: var(--primary-color);
}






footer {
    background-color: #31383a;
    color: #aaa;
    padding: 60px 0 30px;
    font-family: var(--body-font);
}

footer h5 {
    color: #fff;
    font-family: var(--body-font);
    text-transform: uppercase;
    font-size: 1rem;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

footer a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s;
}

footer a:hover {
    color: #fff;
}

/* Map specific */
#map {
    height: 350px;
    width: 100%;
    border-radius: 4px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    margin-top: 20px;
}