/* Farbpalette */
:root {
    --primary-color: #333;
    --secondary-color: #d9534f; /* Sekundärfarbe vom ursprünglichen Flyer */
    --background-color: #f5f5f5;
    --light-color: #4a4a4a; /* Dunklere Farbe für den Text */
}

/* Allgemeine Einstellungen */
body {
    font-family: 'Lato', sans-serif;
    background-color: var(--background-color);
    color: var(--primary-color);
    margin: 0;
    padding: 0;
}

/* Logo-Animation */
.animated-logo {
    opacity: 0;
    transform: scale(0.8);
    animation: fadeInScale 1.2s forwards;
}

@keyframes fadeInScale {
    0% {
        opacity: 0;
        transform: scale(0.8);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

/* Header Section */
.header-section {
    background-color: #ffffff;
    padding: 3rem 0;
    border-bottom: 1px solid #e0e0e0;
    text-align: center;
}

.header-logo img {
    width: 150px;
}

/* About Section */
.about-section {
    padding: 3rem 2rem;
}

.text-box {
    position: relative;
    background-color: #ffffff;
    padding: 1.5rem;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.icon-container {
    position: absolute;
    top: -15px;
    left: -15px;
    background-color: var(--secondary-color);
    color: #ffffff;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.about-text {
    font-size: 1.1rem;
    font-weight: 400;
    line-height: 1.8;
    color: var(--light-color);
    text-align: left;
}

/* Signature */
.signature {
    font-size: 1rem;
    font-weight: 300;
    color: var(--secondary-color);
    font-style: italic;
    text-align: center;
    margin-top: 2rem;
}

/* Product Gallery Section */
.product-gallery {
    padding: 3rem 0;
    background-color: #ffffff;
}

.gallery-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 2rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-item {
    overflow: hidden;
    border-radius: 10px;
    aspect-ratio: 3/4; /* Mehr Höhe als Breite */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-item:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

/* Contact Section */
.contact-section {
    padding: 3rem 0;
    background-color: #f9f9f9;
}

.contact-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

/* Kontaktbereich Bild und Text */
.contact-content {
    display: flex;
    flex-direction: column;
}

.contact-image img {
    width: 250px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.contact-info {
    text-align: left;
}

.contact-info-item {
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--light-color);
    margin: 0.3rem 0;
    display: flex;
    align-items: center;
}

.contact-info-item .icon {
    color: var(--secondary-color);
    margin-right: 0.5rem;
    font-size: 1.2rem;
}

.contact-info-item a {
    color: var(--secondary-color);
    text-decoration: none;
}

.contact-info-item a:hover {
    text-decoration: underline;
}

/* Responsive Anpassungen */
@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-image img {
        width: 180px;
    }
}

@media (min-width: 992px) {
    .contact-content {
        flex-direction: row;
        align-items: flex-start;
    }
}
