/* style.css */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=Inter:wght@300;400;500;600&display=swap');

:root {
    /* Brand Colors */
    --gold: #C5A059;
    --gold-light: #dfc288;
    --layer1: #00371a;
    --layer2: #004223;
    --layer3: #014727;
    
    /* Neutrals */
    --white: #ffffff;
    --off-white: #f8f9fa;
    --text-dark: #2C3E50;
    --text-medium: #596a7b;
    --text-light: #9ba8b5;
    
    /* Effects */
    --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 20px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 20px 40px rgba(0, 55, 26, 0.08);
    --transition: all 0.3s ease;
    --gold-gradient: linear-gradient(135deg, #AA771C 0%, #C5A059 40%, #AA771C 75%, #7D5110 100%);
}

.gold-gradient-text,
.eyebrow,
.feature-icon,
.contact-icon,
.hours-box h3,
.feature-item h3,
.faq-question i {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

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

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    background-color: var(--off-white);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    color: var(--layer1);
    font-weight: 600;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Header & Navigation */
.header {
    background-color: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding: 1.5rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo-wrapper {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-wrapper img {
    height: 50px;
}

.logo-text {
    font-size: 1.8rem;
    font-family: 'Playfair Display', serif;
    color: var(--layer1);
    font-weight: 700;
}

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

.nav-links a {
    font-weight: 500;
    color: var(--text-dark);
    transition: var(--transition);
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

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

.nav-links .contact-btn-nav {
    background-color: var(--layer2);
    color: var(--white);
    padding: 0.8rem 1.5rem;
    border-radius: 4px;
    font-weight: 500;
    transition: var(--transition);
}

.nav-links .contact-btn-nav:hover {
    background-color: var(--layer1);
    color: var(--white);
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    position: relative;
    height: 65vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(rgba(248, 249, 250, 0.6), rgba(248, 249, 250, 0.75)), url('images/hero_gold.png') center/cover;
    padding: 0 5%;
}

.hero-content {
    max-width: 800px;
}

.hero-logo {
    height: 140px;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 8px 16px rgba(0,0,0,0.25));
    display: inline-block;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero p {
    font-size: 1.2rem;
    color: var(--text-medium);
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.btn-primary {
    display: inline-block;
    background-color: var(--layer1);
    color: var(--white);
    padding: 1rem 2.5rem;
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: 500;
    transition: var(--transition);
    border: 1px solid var(--layer1);
}

.btn-primary:hover {
    background-color: var(--white);
    color: var(--layer1);
}

/* Services / Ankauf Section */
.services {
    padding: 6rem 5%;
    background-color: var(--white);
    text-align: center;
}

.eyebrow {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 0.5rem;
}

.section-title {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.section-subtitle {
    color: var(--text-medium);
    margin-bottom: 4rem;
    font-size: 1.1rem;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

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

.service-content {
    padding: 2.5rem 2rem;
    text-align: center;
}

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

.service-list {
    list-style: none;
    text-align: center;
}

.service-list li {
    padding: 0.5rem 0;
    color: var(--text-medium);
    border-bottom: 1px solid var(--gray-light);
}

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

/* Features Band */
.features {
    background-color: var(--layer3);
    color: var(--white);
    padding: 4rem 5%;
    display: flex;
    justify-content: center;
    gap: 4rem;
    flex-wrap: wrap;
    text-align: center;
}

.feature-item {
    flex: 1;
    min-width: 250px;
}

.feature-icon {
    margin-bottom: 1rem;
}

.feature-item h3 {
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.feature-item p {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 300;
}

/* Contact Section */
.contact {
    padding: 6rem 5%;
    background-color: var(--off-white);
}

.contact-container {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    background: var(--white);
    padding: 3rem;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

.contact-info h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
}

.contact-detail {
    margin-bottom: 1.5rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-icon {
    font-size: 1.5rem;
    margin-top: 2px;
}

.contact-text h4 {
    margin-bottom: 0.2rem;
    color: var(--layer1);
}

.contact-text p, .contact-text a {
    color: var(--text-medium);
}

.contact-text a:hover {
    color: var(--layer2);
}

.hours-box {
    background-color: var(--layer1);
    color: var(--white);
    padding: 2.5rem;
    border-radius: 8px;
}

.hours-box h3 {
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

/* Footer */
.footer {
    background-color: var(--layer1);
    color: var(--white);
    padding: 3rem 5% 1.5rem;
    text-align: center;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

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

.copyright {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
}

/* WhatsApp Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25D366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.2);
    z-index: 1000;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.whatsapp-float:hover {
    background-color: #128C7E;
    transform: scale(1.1);
}

/* Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}
.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Process Steps */
.process {
    padding: 6rem 5%;
    background-color: var(--off-white);
    text-align: center;
}
.process-grid {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    max-width: 1100px;
    margin: 4rem auto 0;
}
.process-step {
    flex: 1;
    min-width: 250px;
    background: var(--white);
    padding: 3rem 1.5rem 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
    position: relative;
    border: 1px solid rgba(0,0,0,0.03);
}
.step-number {
    width: 60px;
    height: 60px;
    background-color: var(--layer1);
    color: var(--gold-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: var(--shadow-md);
}
.process-step h3 {
    margin-bottom: 1rem;
    font-size: 1.3rem;
    color: var(--layer2);
}
.process-step p {
    color: var(--text-medium);
    font-size: 0.95rem;
}

/* FAQ */
.faq {
    padding: 6rem 5%;
    background-color: var(--white);
    text-align: center;
}
.faq-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}
.faq-item {
    border-bottom: 1px solid rgba(0,0,0,0.05);
    margin-bottom: 0.5rem;
}
.faq-question {
    padding: 1.5rem 0;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 500;
    color: var(--layer1);
    font-size: 1.1rem;
    transition: var(--transition);
}
.faq-question:hover {
    color: var(--gold);
}
.faq-question i {
    transition: transform 0.3s ease;
}
.faq-item.active .faq-question i {
    transform: rotate(180deg);
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    color: var(--text-medium);
}
.faq-answer p {
    padding-bottom: 1.5rem;
}

/* Map */
.map-container {
    grid-column: 1 / -1;
    margin-top: 2rem;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0, 0, 0, 0.05);
}
.map-container iframe {
    width: 100%;
    height: 300px;
    border: none;
    display: block;
}

/* Responsive */
@media (max-width: 768px) {
    .header {
        flex-direction: column;
        gap: 0.5rem;
        padding: 1rem 5%;
    }
    .logo-wrapper img {
        height: 40px;
    }
    
    .contact-container {
        grid-template-columns: 1fr;
        padding: 2rem 1.5rem;
    }
    
    .hero-logo {
        height: 90px;
        margin-bottom: 1rem;
    }
    .hero h1 {
        font-size: 2.2rem;
        margin-bottom: 1rem;
    }
    .hero p {
        font-size: 1.05rem;
        margin-bottom: 1.5rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    .section-subtitle {
        margin-bottom: 2.5rem;
        font-size: 1rem;
    }
    
    .services, .process, .faq, .contact, .features {
        padding: 3.5rem 5%;
    }
    
    .map-container iframe {
        height: 220px;
    }
    
    .nav-links {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.8rem;
        width: 100%;
        margin-top: 0.5rem;
    }
    .nav-links a {
        font-size: 0.85rem;
    }
    
    .contact-btn-nav {
        padding: 0.4rem 0.8rem;
    }
    
    /* Ensure footer text isn't covered by whatsapp button */
    .footer {
        padding-bottom: 100px;
    }
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--white);
    box-shadow: 0 -5px 20px rgba(0,0,0,0.1);
    z-index: 9999;
    padding: 1.5rem 5%;
    display: none;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
    border-top: 2px solid var(--gold);
}
.cookie-banner.active {
    display: flex;
}
.cookie-text {
    flex: 1;
    min-width: 250px;
}
.cookie-text h4 {
    color: var(--layer1);
    margin-bottom: 0.2rem;
}
.cookie-text p {
    font-size: 0.9rem;
    color: var(--text-medium);
}
.cookie-buttons {
    display: flex;
    gap: 1rem;
}
.btn-cookie {
    background-color: var(--layer1);
    color: var(--white);
    padding: 0.6rem 1.2rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 500;
    transition: var(--transition);
}
.btn-cookie:hover {
    background-color: var(--layer2);
}
.btn-cookie-outline {
    background-color: transparent;
    color: var(--layer1);
    border: 1px solid var(--layer1);
}
.btn-cookie-outline:hover {
    background-color: var(--off-white);
}

/* 2-Click Map */
.map-overlay {
    position: relative;
    width: 100%;
    height: 300px;
    background-color: var(--off-white);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
    cursor: pointer;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="60" height="60" viewBox="0 0 24 24" fill="none" stroke="%23BB8B3C" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M21 10c0 7-9 13-9 13s-9-6-9-13a9 9 0 0 1 18 0z"></path><circle cx="12" cy="10" r="3"></circle></svg>');
    background-repeat: no-repeat;
    background-position: center 30%;
    transition: var(--transition);
}
.map-overlay:hover {
    background-color: #ededed;
}
.map-overlay-content {
    margin-top: 60px;
}
.map-overlay h3 {
    margin-bottom: 0.5rem;
    color: var(--layer1);
}
.map-overlay p {
    font-size: 0.9rem;
    color: var(--text-medium);
}
@media (max-width: 768px) {
    .map-overlay { height: 220px; background-position: center 20%; }
    .map-overlay-content { margin-top: 40px; }
    .cookie-buttons { width: 100%; flex-direction: column; }
    .btn-cookie { width: 100%; text-align: center; }
}
