/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --cream: #f8f6f3;
    --dark: #2c2c2c;
    --charcoal: #1a1a1a;
    --gold: #b8956a;
    --gold-light: #d4c4a8;
    --white: #ffffff;
    --gray-light: #e5e5e5;
    --gray-medium: #6b6b6b;
    --shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.08);
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--dark);
    line-height: 1.7;
    background-color: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 4rem;
}

/* Typography */
h1, h2, h3 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    line-height: 1.1;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: transparent;
    backdrop-filter: none;
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-bottom: 1px solid transparent;
}

/* Legal Pages Navigation (Impressum/Datenschutz) */
body.legal-page .navbar {
    background: transparent;
}

body.legal-page .navbar .nav-brand {
    color: var(--charcoal);
}

body.legal-page .navbar .nav-links a {
    color: var(--dark);
}

body.legal-page .navbar .nav-links a:not(.nav-cta) {
    text-decoration: none;
}

body.legal-page .navbar .nav-links a.nav-cta {
    background: var(--gold);
    color: var(--charcoal);
}

body.legal-page .navbar.scrolled {
    background: rgba(255, 255, 255, 1);
    border-bottom-color: var(--gray-light);
    box-shadow: var(--shadow-sm);
}

/* Hero Page Navigation */
.navbar.scrolled {
    background: rgba(255, 255, 255, 1);
    border-bottom-color: var(--gray-light);
    box-shadow: var(--shadow-sm);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.8rem 4rem;
}

.nav-brand {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 2px;
    transition: color 0.4s ease;
    text-decoration: none;
}

.navbar.scrolled .nav-brand {
    color: var(--charcoal);
}

.nav-links {
    display: flex;
    gap: 3rem;
    align-items: center;
}

.nav-links a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.875rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    position: relative;
}

.navbar.scrolled .nav-links a {
    color: var(--gray-medium);
}

.nav-links a:hover {
    color: var(--gold);
}

.nav-links a.nav-cta {
    background: var(--gold);
    color: var(--charcoal);
    padding: 0.6rem 1.5rem;
    border-radius: 2px;
    font-weight: 600;
}

.nav-links a.nav-cta:hover {
    background: var(--gold-light);
    color: var(--charcoal);
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    overflow: hidden;
    margin-top: 0;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: brightness(0.7);
}

.hero-overlay {
    position: relative;
    z-index: 2;
    width: 100%;
    padding-top: 80px;
}

.hero-content {
    max-width: 700px;
    color: var(--white);
}

.hero-title {
    font-size: 6rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    letter-spacing: -1px;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    letter-spacing: 1px;
}

.hero-rating {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 2.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 1rem 1.5rem;
    border-radius: 100px;
    display: inline-flex;
}

.stars {
    display: flex;
    gap: 0.15rem;
}

.star {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.3);
}

.star.filled {
    color: var(--gold);
}

