:root {
    --primary: #8BAA91;          /* Salbei-Grün */
    --primary-dark: #6F8C75;     /* Tiefes Salbei */
    --accent-dark: #3F4F44;      /* Moosgrün */
    --text-dark: #2E2E2E;        /* Anthrazit */
    --bg-light: #FAFAF8;         /* Clean White */
    --transition: all 0.3s ease;
}

/* GLOBAL */
body {
    background-color: var(--bg-light);
    color: var(--text-dark);
    font-family: 'Segoe UI', Roboto, Arial, sans-serif;
    line-height: 1.6;
}

/* LINKS */
a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    text-decoration: underline;
}

/* NAVBAR */
.navbar {
    transition: var(--transition);
    background-color: white;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.navbar-brand {
    color: var(--primary) !important;
    font-weight: 700;
}

/* CARDS */
.custom-card {
    border: none;
    border-radius: 14px;
    overflow: hidden;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(0,0,0,0.06);
    background: white;
}

.custom-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 28px rgba(0,0,0,0.12);
}

.image-container {
    overflow: hidden;
    aspect-ratio: 1 / 1;
}

.image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.custom-card:hover .image-container img {
    transform: scale(1.06);
}

/* BUTTONS */
.btn-primary {
    background-color: var(--primary);
    border: none;
    padding: 10px 26px;
    font-weight: 600;
    color: #fff;
    border-radius: 8px;
    transition: var(--transition);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    color: #fff;
}

.btn-outline-custom {
    border: 2px solid var(--primary);
    color: var(--primary);
    font-weight: 600;
    border-radius: 8px;
    padding: 10px 26px;
    transition: var(--transition);
}

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

/* SOCIAL SHARE BUTTONS */
.btn-facebook { background-color: #3b5998; color: white; }
.btn-x { background-color: #000000; color: white; }
.btn-pinterest { background-color: #bd081c; color: white; }
.btn-whatsapp { background-color: #25d366; color: white; }
.btn-print { background-color: #6c757d; color: white; }
.btn-email { background-color: #444444; color: white; }

.share-btn:hover {
    opacity: 0.9;
    color: white;
}

/* COOKIE BANNER */
#cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: #fff;
    z-index: 2000;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    padding: 28px;
    display: none;
    border-top: 6px solid var(--primary);
}

@media (min-width: 768px) {
    #cookie-banner {
        max-width: 520px;
        left: auto;
    }
}

/* SCROLL TO TOP */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 52px;
    height: 52px;
    background-color: var(--primary);
    color: white;
    border: none;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1050;
    cursor: pointer;
    transition: var(--transition);
}

.scroll-to-top:hover {
    background-color: var(--primary-dark);
}

/* FOOTER */
footer {
    background-color: #ffffff;
    padding: 4rem 0 2rem;
    border-top: 1px solid rgba(0,0,0,0.08);
    margin-top: 3rem;
}

.footer-link-btn {
    color: var(--primary);
    border: 2px solid var(--primary);
    font-weight: 600;
    transition: var(--transition);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    text-decoration: none;
}

.footer-link-btn:hover {
    background-color: var(--primary);
    color: white !important;
}

/* MAIN */
main {
    padding-bottom: 0;
}

