/* Ensure full viewport height */
html, body {
    height: 100%;
    margin: 0;
    padding: 0;
}

/* Background image on body */
body {
    background: url('digitmarkt.jpg') no-repeat center center fixed;
    background-size: cover;
    font-family: Arial, sans-serif;
    font-style: italic;
    color: #5C4033; /* dark brown text */
    text-align: center;
}

/* Logo styling */
.logo {
    margin: 30px auto;
    display: block;
    max-width: 220px;
    filter: drop-shadow(0 0 15px #5C4033);
    animation: glow 2.5s ease-in-out infinite alternate, fadeIn 1.5s ease forwards;
    opacity: 0;
}

/* Glow animation */
@keyframes glow {
    from {
        filter: drop-shadow(0 0 10px #5C4033);
    }
    to {
        filter: drop-shadow(0 0 25px #5C4033);
    }
}

/* Fade in */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Header text */
header h1 {
    font-size: 2.5rem;
    color: #5C4033;
    margin: 20px 0 10px;
}

/* Navigation */
nav a {
    color: #5C4033;
    text-decoration: none;
    margin: 0 15px;
    font-weight: bold;
    font-style: italic;
    font-size: 1.1rem;
}

nav a:hover {
    text-shadow: 0 0 10px #5C4033;
}

/* Slogan */
.slogan {
    font-size: 1.4rem;
    color: #5C4033;
    margin: 20px 15px;
    font-weight: bold;
}

/* Contact Buttons */
.contact-buttons a {
    color: #5C4033;
    border: 2px solid #5C4033;
    padding: 12px 30px;
    border-radius: 30px;
    margin: 10px;
    display: inline-block;
    background: transparent;
    font-weight: bold;
    font-style: italic;
    text-decoration: none;
    transition: background 0.3s ease, color 0.3s ease;
}

.contact-buttons a:hover {
    background: #5C4033;
    color: white;
}

.trademark {
    margin-top: 20px;
    font-size: 0.9rem;
    font-style: italic;
    color: #5C4033; /* Dark brown */
    background: transparent !important;
    padding: 0;
}

main {
    background: transparent !important;
}