.star.partial {
    background: linear-gradient(90deg, var(--gold) 80%, rgba(255, 255, 255, 0.3) 80%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.rating-text {
    font-weight: 600;
    font-size: 1rem;
}

.rating-divider {
    opacity: 0.5;
}

.rating-count {
    opacity: 0.85;
    font-size: 0.9rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
}

.btn {
    display: inline-block;
    padding: 1.1rem 2.8rem;
    border-radius: 2px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.875rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-primary {
    background: var(--white);
    color: var(--charcoal);
    border-color: var(--white);
}

.btn-primary:hover {
    background: transparent;
    color: var(--white);
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.5);
}

.btn-secondary:hover {
    border-color: var(--white);
    background: rgba(255, 255, 255, 0.1);
}

/* About Section */
.about {
    padding: 8rem 0;
    background: var(--cream);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.badge {
    display: inline-block;
    padding: 0.5rem 1.2rem;
    background: var(--gold);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 2rem;
}

.section-title {
    font-size: 3.5rem;
    margin-bottom: 2rem;
    color: var(--charcoal);
    line-height: 1.2;
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--gray-medium);
    margin-bottom: 1.5rem;
}

.about-image {
    position: relative;
    height: 600px;
    border-radius: 2px;
    overflow: hidden;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(20%);
}

/* Services Section */
.services {
    padding: 8rem 0;
    background: var(--white);
}

.services .section-title {
    text-align: center;
    margin-bottom: 5rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    background: var(--gray-light);
    border: 1px solid var(--gray-light);
}

.service-card {
    background: var(--white);
    padding: 3rem 2.5rem;
    transition: all 0.4s ease;
    position: relative;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.4s ease;
}

.service-card:hover::before {
    width: 100%;
}

.service-card:hover {
    background: var(--cream);
    transform: translateY(-4px);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--charcoal);
}

.service-card p {
    color: var(--gray-medium);
    line-height: 1.8;
    font-size: 0.95rem;
}

/* Contact Section */
.contact {
    padding: 8rem 0;
    background: var(--cream);
}

.contact .section-title {
    text-align: center;
    margin-bottom: 5rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.8fr;
    gap: 4rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 2px;
}

.info-card h3 {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--charcoal);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
}

.info-item {
    margin-bottom: 2rem;
}

.info-item:last-child {
    margin-bottom: 0;
}

.info-label {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gray-medium);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.info-value {
    font-size: 1.1rem;
    color: var(--dark);
    text-decoration: none;
    transition: color 0.3s ease;
}

.info-value:hover {
    color: var(--gold);
}

.hours-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    padding: 1rem 0;
    border-bottom: 1px solid var(--gray-light);
    font-size: 0.95rem;
}

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

.hours-item span:first-child {
    color: var(--gray-medium);
}

.hours-item span:last-child {
    color: var(--dark);
    font-weight: 600;
}

.closed {
    color: var(--gray-medium) !important;
    font-weight: 400 !important;
}

/* Google Reviews */
.reviews-card {
    background: var(--white);
}

.google-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--gray-light);
}

.google-logo {
    width: 90px;
    height: auto;
}

.google-rating {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1rem;
}

.google-stars {
    display: flex;
    gap: 0.2rem;
}

.google-stars .star {
    font-size: 1.4rem;
}

.google-rating-number {
    font-size: 2.5rem;
    font-weight: 300;
    font-family: 'Cormorant Garamond', serif;
    color: var(--charcoal);
}

.google-review-count {
    color: var(--gray-medium);
    font-size: 0.9rem;
    margin-bottom: 2rem;
}

.google-link {
    display: inline-block;
    color: #1a73e8;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.875rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    border-bottom: 2px solid transparent;
}

.google-link:hover {
    border-bottom-color: #1a73e8;
}

/* Map */
.map-container {
    height: 650px;
    border-radius: 2px;
    overflow: hidden;
    border: 1px solid var(--gray-light);
}

.map-container iframe {
    width: 100%;
    height: 100%;
}

/* Footer */
.footer {
    background: var(--charcoal);
    color: var(--gold-light);
    padding: 4rem 0 3rem;
}

.footer-content {
    text-align: center;
}

.footer-brand {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 0.75rem;
}

.footer-tagline {
    font-size: 0.95rem;
    opacity: 0.7;
    margin-bottom: 2rem;
}

.footer-info {
    margin-bottom: 2rem;
}

.footer-info p {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-bottom: 0.5rem;
}

.footer-info a {
    color: var(--gold-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-info a:hover {
    color: var(--gold);
}

.footer-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(184, 149, 106, 0.2);
}

.footer-links a {
    color: var(--gold-light);
    text-decoration: none;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--gold);
}

.footer-links span {
    opacity: 0.5;
}

/* Legal Sections */
.legal-section {
    padding: 6rem 0;
    background: var(--white);
}

.legal-section:nth-child(odd) {
    background: var(--cream);
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
}

.legal-content h3 {
    font-size: 1.5rem;
    color: var(--charcoal);
    margin-top: 3rem;
    margin-bottom: 1rem;
    font-family: 'Cormorant Garamond', serif;
}

