/* Grundkonfiguration */
:root {
    --navy: #263047;
    --gold: #c5a059;
    --light-gray: #f8fafc;
    --text-main: #0f172a;
    --text-muted: #64748b;
    --white: #ffffff;
}

      /* Lokale Schriftarten */
	/* montserrat-300 - latin */
	@font-face {
	  font-display: swap; 
	  font-family: 'Montserrat';
	  font-style: normal;
	  font-weight: 300;
	  src: url('fonts/montserrat-v31-latin-300.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
	}
	/* montserrat-regular - latin */
	@font-face {
	  font-display: swap; 
	  font-family: 'Montserrat';
	  font-style: normal;
	  font-weight: 400;
	  src: url('fonts/montserrat-v31-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
	}
	/* montserrat-500 - latin */
	@font-face {
	  font-display: swap; 
	  font-family: 'Montserrat';
	  font-style: normal;
	  font-weight: 500;
	  src: url('fonts/montserrat-v31-latin-500.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
	}
	/* montserrat-600 - latin */
	@font-face {
	  font-display: swap; 
	  font-family: 'Montserrat';
	  font-style: normal;
	  font-weight: 600;
	  src: url('fonts/montserrat-v31-latin-600.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
	}
	/* cormorant-garamond-regular - latin */
	@font-face {
	  font-display: swap; 
	  font-family: 'Cormorant Garamond';
	  font-style: normal;
	  font-weight: 400;
	  src: url('fonts/cormorant-garamond-v21-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
	}
	/* cormorant-garamond-600 - latin */
	@font-face {
	  font-display: swap; 
	  font-family: 'Cormorant Garamond';
	  font-style: normal;
	  font-weight: 600;
	  src: url('fonts/cormorant-garamond-v21-latin-600.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
	}
	/* cormorant-garamond-700 - latin */
	@font-face {
	  font-display: swap; 
	  font-family: 'Cormorant Garamond';
	  font-style: normal;
	  font-weight: 700;
	  src: url('fonts/cormorant-garamond-v21-latin-700.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
	}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-main);
    background-color: var(--white);
    line-height: 1.6;
}

a {
    color: #0f172a;
	text-decoration: none;
}

h1, h2, h3 {
    font-family: 'Cormorant Garamond', serif;
}

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

/* Navigation */
.navbar {
    position: sticky;
    width: 100%;
    z-index: 100;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 2.5rem;
    border-bottom: 1px solid #f1f1f1;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-box {
    width: 32px;
    height: 32px;
    border: 2px solid var(--gold);
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    color: var(--gold);
}

.logo-text {
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-weight: 500;
}

.nav-links a {
    text-decoration: none;
    color: inherit;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    font-weight: 500;
    margin-left: 2.5rem;
    transition: color 0.3s;
}

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

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

.hero-bg {
    position: absolute;
    inset: 0;
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    z-index: -1;
}

.bg-left {
    grid-column: span 7;
    background-color: var(--light-gray);
}

.bg-right {
    grid-column: span 5;
    background-color: var(--navy);
    position: relative;
}

.hero-content {
    display: grid;
    /* Vergrößert den Abstand zwischen Text und Bild */
    grid-template-columns: 1.2fr 0.8fr; 
    align-items: center;
    gap: 4rem;
    width: 100%;
    /* Max-width erhöht, damit die Elemente weiter nach außen rücken können */
    max-width: 1400px; 
}

.subtitle {
    display: block;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 0.4em;
    font-size: 0.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.hero-text h1 {
    font-size: clamp(3.5rem, 8vw, 6rem);
    line-height: 0.9;
    margin-bottom: 2rem;
}

.hero-text p {
    color: var(--text-muted);
    font-size: 1.125rem;
    max-width: 400px;
    margin-bottom: 2.5rem;
}

.hero-text {
    /* Schiebt den Text weiter nach links */
    padding-left: 0;
    justify-self: start;
}

.btn-primary {
    display: inline-block;
    background-color: var(--navy);
    color: var(--white);
    padding: 1.25rem 2.5rem;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-size: 0.75rem;
    transition: all 0.3s;
    box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
}

.btn-primary:hover {
    background-color: #1e293b;
}

.hero-image {
    position: relative;
    justify-self: end;
}

.image-border {
    position: absolute;
    top: -24px;
    right: -24px;
    width: 100%;
    height: 100%;
    border: 2px solid var(--gold);
    z-index: 0;
}

.hero-image img {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 450px;
    filter: grayscale(100%);
    transition: filter 1s;
    box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25);
}

.hero-image img:hover {
    filter: grayscale(0%);
}

/* Stats Section */
.stats {
    background-color: var(--navy);
    padding: 4rem 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.stat-number {
    color: var(--gold);
    font-size: 1.875rem;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #94a3b8;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.2em;
}

/* Services Section */
.services {
    padding: 8rem 0;
}

.services-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 5rem;
}

.services-header h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.quote {
    color: var(--text-muted);
    font-style: italic;
    max-width: 500px;
}

.gold-accent-line {
    width: 128px;
    height: 1px;
    background-color: var(--gold);
    margin-bottom: 1rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    background-color: #f1f1f1;
    gap: 1px;
    border: 1px solid #f1f1f1;
}

.service-card {
    background-color: var(--white);
    padding: 3rem;
    transition: background-color 0.3s;
}

.service-card:hover {
    background-color: var(--light-gray);
}

.card-num {
    color: var(--gold);
    font-size: 0.875rem;
    font-weight: bold;
    display: block;
    margin-bottom: 1.5rem;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.service-card p {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* Footer Section */
.footer {
    background-color: var(--light-gray);
    padding: 5rem 0 2rem;
    border-top: 1px solid #e2e8f0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
}

.footer-info h2 {
    font-size: 2.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 2rem;
}

.footer-info p {
    color: var(--text-muted);
    margin-bottom: 2.5rem;
}

.contact-details p {
    display: flex;
    align-items: center;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--text-main);
}

.contact-details .line {
    width: 32px;
    height: 1px;
    background-color: var(--gold);
    margin-right: 1rem;
}

.contact-form-container {
    background-color: var(--white);
    padding: 2.5rem;
    border: 1px solid #f1f1f1;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.contact-form input, 
.contact-form textarea {
    padding: 1rem;
    border: none;
    border-bottom: 1px solid #e2e8f0;
    outline: none;
    font-size: 0.875rem;
    transition: border-color 0.3s;
}

.contact-form input:focus, 
.contact-form textarea:focus {
    border-color: var(--gold);
}

.contact-form textarea {
    height: 128px;
    resize: none;
}

.btn-submit {
    background-color: var(--gold);
    color: var(--white);
    border: none;
    padding: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 10px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-submit:hover {
    background-color: var(--navy);
}

.copyright {
    text-align: center;
    margin-top: 5rem;
    font-size: 9px;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.2em;
}

.legal-section {
    padding: 60px 0;
    background-color: #f9f9f9; /* Dezenter Kontrast */
    line-height: 1.6;
    color: #333;
}

.legal-section h2 {
    margin-bottom: 30px;
    color: #AA771C; /* Passend zum Gold-Thema */
}

.legal-section p {
    margin-bottom: 15px;
    max-width: 800px; /* Bessere Lesbarkeit */
}

.separator {
    border: 0;
    height: 1px;
    background: #eee;
    margin: 0;
}

/* Responsivität */
@media (max-width: 992px) {
    .hero-content, .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .bg-right {
        display: none;
    }
    
    .bg-left {
        grid-column: span 12;
    }
    
    .nav-links {
        display: none; /* Mobile Navigation könnte hier ergänzt werden */
    }
    
    .hero-image {
        justify-self: center;
        margin-top: 2rem;
    }
}

@media (max-width: 600px) {
    .form-row {
        grid-template-columns: 1fr;
    }
}

        .modal { display: none; position: fixed; z-index: 2000; left: 0; top: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.7); overflow-y: auto; }
        .modal-content { background: white; margin: 5% auto; padding: 40px; width: 80%; max-width: 800px; border-radius: 5px; position: relative; color: var(--dark); }
        .close { position: absolute; top: 20px; right: 20px; font-size: 2rem; cursor: pointer; }