* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arimo', sans-serif;
    background-color: #F2F0EC;
    background-image: url('../images/Hintergrund.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: #4A4540;
    line-height: 1.6;
    overflow: hidden;
}

.container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    padding: 20px;
}

.content {
    text-align: center;
    max-width: 600px;
    animation: fadeIn 0.8s ease-in;
    overflow-y: auto;
    max-height: 100vh;
    padding-right: 10px;
}

.content::-webkit-scrollbar {
    width: 0;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.logo {
    max-width: 200px;
    height: auto;
    margin: 0 auto 0px;
    display: block;
}

@media (max-width: 600px) {
    .logo {
        max-width: 280px;
    }
}


.subtitle {
    font-size: 16px;
    letter-spacing: 2px;
    color: #4A4540;
    margin-bottom: 30px;
    font-weight: 700;
    font-family: 'Arimo', sans-serif;
}

.info-section {
    margin: 25px 0;
    padding: 0 20px;
}

.info-title {
    font-size: 14px;
    letter-spacing: 1px;
    color: #D4BB77;
    margin-bottom: 15px;
    font-weight: 700;
    text-transform: uppercase;
    font-family: 'Arimo', sans-serif;
}

.info-text {
    font-size: 16px;
    color: #4A4540;
    margin-bottom: 10px;
    font-family: 'Arimo', sans-serif;
}

.info-text a {
    color: #4A4540;
    text-decoration: none;
    font-weight: 600;
    transition: opacity 0.3s ease;
}

.info-text a:hover {
    opacity: 0.8;
}

.highlight {
    font-weight: 600;
    color: #4A4540;
}

.tagline {
    font-size: 14px;
    color: #7d7971;
    font-style: italic;
    margin: 25px 0 25px;
    line-height: 1.5;
    font-family: 'Lora', serif;
}

.contact-info {
    font-size: 14px;
    color: #4A4540;
    margin: 15px 0;
}

.location {
    margin: 25px 0;
    font-size: 16px;
}

.location-pin {
    color: #E94B3C;
    font-size: 20px;
    margin-right: 8px;
}

.divider {
    width: 40px;
    height: 1px;
    background-color: #D4BB77;
    margin: 15px auto;
}

.coming-soon {
    font-size: 14px;
    color: #7d7971;
    margin-top: 25px;
    font-style: italic;
    font-family: 'Lora', serif;
}

.location-link {
    text-decoration: none;
    color: inherit;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.location-link:hover {
    opacity: 0.7;
}

.social-links {
    margin-top: 15px;
    display: flex;
    justify-content: center;
    gap: 15px;
    padding: 0 30px;
}

.social-links a {
    color: #D4BB77;
    font-size: 24px;
    text-decoration: none;
    transition: transform 0.3s ease, opacity 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border: 2px solid #D4BB77;
    border-radius: 50%;
    background-color: rgba(212, 187, 119, 0.05);
}

.social-links a:hover {
    transform: scale(1.1);
    opacity: 0.8;
    background-color: rgba(212, 187, 119, 0.15);
}
