/* Grund-Setup */
body {
    background-color: #000000;
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    margin: 0;
    text-align: center;
    line-height: 1.6;
}

/* --- Animated Hero Background --- */
.hero {
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(ellipse at 20% 50%, rgba(37, 211, 102, 0.03) 0%, transparent 50%),
                radial-gradient(ellipse at 80% 50%, rgba(188, 24, 136, 0.03) 0%, transparent 50%);
    animation: heroGlow 8s ease-in-out infinite alternate;
    z-index: 0;
}

@keyframes heroGlow {
    0% { transform: translate(0, 0) rotate(0deg); }
    100% { transform: translate(2%, -2%) rotate(3deg); }
}

.hero > * {
    position: relative;
    z-index: 1;
}


/* --- LOGO GRÖSSEN --- */
.main-logo {
    display: block;
    margin: 60px auto 40px auto;
    width: 90%;
    max-width: 500px;
    height: auto;
}

.footer-logo {
    max-width: 180px;
    height: auto;
    opacity: 0.8;
}

/* Header Texte */
h1 { font-size: 2.2rem; margin-bottom: 10px; }
.subtitle { color: #888; font-size: 1.1rem; margin-bottom: 25px; }
.intro-text { max-width: 700px; margin: 0 auto 50px; color: #888; }

/* Layout Container */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* --- Fade-In Animations --- */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.fade-in-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* --- Glassmorphism Cards with Glow --- */
.info-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 15px;
    padding: 40px;
    text-align: left;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease, background 0.4s ease;
}

.card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(200, 200, 210, 0.35);
    box-shadow: 0 8px 40px rgba(200, 200, 220, 0.08), 0 0 80px rgba(200, 200, 220, 0.04);
}

.card h3 {
    margin-bottom: 25px;
    font-size: 1.4rem;
}

ul { list-style: none; padding: 0; }
li { margin-bottom: 12px; color: #ccc; position: relative; padding-left: 25px; }
li::before { content: "\2713"; color: #25D366; position: absolute; left: 0; font-weight: bold; }

/* Appointment Section */
.appointment h2 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

/* Buttons & Hover */
.button-group {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
}

.btn {
    padding: 15px 35px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-whatsapp { background: linear-gradient(45deg, #128C7E, #25D366, #5FFC8D); color: black; }
.btn-whatsapp:hover { transform: scale(1.05); opacity: 0.9; box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3); }

.btn-email { background: #333; color: white; }
.btn-email:hover { transform: scale(1.05); background: #444; box-shadow: 0 4px 20px rgba(255, 255, 255, 0.1); }

.btn-instagram { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); color: white; }
.btn-instagram:hover { transform: scale(1.05); opacity: 0.9; box-shadow: 0 4px 20px rgba(220, 39, 67, 0.3); }

.btn-inventory {
    margin-top: 25px;
    border: 1px solid #444;
    color: white;
    width: 100%;
    max-width: 450px;
}

.btn-inventory:hover { background: white; color: black; box-shadow: 0 4px 20px rgba(255, 255, 255, 0.15); }

/* Footer */
footer {
    border-top: 1px solid #222;
    padding: 80px 20px;
    margin-top: 60px;
}

.footer-content {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-section { flex: 1; color: #888; font-size: 0.9rem; text-align: left; }
.footer-center { text-align: center; }
.footer-right { text-align: right; }

/* Footer Links */
.footer-links {
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #222;
}

.footer-links a {
    color: #666;
    text-decoration: none;
    margin: 0 15px;
    font-size: 0.85rem;
    transition: color 0.3s ease;
}

.footer-links a:hover { color: #fff; }

/* Cookie Banner */
.cookie-banner {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-top: 1px solid #333;
    padding: 20px 30px;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    z-index: 1000;
}

.cookie-banner p {
    margin: 0;
    color: #ccc;
    font-size: 0.9rem;
    max-width: 600px;
}

.cookie-banner a { color: #25D366; }

.cookie-buttons {
    display: flex;
    gap: 10px;
}

.btn-cookie-accept {
    background: #25D366;
    color: black;
    border: none;
    padding: 10px 25px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
}

.btn-cookie-decline {
    background: #333;
    color: white;
    border: 1px solid #444;
    padding: 10px 25px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
}

.btn-cookie-accept:hover { background: #20ba59; }
.btn-cookie-decline:hover { background: #444; }

/* Legal Pages (Impressum, Datenschutz) */
.legal-header {
    padding: 30px 20px;
    text-align: center;
}

.legal-logo {
    max-width: 320px;
    height: auto;
}

.legal-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px 60px;
    text-align: left;
}

.legal-container h1 {
    font-size: 2rem;
    margin-bottom: 40px;
    text-align: center;
}

.legal-container h2 {
    font-size: 1.3rem;
    margin-top: 35px;
    margin-bottom: 15px;
    color: #fff;
}

.legal-container h3 {
    font-size: 1.1rem;
    margin-top: 25px;
    margin-bottom: 10px;
    color: #ddd;
}

.legal-container p {
    color: #aaa;
    margin-bottom: 15px;
}

.legal-container a {
    color: #25D366;
    text-decoration: none;
}

.legal-container a:hover { text-decoration: underline; }

.legal-container ul { margin-bottom: 15px; }

.legal-back {
    text-align: center;
    margin-top: 50px;
}

.btn-back {
    background: #222;
    color: white;
    border: 1px solid #444;
}

.btn-back:hover { background: #333; }

/* Responsive Anpassungen */
@media (max-width: 768px) {
    .footer-content { flex-direction: column; text-align: center; gap: 40px; }
    .footer-section { text-align: center; }
    .button-group { flex-direction: column; }
    .main-logo { max-width: 350px; }
}
