/* Hauptcontainer */
.content-wrapper {
    width: 700px;
    max-width: 100%; /* Passt sich an die Bildschirmbreite an */
    margin: 0 auto;
    background: #ffffff;
    padding: 1em 30px 30px;
    font-family: 'Lato', sans-serif;
    font-size: 16px;
    line-height: 1.5;
    color: #333;
    word-wrap: break-word; /* Lange Wörter umbrechen */
    overflow-wrap: break-word;
}

/* Logo */
.logo-wrapper {
    text-align: left;
    margin: 2rem 0;
}

.logo-wrapper svg {
    max-width: 69%;
    height: auto;
    display: inline-block;
}

/* Titelhervorhebung */
.highlight {
    font-family: 'Montserrat', Helvetica, Arial, sans-serif;
    font-size: 1.53rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
    color: #E8412C;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

/* Abschnittstitel */
.section-title {
    font-size: 1.225rem;
    margin: 2.5rem 0 1rem;
    font-weight: 700;
}

/* Projektlink */
.project-link {
    display: block;
    margin: 1rem 0 0.5rem;
    font-size: 16px;
    line-height: 1.5;
    font-weight: 600;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

/* Allgemeine Links */
a {
    font-weight: 600;
    color: #E8412C;
    word-wrap: break-word;
    overflow-wrap: break-word;
    white-space: normal;
}

/* Eintragstitel */
.entry-title {
    font-family: 'Montserrat', Helvetica, Arial, sans-serif;
    font-size: 1.125rem;
    line-height: 1.2;
    font-weight: 600;
    margin: 30px 0 5px;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

/* Symbolcontainer */
.content-wrapper .symbol {
    font-size: 20px;
    position: relative;
    height: 50px;
    width: 50px;
    margin-left: -5px;
    margin-right: -25px;
    perspective: 1000px;
}

/* Animation für das Herz */
@keyframes spin {
    from {
        transform: rotateY(0deg);
    }
    to {
        transform: rotateY(360deg);
    }
}

.content-wrapper .symbol .heart {
    height: 50px;
    width: 50px;
    background: url('/images/heart.png') no-repeat center/cover;
    opacity: 1;
    transition: all 0.3s ease-in-out;
    animation: spin 4s ease-in-out infinite;
}

/* Text im Symbol */
.content-wrapper .symbol .text {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

/* Hover-Effekt für Symbol */
.content-wrapper .symbol:hover .heart {
    opacity: 0.8;
}

.content-wrapper .symbol:hover .text {
    opacity: 1;
}

/* Mobile Optimierung */
@media (max-width: 480px) {
    .content-wrapper {
		max-width: 90%;
        padding: 1em 15px;
    }
    
	.logo-wrapper svg {
    max-width: 90%;
}
	
    .highlight,
    .project-link,
    .entry-title {
        font-size: 1rem; /* Schriftgröße reduzieren für bessere Darstellung */
    }
}