.legal-content h3:first-child {
    margin-top: 0;
}

.legal-content h4 {
    font-size: 1.2rem;
    color: var(--dark);
    margin-top: 2rem;
    margin-bottom: 0.75rem;
}

.legal-content p {
    line-height: 1.8;
    color: var(--gray-medium);
    margin-bottom: 1.5rem;
}

.legal-content ul {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.legal-content li {
    line-height: 1.8;
    color: var(--gray-medium);
    margin-bottom: 0.5rem;
}

.legal-content a {
    color: var(--gold);
    text-decoration: none;
    border-bottom: 1px solid var(--gold);
    transition: all 0.3s ease;
}

.legal-content a:hover {
    color: var(--dark);
    border-bottom-color: var(--dark);
}

/* Back to Home Button (legal pages) – unten links, scroll-triggered */
.back-to-home {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    background: rgba(26, 26, 26, 0.9);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: var(--white);
    padding: 0.7rem 1.2rem;
    border-radius: 50px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.18);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-12px);
}

.back-to-home.visible {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.back-to-home:hover {
    background: var(--gold);
    color: var(--charcoal);
    transform: translateX(4px);
    box-shadow: 0 6px 25px rgba(184, 149, 106, 0.35);
}

.back-to-home svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

/* Back to Top Button (index) – unten rechts, rund, gold */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 48px;
    height: 48px;
    background: var(--gold);
    color: var(--charcoal);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(184, 149, 106, 0.45);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--charcoal);
    color: var(--white);
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.22);
}

.back-to-top svg {
    width: 20px;
    height: 20px;
}

/* Mobile */
@media (max-width: 768px) {
    .back-to-home {
        bottom: 1.5rem;
        left: 1.5rem;
        width: 44px;
        height: 44px;
        padding: 0;
        justify-content: center;
        border-radius: 50%;
    }

    .back-to-home span {
        display: none;
    }

    .back-to-top {
        bottom: 1.5rem;
        right: 1.5rem;
        width: 44px;
        height: 44px;
    }
}

/* Responsive */
@media (max-width: 1200px) {
    .container {
        padding: 0 2rem;
    }
    
    .navbar .container {
        padding: 1.8rem 2rem;
    }
}

@media (max-width: 968px) {
    .hero-title {
        font-size: 4rem;
    }
    
    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .about-image {
        height: 400px;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero {
        height: 100vh;
        min-height: 100vh;
    }
    
    .hero-image img {
        object-position: center center;
        filter: brightness(0.6);
    }
    
    .hero-title {
        font-size: 3.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .nav-links a:not(.nav-cta) {
        display: none;
    }
    
    .nav-links {
        gap: 0;
    }
    
    .nav-links a.nav-cta {
        display: block;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .btn {
        text-align: center;
        width: 100%;
    }
    
    .hero-rating {
        display: flex;
        width: auto;
    }
    
    .container {
        padding: 0 1.5rem;
    }
    
    .navbar .container {
        padding: 1.5rem 1.5rem;
    }
    
    /* Mobile Floating Buttons */
    .back-to-top {
        bottom: 1.5rem;
        right: 1.5rem;
        width: 45px;
        height: 45px;
    }
    
    .floating-home {
        bottom: 1.5rem;
        left: 1.5rem;
        padding: 0.7rem 1.2rem;
        font-size: 0.8rem;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-card,
.info-card {
    animation: fadeInUp 0.8s ease-out both;
}

.service-card:nth-child(1) { animation-delay: 0.1s; }
.service-card:nth-child(2) { animation-delay: 0.2s; }
.service-card:nth-child(3) { animation-delay: 0.3s; }
.service-card:nth-child(4) { animation-delay: 0.4s; }
.service-card:nth-child(5) { animation-delay: 0.5s; }
.service-card:nth-child(6) { animation-delay: 0.6s; }

html {
    scroll-behavior: smooth;
}
