<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* ===================================
   INDEX.CSS - Spezifische Styles für index.html
   ================================== */

/* ===================================
   HINTERGRUNDBILD-STILE
   ================================== */
body {
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('/assets/bilder/antminer_caanan_dashboard_mining.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
}

main {
    background-color: rgba(255, 255, 255, 0.85);
    position: relative;
}

/* ===================================
   PROFIL-CONTAINER STILE
   ================================== */
.about-section {
    position: relative;
}

.profile-image-container {
    float: right;
    max-width: 120px;
    margin: 0 0 20px 20px;
}

.profile-image {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.photo-credit {
    text-align: right;
    font-size: 0.75em;
    margin-top: 5px;
    color: #666;
}

/* Responsive Design für Profil-Container */
@media (max-width: 768px) {
    .profile-image-container {
        float: none;
        display: block;
        margin: 0 auto 20px;
        max-width: 180px;
    }
}

/* ===================================
   KONTAKTFORMULAR-STILE
   ================================== */
.container {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

h4 {
    text-align: center;
    margin-bottom: 20px;
    color: #333;
}

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

.form-row {
    display: flex;
    gap: 10px;
}

.col {
    flex: 1;
}

.form-control {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
    font-size: 16px;
}

.form-control:focus {
    border-color: #007bff;
    box-shadow: 0 0 5px rgba(0, 123, 255, 0.5);
}

textarea.form-control {
    resize: vertical;
    height: 150px;
}

.btn {
    width: 100%;
    padding: 15px;
    font-size: 18px;
    border: none;
    border-radius: 5px;
    background-color: #007bff;
    color: #fff;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn:hover {
    background-color: #0056b3;
}

/* ===================================
   RESPONSIVE DESIGN - MOBILE FIXES
   ================================== */
@media (max-width: 768px) {
    .intro-card {
        flex-direction: column;
        align-items: flex-start;  /* Statt center */
        text-align: left;         /* Statt center */
        padding: 1.5rem;
    }
    
    .card-icon {
        margin-right: 0;
        margin-bottom: 1rem;
        align-self: flex-start;   /* Icon auch linksbündig */
    }
}

/* ===================================
   Bettbach Info-box
   ================================== */
/* Bettbach Info-box */
.bettbach-infobox {
    display: flex;
    align-items: flex-start;
    background: linear-gradient(90deg, rgba(247,147,26,0.07) 0%, #fff 100%);
    border-left: 5px solid var(--primary);
    border-radius: 10px;
    box-shadow: 0 3px 12px var(--shadow);
    padding: 1.2rem 1.5rem;
    margin: 2rem 0 0 0;
    max-width: 520px;
    gap: 1.1rem;
}

.bettbach-infobox-icon {
    color: var(--primary);
    font-size: 2rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bettbach-infobox-content {
    font-size: 1.08rem;
    color: #333;
    line-height: 1.7;
}

.bettbach-infobox-content strong {
    color: var(--primary);
    font-size: 1.1rem;
    display: block;
    margin-bottom: 0.3rem;
}

@media (max-width: 768px) {
    .bettbach-infobox {
        flex-direction: column;
        max-width: 100%;
        padding: 1rem;
        gap: 0.5rem;
    }
    .bettbach-infobox-icon {
        margin-top: 0;
        font-size: 1.4rem;
    }
}
</pre></body></html>