body {
    margin: 0;
    padding: 0;
    font-family: Century Gothic;
    background-color: #FAFAFA;
    color: #000000;
    min-height: 100vh;
    overflow-x: hidden;
}

.container {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.block {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: 100%;
    padding: 20px;
    box-sizing: border-box;
}

.top-block {
    background-color: #000000;
    color: #FAFAFA;
    min-height: 40vh; /* Schmälerer schwarzer Bereich für alle Seiten */
    flex-shrink: 0;
}

/* Homepage-spezifisches Verhältnis 50:50 */
.homepage .top-block {
    min-height: 50vh; /* 50:50 Verhältnis nur auf der Homepage */
}

.bottom-block {
    background-color: #000000;
    color: #ffffff;
    flex: 1;
    /* padding-top: 60px;
    margin-top: 20px; */
    overflow-y: visible; /* Scrollen ermöglichen */
}

.vcard {
    background-color: #fff;
    color: #000;
    padding: 20px;
    min-width: 330px;
    rotate: -5deg;
}

.vcard-logo {
    max-width: 140px;
position: absolute;
right: 0;
bottom: 0px;
}

.logo {
    margin-top: 20px;
    font-family: 'Arial', sans-serif;
    display: flex;
    align-items: center;
    flex-direction: column;
    text-align: center;
}

.logo img {
    max-height: 260px;
    margin-top: 20px;
    max-width: 100%;
    height: auto;
}

.logo h1, .logo h2 {
    margin: 0;
}

.logo h1 {
    font-size: 24px;
    font-weight: bold;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif,;
    letter-spacing: 6px;
}

.logo h2 {
    font-size: 16px;
    color: #CCCCCC;
    font-weight: 100;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif,;
    letter-spacing: 2px;
}

.dot {
    font-size: 16px;
    color: #CCCCCC;
    font-weight: 100;
    margin: 0 4px;
}

/* Navigation Styles */
.nav {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    color: #FAFAFA;
    z-index: 1000;
}

.nav-links {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex-grow: 1;
}

.nav a {
    color: #FAFAFA;
    text-decoration: none;
    margin: 10px 0;
    font-size: 20px;
    transition: color 0.3s ease;
}

.nav a:hover {
    color: #CCCCCC;
}

.nav-logo {
    position: absolute;
    bottom: 0;
    right: 0;
}

.nav-logo img {
    position: fixed;
    bottom: 0;
    right: 0;
    width: 30%;
    height: auto;
    max-width: 200px;
}

/* Footer Styles */
.footer {
    margin-bottom: 20px;
    font-family: 'Arial', sans-serif;
    text-align: left;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.footer p {
    margin: 5px 0;
}

/* Contact Page Styles */
.contact-content {
    max-width: 600px;
    width: 100%;
    text-align: left;
}

.contact-content h3 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 24px;
    color: #1A1A1A;
}

/* Success and Error Messages */
.success-message {
    background-color: #d4edda;
    color: #155724;
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid #c3e6cb;
    border-radius: 4px;
    font-weight: bold;
}

.error-message {
    background-color: #f8d7da;
    color: #721c24;
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid #f5c6cb;
    border-radius: 4px;
    font-weight: bold;
}

.contact-info {
    margin-bottom: 30px;
    padding: 20px;
    background-color: #F5F5F5;
    border-radius: 5px;
}

.contact-info p {
    margin: 8px 0;
}

.contact-form {
    margin-top: 30px;
}

.contact-form h4 {
    margin-bottom: 20px;
    font-size: 18px;
    color: #1A1A1A;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    color: #1A1A1A;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #DDD;
    border-radius: 4px;
    font-size: 16px;
    box-sizing: border-box;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-group button {
    background-color: #000;
    color: #FAFAFA;
    padding: 12px 24px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.form-group button:hover {
    background-color: #333;
}

/* Impressum Page Styles */
.impressum-content {
    max-width: 700px;
    width: 100%;
    text-align: left;
}

.impressum-content h3 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 24px;
    color: #ffffff;
}

.impressum-section {
    margin-bottom: 25px;
}

.impressum-section h4 {
    margin-bottom: 10px;
    font-size: 18px;
    color: #ffffff;
    border-bottom: 2px solid #ffffff;
    padding-bottom: 5px;
}

.impressum-section h5 {
    margin: 15px 0 8px 0;
    font-size: 16px;
    color: #333;
}

.impressum-section p {
    margin: 8px 0;
    line-height: 1.6;
}

.impressum-section a {
    color: #1A1A1A;
    text-decoration: underline;
}

.impressum-section a:hover {
    color: #ffffff;
}

/* Datenschutz Page Styles */
.datenschutz-content {
    max-width: 700px;
    width: 100%;
    text-align: left;
}

.datenschutz-content h3 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 24px;
    color: #ffffff;
}

.datenschutz-section {
    margin-bottom: 25px;
}

.datenschutz-section h4 {
    margin-bottom: 15px;
    font-size: 18px;
    color: #ffffff;
    border-bottom: 2px solid #1A1A1A;
    padding-bottom: 5px;
}

.datenschutz-section h5 {
    margin: 15px 0 8px 0;
    font-size: 16px;
    color: #ffffff;
}

.datenschutz-section p {
    margin: 8px 0;
    line-height: 1.6;
}

/* Hamburger Menu */
.hamburger {
    position: fixed;
    top: 20px;
    right: 20px;
    cursor: pointer;
    z-index: 1001;
}

.hamburger div {
    width: 30px;
    height: 3px;
    background-color: #FAFAFA;
    margin: 6px 0;
    transition: transform 0.3s;
}

.hamburger.active div:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active div:nth-child(2) {
    opacity: 0;
}

.hamburger.active div:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Round Logo - Standard (kleiner für alle Seiten außer Homepage) */
.round-logo-container {
    position: fixed;
    bottom: 0;
    right: 0;
    width: 30%; /* Standard-Größe für alle Seiten */
    height: 30%;
    z-index: 900;
}

.round-logo {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    height: auto;
    max-width: 200px; /* Standard-Größe */
}

/* Homepage-spezifische Logo-Größe */
.homepage .round-logo-container {
    width: 60%; /* Doppelt so groß nur auf der Homepage */
    height: 60%;
}

.homepage .round-logo {
    max-width: 400px; /* Doppelt so groß nur auf der Homepage */
}

/* Mobile First Responsive Design */
@media (max-width: 768px) {
    .logo h1 {
        font-size: 20px;
        letter-spacing: 4px;
    }
    
    .logo h2 {
        font-size: 14px;
        letter-spacing: 1px;
    }
    
    .logo img {
        max-height: 50px;
    }
    
    .nav-logo img {
        width: 40%;
        max-width: 150px;
    }
    
    .round-logo-container {
        width: 40%; /* Standard-Größe für alle Seiten */
        height: 40%;
    }
    
    /* Homepage-spezifische Logo-Größe */
    .homepage .round-logo-container {
        width: 80%; /* Doppelt so groß nur auf der Homepage */
        height: 80%;
    }
    
    .contact-content,
    .impressum-content,
    .datenschutz-content {
        padding: 0 15px;
    }
    
    .form-group input,
    .form-group textarea {
        font-size: 16px; /* Prevents zoom on iOS */
    }
}

@media (max-width: 480px) {
    .logo h1 {
        font-size: 18px;
        letter-spacing: 3px;
    }
    
    .logo h2 {
        font-size: 12px;
        letter-spacing: 1px;
    }
    
    .logo img {
        max-height: 40px;
    }
    
    .nav-logo img {
        width: 50%;
        max-width: 120px;
    }
    
    .round-logo-container {
        width: 50%; /* Standard-Größe für alle Seiten */
        height: 50%;
    }
    
    /* Homepage-spezifische Logo-Größe */
    .homepage .round-logo-container {
        width: 100%; /* Doppelt so groß nur auf der Homepage */
        height: 100%;
    }
    
    .hamburger {
        top: 15px;
        right: 15px;
    }
    
    .hamburger div {
        width: 25px;
        height: 2px;
    }
}

@media (min-width: 769px) {
    .logo {
        flex-direction: row;
        text-align: left;
    }
    
    .logo img {
        margin-left: 30px;
        margin-top: 0;
    }
    
    .contact-content,
    .impressum-content,
    .datenschutz-content {
        padding: 0 30px;
    }
}
