/* Variables */
:root {
    --color-primary: #8BB63A; /* Hellgrün vom Logo / Schild */
    --color-primary-dark: #265142; /* Dunkles Tannengrün für Text */
    --color-secondary: #C8AC8F; 
    --color-tertiary: #A79277;
    --color-bg: #FAF9F6; 
    --color-text: #265142;
    --color-text-light: #4A6E5F;
    
    --font-heading: 'Lora', serif;
    --font-body: 'Lora', serif;
}

@font-face {
    font-family: 'Lora';
    src: url('lora-regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Lora';
    src: url('lora-medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
}

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

body {
    font-family: var(--font-body);
    color: var(--color-text);
    background-color: var(--color-bg);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url('bg.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(250, 249, 246, 0.95) 0%, rgba(250, 249, 246, 0.7) 100%);
    backdrop-filter: blur(8px);
    z-index: 0;
}

/* Wrapper & Card */
.bc-wrapper {
    position: relative;
    z-index: 1;
    padding: 2rem;
    width: 100%;
    max-width: 480px;
}

.business-card {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: 20px;
    padding: 3.5rem 2.5rem;
    text-align: center;
    box-shadow: 0 25px 45px rgba(0, 0, 0, 0.08), 
                inset 0 0 0 1px rgba(255, 255, 255, 0.5);
    transform: translateY(0);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease;
}

.business-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12), 
                inset 0 0 0 1px rgba(255, 255, 255, 0.6);
}

/* Logo */
.bc-top-subtitle {
    font-size: 1.1rem;
    color: var(--color-primary-dark);
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.bc-logo {
    margin-bottom: 2.5rem;
    display: flex;
    justify-content: center;
}

.logo-img {
    height: 90px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 4px 6px rgba(0,0,0,0.05));
    transition: transform 0.3s ease;
}

.business-card:hover .logo-img {
    transform: scale(1.05);
}

/* Typography */
.bc-name {
    font-family: var(--font-heading);
    font-size: 1.9rem;
    font-weight: 500;
    color: var(--color-primary-dark);
    margin-bottom: 0.2rem;
    line-height: 1.2;
    letter-spacing: -0.2px;
}

.bc-name .initial {
    font-size: 3rem;
    font-weight: 400;
    line-height: 1;
}

.bc-subtitle {
    font-size: 1.05rem;
    color: var(--color-primary-dark);
    font-weight: 400;
    margin-bottom: 2.5rem;
}

/* Divider */
.bc-divider {
    width: 50px;
    height: 3px;
    background: var(--color-secondary);
    margin: 0 auto 2.5rem auto;
    border-radius: 3px;
    opacity: 0.8;
}

/* Contact */
.bc-contact {
    display: flex;
    flex-direction: column;
}

.bc-address {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--color-text);
    font-weight: 300;
}

/* Responsive */
@media (max-width: 480px) {
    .bc-wrapper {
        padding: 1.5rem;
    }
    
    .business-card {
        padding: 2.5rem 1.5rem;
    }
    
    .bc-name {
        font-size: 2rem;
    }

    .bc-subtitle {
        font-size: 0.85rem;
        letter-spacing: 2px;
    }
    
    .bc-name .initial {
        font-size: 3rem;
    }
}