/* Globale Stile */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
	
}

body {
  margin: 0;
  font-family: 'Lucida Sans', 'Lucida Sans Unicode', 'Lucida Grande', sans-serif;
  background-color: #EDE0D8;
  color: #3a2c4a;
    line-height: 1.6;
}

/* Header/Hero Section (simuliert die Berglandschaft) */
/*.header {
    height: 40vh; /* 40% der Viewport-Höhe 
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
    color: #3a2c4a;
    background-size: cover;
    background-position: center;
}*/

.hero img {
  width: 100%;
  height: auto;
  display: block;
}

.header h1 {
    font-size: 3em;
    margin-bottom: 0.2em;
    text-shadow: 1px 1px 3px rgba(255, 255, 255, 0.5);
	color: #9A74A8;
}

.header p {
    font-size: 1.5em;
}

/* Content Section (Desktop: nebeneinander, Mobile: untereinander) */
.content-container {
    display: grid;
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
    gap: 40px;
    grid-template-columns: 1fr 2fr; 
}

.content-block {
    padding: 30px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.photo-block {
    text-align: center;
	color: #9A74A8;
}

.photo-placeholder {
    width: 100%;
    max-width: 300px;
    height: 300px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    background-color: #EDE0D8;
    border: 5px solid #EDE0D8;
}

.photo-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.text-block h2 {
    color: #9A74A8;
    font-size: 2em;
    margin-bottom: 1em;
}

.text-block strong {
    color: #9A74A8;
}

/* -------------------------------------------------- */
/* FOOTER & INSTAGRAM LOGIC (FÜR 38PX HÖHE OPTIMIERT) */
/* -------------------------------------------------- */

.main-footer {
    /* 1. Referenzpunkt für die absolute Positionierung setzen */
    position: relative; 
    line-height: 0; 
    text-align: center; 
}

/* Das Footer-Hintergrundbild (Footer.png) */
.main-footer .footer-background-img {
    width: 100%;
    height: auto;
    display: block;
}

/* Der Instagram-Link Container, absolut auf dem Bild positioniert */
.instagram-link {
    position: absolute; 
    
    /* NEU: Geringerer Abstand von unten, um auf 38px Höhe zu passen */
    bottom: 5px; 
    
    left: 50%;
    transform: translateX(-50%); 
    
    text-decoration: none;
    display: flex; 
    align-items: center;
    gap: 5px; 
    
    /* NEU: Padding stark reduziert */
    padding: 4px 8px; 
    
    border-radius: 4px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1); 
    transition: all 0.3s ease; 
    white-space: nowrap; 
}

/* Hover-Effekt (z.B. leicht größer werden) */
.instagram-link:hover {
    transform: translateX(-50%) scale(1.05);
}

/* Stil für das Instagram Logo */
.instagram-logo {
    /* NEU: Logo-Größe reduziert */
    width: 22px;
    height: 22px;
    display: inline-block;
    vertical-align: middle;
}

/* Stil für den Text neben dem Logo */
.instagram-text {
    font-family: 'Lucida Sans', 'Lucida Sans Unicode', 'Lucida Grande', sans-serif;
    font-size: 0.9em; 
    color: #3a2c4a;
    font-weight: bold;
}

/* -------------------------------------------------- */
/* MEDIA QUERY (RESPONSIVE) */
/* -------------------------------------------------- */

@media (max-width: 768px) {
    /* Haupt-Content wird untereinander angeordnet */
    .content-container {
        grid-template-columns: 1fr;
        padding: 20px;
        gap: 20px;
  }
    .header {
        height: 30vh;
    }
    
    .header h1 {
        font-size: 2em;
    }

    .header p {
        font-size: 1.2em;
    }

    /* Instagram-Link Anpassung für Mobilgeräte */
    .instagram-link {
        bottom: 3px; 
        padding: 3px; 
        gap: 0;
    }
    
    .instagram-text {
        display: none; /* Text auf Mobilgeräten ausblenden */
    }
    
    .instagram-logo {
        width: 18px; 
        height: 18px;
    }
}